/*
* 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 osis-2022-01-01.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.OSIS
{
///
/// Constants used for properties of type ChangeProgressStageStatuses.
///
public class ChangeProgressStageStatuses : ConstantClass
{
///
/// Constant COMPLETED for ChangeProgressStageStatuses
///
public static readonly ChangeProgressStageStatuses COMPLETED = new ChangeProgressStageStatuses("COMPLETED");
///
/// Constant FAILED for ChangeProgressStageStatuses
///
public static readonly ChangeProgressStageStatuses FAILED = new ChangeProgressStageStatuses("FAILED");
///
/// Constant IN_PROGRESS for ChangeProgressStageStatuses
///
public static readonly ChangeProgressStageStatuses IN_PROGRESS = new ChangeProgressStageStatuses("IN_PROGRESS");
///
/// Constant PENDING for ChangeProgressStageStatuses
///
public static readonly ChangeProgressStageStatuses PENDING = new ChangeProgressStageStatuses("PENDING");
///
/// 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 ChangeProgressStageStatuses(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 ChangeProgressStageStatuses 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 ChangeProgressStageStatuses(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ChangeProgressStatuses.
///
public class ChangeProgressStatuses : ConstantClass
{
///
/// Constant COMPLETED for ChangeProgressStatuses
///
public static readonly ChangeProgressStatuses COMPLETED = new ChangeProgressStatuses("COMPLETED");
///
/// Constant FAILED for ChangeProgressStatuses
///
public static readonly ChangeProgressStatuses FAILED = new ChangeProgressStatuses("FAILED");
///
/// Constant IN_PROGRESS for ChangeProgressStatuses
///
public static readonly ChangeProgressStatuses IN_PROGRESS = new ChangeProgressStatuses("IN_PROGRESS");
///
/// Constant PENDING for ChangeProgressStatuses
///
public static readonly ChangeProgressStatuses PENDING = new ChangeProgressStatuses("PENDING");
///
/// 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 ChangeProgressStatuses(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 ChangeProgressStatuses 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 ChangeProgressStatuses(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PipelineStatus.
///
public class PipelineStatus : ConstantClass
{
///
/// Constant ACTIVE for PipelineStatus
///
public static readonly PipelineStatus ACTIVE = new PipelineStatus("ACTIVE");
///
/// Constant CREATE_FAILED for PipelineStatus
///
public static readonly PipelineStatus CREATE_FAILED = new PipelineStatus("CREATE_FAILED");
///
/// Constant CREATING for PipelineStatus
///
public static readonly PipelineStatus CREATING = new PipelineStatus("CREATING");
///
/// Constant DELETING for PipelineStatus
///
public static readonly PipelineStatus DELETING = new PipelineStatus("DELETING");
///
/// Constant START_FAILED for PipelineStatus
///
public static readonly PipelineStatus START_FAILED = new PipelineStatus("START_FAILED");
///
/// Constant STARTING for PipelineStatus
///
public static readonly PipelineStatus STARTING = new PipelineStatus("STARTING");
///
/// Constant STOPPED for PipelineStatus
///
public static readonly PipelineStatus STOPPED = new PipelineStatus("STOPPED");
///
/// Constant STOPPING for PipelineStatus
///
public static readonly PipelineStatus STOPPING = new PipelineStatus("STOPPING");
///
/// Constant UPDATE_FAILED for PipelineStatus
///
public static readonly PipelineStatus UPDATE_FAILED = new PipelineStatus("UPDATE_FAILED");
///
/// Constant UPDATING for PipelineStatus
///
public static readonly PipelineStatus UPDATING = new PipelineStatus("UPDATING");
///
/// 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 PipelineStatus(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 PipelineStatus 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 PipelineStatus(string value)
{
return FindValue(value);
}
}
}