/* * 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 worklink-2018-09-25.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.WorkLink { /// /// Constants used for properties of type AuthorizationProviderType. /// public class AuthorizationProviderType : ConstantClass { /// /// Constant SAML for AuthorizationProviderType /// public static readonly AuthorizationProviderType SAML = new AuthorizationProviderType("SAML"); /// /// 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 AuthorizationProviderType(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 AuthorizationProviderType 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 AuthorizationProviderType(string value) { return FindValue(value); } } /// /// Constants used for properties of type DeviceStatus. /// public class DeviceStatus : ConstantClass { /// /// Constant ACTIVE for DeviceStatus /// public static readonly DeviceStatus ACTIVE = new DeviceStatus("ACTIVE"); /// /// Constant SIGNED_OUT for DeviceStatus /// public static readonly DeviceStatus SIGNED_OUT = new DeviceStatus("SIGNED_OUT"); /// /// 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 DeviceStatus(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 DeviceStatus 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 DeviceStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type DomainStatus. /// public class DomainStatus : ConstantClass { /// /// Constant ACTIVE for DomainStatus /// public static readonly DomainStatus ACTIVE = new DomainStatus("ACTIVE"); /// /// Constant ASSOCIATING for DomainStatus /// public static readonly DomainStatus ASSOCIATING = new DomainStatus("ASSOCIATING"); /// /// Constant DISASSOCIATED for DomainStatus /// public static readonly DomainStatus DISASSOCIATED = new DomainStatus("DISASSOCIATED"); /// /// Constant DISASSOCIATING for DomainStatus /// public static readonly DomainStatus DISASSOCIATING = new DomainStatus("DISASSOCIATING"); /// /// Constant FAILED_TO_ASSOCIATE for DomainStatus /// public static readonly DomainStatus FAILED_TO_ASSOCIATE = new DomainStatus("FAILED_TO_ASSOCIATE"); /// /// Constant FAILED_TO_DISASSOCIATE for DomainStatus /// public static readonly DomainStatus FAILED_TO_DISASSOCIATE = new DomainStatus("FAILED_TO_DISASSOCIATE"); /// /// Constant INACTIVE for DomainStatus /// public static readonly DomainStatus INACTIVE = new DomainStatus("INACTIVE"); /// /// Constant PENDING_VALIDATION for DomainStatus /// public static readonly DomainStatus PENDING_VALIDATION = new DomainStatus("PENDING_VALIDATION"); /// /// 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 DomainStatus(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 DomainStatus 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 DomainStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type FleetStatus. /// public class FleetStatus : ConstantClass { /// /// Constant ACTIVE for FleetStatus /// public static readonly FleetStatus ACTIVE = new FleetStatus("ACTIVE"); /// /// Constant CREATING for FleetStatus /// public static readonly FleetStatus CREATING = new FleetStatus("CREATING"); /// /// Constant DELETED for FleetStatus /// public static readonly FleetStatus DELETED = new FleetStatus("DELETED"); /// /// Constant DELETING for FleetStatus /// public static readonly FleetStatus DELETING = new FleetStatus("DELETING"); /// /// Constant FAILED_TO_CREATE for FleetStatus /// public static readonly FleetStatus FAILED_TO_CREATE = new FleetStatus("FAILED_TO_CREATE"); /// /// Constant FAILED_TO_DELETE for FleetStatus /// public static readonly FleetStatus FAILED_TO_DELETE = new FleetStatus("FAILED_TO_DELETE"); /// /// 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 FleetStatus(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 FleetStatus 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 FleetStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type IdentityProviderType. /// public class IdentityProviderType : ConstantClass { /// /// Constant SAML for IdentityProviderType /// public static readonly IdentityProviderType SAML = new IdentityProviderType("SAML"); /// /// 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 IdentityProviderType(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 IdentityProviderType 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 IdentityProviderType(string value) { return FindValue(value); } } }