/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the migrationhuborchestrator-2021-08-28.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.MigrationHubOrchestrator.Model
{
///
/// The summary of the Migration Hub Orchestrator plugin.
///
public partial class PluginSummary
{
private string _hostname;
private string _ipAddress;
private string _pluginId;
private string _registeredTime;
private PluginHealth _status;
private string _version;
///
/// Gets and sets the property Hostname.
///
/// The name of the host.
///
///
public string Hostname
{
get { return this._hostname; }
set { this._hostname = value; }
}
// Check to see if Hostname property is set
internal bool IsSetHostname()
{
return this._hostname != null;
}
///
/// Gets and sets the property IpAddress.
///
/// The IP address at which the plugin is located.
///
///
[AWSProperty(Min=0, Max=15)]
public string IpAddress
{
get { return this._ipAddress; }
set { this._ipAddress = value; }
}
// Check to see if IpAddress property is set
internal bool IsSetIpAddress()
{
return this._ipAddress != null;
}
///
/// Gets and sets the property PluginId.
///
/// The ID of the plugin.
///
///
[AWSProperty(Min=1, Max=60)]
public string PluginId
{
get { return this._pluginId; }
set { this._pluginId = value; }
}
// Check to see if PluginId property is set
internal bool IsSetPluginId()
{
return this._pluginId != null;
}
///
/// Gets and sets the property RegisteredTime.
///
/// The time at which the plugin was registered.
///
///
public string RegisteredTime
{
get { return this._registeredTime; }
set { this._registeredTime = value; }
}
// Check to see if RegisteredTime property is set
internal bool IsSetRegisteredTime()
{
return this._registeredTime != null;
}
///
/// Gets and sets the property Status.
///
/// The status of the plugin.
///
///
public PluginHealth Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
///
/// Gets and sets the property Version.
///
/// The version of the plugin.
///
///
[AWSProperty(Min=0, Max=1024)]
public string Version
{
get { return this._version; }
set { this._version = value; }
}
// Check to see if Version property is set
internal bool IsSetVersion()
{
return this._version != null;
}
}
}