/*
* 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 AWSMigrationHub-2017-05-31.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.MigrationHub
{
///
/// Constants used for properties of type ApplicationStatus.
///
public class ApplicationStatus : ConstantClass
{
///
/// Constant COMPLETED for ApplicationStatus
///
public static readonly ApplicationStatus COMPLETED = new ApplicationStatus("COMPLETED");
///
/// Constant IN_PROGRESS for ApplicationStatus
///
public static readonly ApplicationStatus IN_PROGRESS = new ApplicationStatus("IN_PROGRESS");
///
/// Constant NOT_STARTED for ApplicationStatus
///
public static readonly ApplicationStatus NOT_STARTED = new ApplicationStatus("NOT_STARTED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public ApplicationStatus(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static ApplicationStatus FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator ApplicationStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ResourceAttributeType.
///
public class ResourceAttributeType : ConstantClass
{
///
/// Constant BIOS_ID for ResourceAttributeType
///
public static readonly ResourceAttributeType BIOS_ID = new ResourceAttributeType("BIOS_ID");
///
/// Constant FQDN for ResourceAttributeType
///
public static readonly ResourceAttributeType FQDN = new ResourceAttributeType("FQDN");
///
/// Constant IPV4_ADDRESS for ResourceAttributeType
///
public static readonly ResourceAttributeType IPV4_ADDRESS = new ResourceAttributeType("IPV4_ADDRESS");
///
/// Constant IPV6_ADDRESS for ResourceAttributeType
///
public static readonly ResourceAttributeType IPV6_ADDRESS = new ResourceAttributeType("IPV6_ADDRESS");
///
/// Constant MAC_ADDRESS for ResourceAttributeType
///
public static readonly ResourceAttributeType MAC_ADDRESS = new ResourceAttributeType("MAC_ADDRESS");
///
/// Constant MOTHERBOARD_SERIAL_NUMBER for ResourceAttributeType
///
public static readonly ResourceAttributeType MOTHERBOARD_SERIAL_NUMBER = new ResourceAttributeType("MOTHERBOARD_SERIAL_NUMBER");
///
/// Constant VM_MANAGED_OBJECT_REFERENCE for ResourceAttributeType
///
public static readonly ResourceAttributeType VM_MANAGED_OBJECT_REFERENCE = new ResourceAttributeType("VM_MANAGED_OBJECT_REFERENCE");
///
/// Constant VM_MANAGER_ID for ResourceAttributeType
///
public static readonly ResourceAttributeType VM_MANAGER_ID = new ResourceAttributeType("VM_MANAGER_ID");
///
/// Constant VM_NAME for ResourceAttributeType
///
public static readonly ResourceAttributeType VM_NAME = new ResourceAttributeType("VM_NAME");
///
/// Constant VM_PATH for ResourceAttributeType
///
public static readonly ResourceAttributeType VM_PATH = new ResourceAttributeType("VM_PATH");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public ResourceAttributeType(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static ResourceAttributeType FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator ResourceAttributeType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Status.
///
public class Status : ConstantClass
{
///
/// Constant COMPLETED for Status
///
public static readonly Status COMPLETED = new Status("COMPLETED");
///
/// Constant FAILED for Status
///
public static readonly Status FAILED = new Status("FAILED");
///
/// Constant IN_PROGRESS for Status
///
public static readonly Status IN_PROGRESS = new Status("IN_PROGRESS");
///
/// Constant NOT_STARTED for Status
///
public static readonly Status NOT_STARTED = new Status("NOT_STARTED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public Status(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static Status FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator Status(string value)
{
return FindValue(value);
}
}
}