/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.AppStream { /// /// Constants used for properties of type AccessEndpointType. /// public class AccessEndpointType : ConstantClass { /// /// Constant STREAMING for AccessEndpointType /// public static readonly AccessEndpointType STREAMING = new AccessEndpointType("STREAMING"); /// /// 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 AccessEndpointType(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 AccessEndpointType 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 AccessEndpointType(string value) { return FindValue(value); } } /// /// Constants used for properties of type Action. /// public class Action : ConstantClass { /// /// Constant CLIPBOARD_COPY_FROM_LOCAL_DEVICE for Action /// public static readonly Action CLIPBOARD_COPY_FROM_LOCAL_DEVICE = new Action("CLIPBOARD_COPY_FROM_LOCAL_DEVICE"); /// /// Constant CLIPBOARD_COPY_TO_LOCAL_DEVICE for Action /// public static readonly Action CLIPBOARD_COPY_TO_LOCAL_DEVICE = new Action("CLIPBOARD_COPY_TO_LOCAL_DEVICE"); /// /// Constant DOMAIN_PASSWORD_SIGNIN for Action /// public static readonly Action DOMAIN_PASSWORD_SIGNIN = new Action("DOMAIN_PASSWORD_SIGNIN"); /// /// Constant DOMAIN_SMART_CARD_SIGNIN for Action /// public static readonly Action DOMAIN_SMART_CARD_SIGNIN = new Action("DOMAIN_SMART_CARD_SIGNIN"); /// /// Constant FILE_DOWNLOAD for Action /// public static readonly Action FILE_DOWNLOAD = new Action("FILE_DOWNLOAD"); /// /// Constant FILE_UPLOAD for Action /// public static readonly Action FILE_UPLOAD = new Action("FILE_UPLOAD"); /// /// Constant PRINTING_TO_LOCAL_DEVICE for Action /// public static readonly Action PRINTING_TO_LOCAL_DEVICE = new Action("PRINTING_TO_LOCAL_DEVICE"); /// /// 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 Action(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 Action 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 Action(string value) { return FindValue(value); } } /// /// Constants used for properties of type AppBlockBuilderAttribute. /// public class AppBlockBuilderAttribute : ConstantClass { /// /// Constant ACCESS_ENDPOINTS for AppBlockBuilderAttribute /// public static readonly AppBlockBuilderAttribute ACCESS_ENDPOINTS = new AppBlockBuilderAttribute("ACCESS_ENDPOINTS"); /// /// Constant IAM_ROLE_ARN for AppBlockBuilderAttribute /// public static readonly AppBlockBuilderAttribute IAM_ROLE_ARN = new AppBlockBuilderAttribute("IAM_ROLE_ARN"); /// /// Constant VPC_CONFIGURATION_SECURITY_GROUP_IDS for AppBlockBuilderAttribute /// public static readonly AppBlockBuilderAttribute VPC_CONFIGURATION_SECURITY_GROUP_IDS = new AppBlockBuilderAttribute("VPC_CONFIGURATION_SECURITY_GROUP_IDS"); /// /// 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 AppBlockBuilderAttribute(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 AppBlockBuilderAttribute 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 AppBlockBuilderAttribute(string value) { return FindValue(value); } } /// /// Constants used for properties of type AppBlockBuilderPlatformType. /// public class AppBlockBuilderPlatformType : ConstantClass { /// /// Constant WINDOWS_SERVER_2019 for AppBlockBuilderPlatformType /// public static readonly AppBlockBuilderPlatformType WINDOWS_SERVER_2019 = new AppBlockBuilderPlatformType("WINDOWS_SERVER_2019"); /// /// 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 AppBlockBuilderPlatformType(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 AppBlockBuilderPlatformType 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 AppBlockBuilderPlatformType(string value) { return FindValue(value); } } /// /// Constants used for properties of type AppBlockBuilderState. /// public class AppBlockBuilderState : ConstantClass { /// /// Constant RUNNING for AppBlockBuilderState /// public static readonly AppBlockBuilderState RUNNING = new AppBlockBuilderState("RUNNING"); /// /// Constant STARTING for AppBlockBuilderState /// public static readonly AppBlockBuilderState STARTING = new AppBlockBuilderState("STARTING"); /// /// Constant STOPPED for AppBlockBuilderState /// public static readonly AppBlockBuilderState STOPPED = new AppBlockBuilderState("STOPPED"); /// /// Constant STOPPING for AppBlockBuilderState /// public static readonly AppBlockBuilderState STOPPING = new AppBlockBuilderState("STOPPING"); /// /// 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 AppBlockBuilderState(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 AppBlockBuilderState 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 AppBlockBuilderState(string value) { return FindValue(value); } } /// /// Constants used for properties of type AppBlockBuilderStateChangeReasonCode. /// public class AppBlockBuilderStateChangeReasonCode : ConstantClass { /// /// Constant INTERNAL_ERROR for AppBlockBuilderStateChangeReasonCode /// public static readonly AppBlockBuilderStateChangeReasonCode INTERNAL_ERROR = new AppBlockBuilderStateChangeReasonCode("INTERNAL_ERROR"); /// /// 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 AppBlockBuilderStateChangeReasonCode(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 AppBlockBuilderStateChangeReasonCode 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 AppBlockBuilderStateChangeReasonCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type AppBlockState. /// public class AppBlockState : ConstantClass { /// /// Constant ACTIVE for AppBlockState /// public static readonly AppBlockState ACTIVE = new AppBlockState("ACTIVE"); /// /// Constant INACTIVE for AppBlockState /// public static readonly AppBlockState INACTIVE = new AppBlockState("INACTIVE"); /// /// 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 AppBlockState(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 AppBlockState 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 AppBlockState(string value) { return FindValue(value); } } /// /// Constants used for properties of type ApplicationAttribute. /// public class ApplicationAttribute : ConstantClass { /// /// Constant LAUNCH_PARAMETERS for ApplicationAttribute /// public static readonly ApplicationAttribute LAUNCH_PARAMETERS = new ApplicationAttribute("LAUNCH_PARAMETERS"); /// /// Constant WORKING_DIRECTORY for ApplicationAttribute /// public static readonly ApplicationAttribute WORKING_DIRECTORY = new ApplicationAttribute("WORKING_DIRECTORY"); /// /// 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 ApplicationAttribute(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 ApplicationAttribute 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 ApplicationAttribute(string value) { return FindValue(value); } } /// /// Constants used for properties of type AppVisibility. /// public class AppVisibility : ConstantClass { /// /// Constant ALL for AppVisibility /// public static readonly AppVisibility ALL = new AppVisibility("ALL"); /// /// Constant ASSOCIATED for AppVisibility /// public static readonly AppVisibility ASSOCIATED = new AppVisibility("ASSOCIATED"); /// /// 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 AppVisibility(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 AppVisibility 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 AppVisibility(string value) { return FindValue(value); } } /// /// Constants used for properties of type AuthenticationType. /// public class AuthenticationType : ConstantClass { /// /// Constant API for AuthenticationType /// public static readonly AuthenticationType API = new AuthenticationType("API"); /// /// Constant AWS_AD for AuthenticationType /// public static readonly AuthenticationType AWS_AD = new AuthenticationType("AWS_AD"); /// /// Constant SAML for AuthenticationType /// public static readonly AuthenticationType SAML = new AuthenticationType("SAML"); /// /// Constant USERPOOL for AuthenticationType /// public static readonly AuthenticationType USERPOOL = new AuthenticationType("USERPOOL"); /// /// 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 AuthenticationType(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 AuthenticationType 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 AuthenticationType(string value) { return FindValue(value); } } /// /// Constants used for properties of type CertificateBasedAuthStatus. /// public class CertificateBasedAuthStatus : ConstantClass { /// /// Constant DISABLED for CertificateBasedAuthStatus /// public static readonly CertificateBasedAuthStatus DISABLED = new CertificateBasedAuthStatus("DISABLED"); /// /// Constant ENABLED for CertificateBasedAuthStatus /// public static readonly CertificateBasedAuthStatus ENABLED = new CertificateBasedAuthStatus("ENABLED"); /// /// Constant ENABLED_NO_DIRECTORY_LOGIN_FALLBACK for CertificateBasedAuthStatus /// public static readonly CertificateBasedAuthStatus ENABLED_NO_DIRECTORY_LOGIN_FALLBACK = new CertificateBasedAuthStatus("ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"); /// /// 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 CertificateBasedAuthStatus(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 CertificateBasedAuthStatus 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 CertificateBasedAuthStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type FleetAttribute. /// public class FleetAttribute : ConstantClass { /// /// Constant DOMAIN_JOIN_INFO for FleetAttribute /// public static readonly FleetAttribute DOMAIN_JOIN_INFO = new FleetAttribute("DOMAIN_JOIN_INFO"); /// /// Constant IAM_ROLE_ARN for FleetAttribute /// public static readonly FleetAttribute IAM_ROLE_ARN = new FleetAttribute("IAM_ROLE_ARN"); /// /// Constant SESSION_SCRIPT_S3_LOCATION for FleetAttribute /// public static readonly FleetAttribute SESSION_SCRIPT_S3_LOCATION = new FleetAttribute("SESSION_SCRIPT_S3_LOCATION"); /// /// Constant USB_DEVICE_FILTER_STRINGS for FleetAttribute /// public static readonly FleetAttribute USB_DEVICE_FILTER_STRINGS = new FleetAttribute("USB_DEVICE_FILTER_STRINGS"); /// /// Constant VPC_CONFIGURATION for FleetAttribute /// public static readonly FleetAttribute VPC_CONFIGURATION = new FleetAttribute("VPC_CONFIGURATION"); /// /// Constant VPC_CONFIGURATION_SECURITY_GROUP_IDS for FleetAttribute /// public static readonly FleetAttribute VPC_CONFIGURATION_SECURITY_GROUP_IDS = new FleetAttribute("VPC_CONFIGURATION_SECURITY_GROUP_IDS"); /// /// 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 FleetAttribute(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 FleetAttribute 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 FleetAttribute(string value) { return FindValue(value); } } /// /// Constants used for properties of type FleetErrorCode. /// public class FleetErrorCode : ConstantClass { /// /// Constant DOMAIN_JOIN_ERROR_ACCESS_DENIED for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_ACCESS_DENIED = new FleetErrorCode("DOMAIN_JOIN_ERROR_ACCESS_DENIED"); /// /// Constant DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = new FleetErrorCode("DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED"); /// /// Constant DOMAIN_JOIN_ERROR_FILE_NOT_FOUND for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_FILE_NOT_FOUND = new FleetErrorCode("DOMAIN_JOIN_ERROR_FILE_NOT_FOUND"); /// /// Constant DOMAIN_JOIN_ERROR_INVALID_PARAMETER for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_INVALID_PARAMETER = new FleetErrorCode("DOMAIN_JOIN_ERROR_INVALID_PARAMETER"); /// /// Constant DOMAIN_JOIN_ERROR_LOGON_FAILURE for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_LOGON_FAILURE = new FleetErrorCode("DOMAIN_JOIN_ERROR_LOGON_FAILURE"); /// /// Constant DOMAIN_JOIN_ERROR_MORE_DATA for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_MORE_DATA = new FleetErrorCode("DOMAIN_JOIN_ERROR_MORE_DATA"); /// /// Constant DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN = new FleetErrorCode("DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN"); /// /// Constant DOMAIN_JOIN_ERROR_NOT_SUPPORTED for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_NOT_SUPPORTED = new FleetErrorCode("DOMAIN_JOIN_ERROR_NOT_SUPPORTED"); /// /// Constant DOMAIN_JOIN_INTERNAL_SERVICE_ERROR for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_INTERNAL_SERVICE_ERROR = new FleetErrorCode("DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"); /// /// Constant DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME = new FleetErrorCode("DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME"); /// /// Constant DOMAIN_JOIN_NERR_PASSWORD_EXPIRED for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_NERR_PASSWORD_EXPIRED = new FleetErrorCode("DOMAIN_JOIN_NERR_PASSWORD_EXPIRED"); /// /// Constant DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED for FleetErrorCode /// public static readonly FleetErrorCode DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED = new FleetErrorCode("DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED"); /// /// Constant FLEET_INSTANCE_PROVISIONING_FAILURE for FleetErrorCode /// public static readonly FleetErrorCode FLEET_INSTANCE_PROVISIONING_FAILURE = new FleetErrorCode("FLEET_INSTANCE_PROVISIONING_FAILURE"); /// /// Constant FLEET_STOPPED for FleetErrorCode /// public static readonly FleetErrorCode FLEET_STOPPED = new FleetErrorCode("FLEET_STOPPED"); /// /// Constant IAM_SERVICE_ROLE_IS_MISSING for FleetErrorCode /// public static readonly FleetErrorCode IAM_SERVICE_ROLE_IS_MISSING = new FleetErrorCode("IAM_SERVICE_ROLE_IS_MISSING"); /// /// Constant IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION for FleetErrorCode /// public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION"); /// /// Constant IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION for FleetErrorCode /// public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION"); /// /// Constant IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION for FleetErrorCode /// public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION"); /// /// Constant IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION for FleetErrorCode /// public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION"); /// /// Constant IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION for FleetErrorCode /// public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION"); /// /// Constant IGW_NOT_ATTACHED for FleetErrorCode /// public static readonly FleetErrorCode IGW_NOT_ATTACHED = new FleetErrorCode("IGW_NOT_ATTACHED"); /// /// Constant IMAGE_NOT_FOUND for FleetErrorCode /// public static readonly FleetErrorCode IMAGE_NOT_FOUND = new FleetErrorCode("IMAGE_NOT_FOUND"); /// /// Constant INTERNAL_SERVICE_ERROR for FleetErrorCode /// public static readonly FleetErrorCode INTERNAL_SERVICE_ERROR = new FleetErrorCode("INTERNAL_SERVICE_ERROR"); /// /// Constant INVALID_SUBNET_CONFIGURATION for FleetErrorCode /// public static readonly FleetErrorCode INVALID_SUBNET_CONFIGURATION = new FleetErrorCode("INVALID_SUBNET_CONFIGURATION"); /// /// Constant MACHINE_ROLE_IS_MISSING for FleetErrorCode /// public static readonly FleetErrorCode MACHINE_ROLE_IS_MISSING = new FleetErrorCode("MACHINE_ROLE_IS_MISSING"); /// /// Constant NETWORK_INTERFACE_LIMIT_EXCEEDED for FleetErrorCode /// public static readonly FleetErrorCode NETWORK_INTERFACE_LIMIT_EXCEEDED = new FleetErrorCode("NETWORK_INTERFACE_LIMIT_EXCEEDED"); /// /// Constant SECURITY_GROUPS_NOT_FOUND for FleetErrorCode /// public static readonly FleetErrorCode SECURITY_GROUPS_NOT_FOUND = new FleetErrorCode("SECURITY_GROUPS_NOT_FOUND"); /// /// Constant STS_DISABLED_IN_REGION for FleetErrorCode /// public static readonly FleetErrorCode STS_DISABLED_IN_REGION = new FleetErrorCode("STS_DISABLED_IN_REGION"); /// /// Constant SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES for FleetErrorCode /// public static readonly FleetErrorCode SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES = new FleetErrorCode("SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES"); /// /// Constant SUBNET_NOT_FOUND for FleetErrorCode /// public static readonly FleetErrorCode SUBNET_NOT_FOUND = new FleetErrorCode("SUBNET_NOT_FOUND"); /// /// 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 FleetErrorCode(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 FleetErrorCode 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 FleetErrorCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type FleetState. /// public class FleetState : ConstantClass { /// /// Constant RUNNING for FleetState /// public static readonly FleetState RUNNING = new FleetState("RUNNING"); /// /// Constant STARTING for FleetState /// public static readonly FleetState STARTING = new FleetState("STARTING"); /// /// Constant STOPPED for FleetState /// public static readonly FleetState STOPPED = new FleetState("STOPPED"); /// /// Constant STOPPING for FleetState /// public static readonly FleetState STOPPING = new FleetState("STOPPING"); /// /// 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 FleetState(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 FleetState 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 FleetState(string value) { return FindValue(value); } } /// /// Constants used for properties of type FleetType. /// public class FleetType : ConstantClass { /// /// Constant ALWAYS_ON for FleetType /// public static readonly FleetType ALWAYS_ON = new FleetType("ALWAYS_ON"); /// /// Constant ELASTIC for FleetType /// public static readonly FleetType ELASTIC = new FleetType("ELASTIC"); /// /// Constant ON_DEMAND for FleetType /// public static readonly FleetType ON_DEMAND = new FleetType("ON_DEMAND"); /// /// 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 FleetType(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 FleetType 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 FleetType(string value) { return FindValue(value); } } /// /// Constants used for properties of type ImageBuilderState. /// public class ImageBuilderState : ConstantClass { /// /// Constant DELETING for ImageBuilderState /// public static readonly ImageBuilderState DELETING = new ImageBuilderState("DELETING"); /// /// Constant FAILED for ImageBuilderState /// public static readonly ImageBuilderState FAILED = new ImageBuilderState("FAILED"); /// /// Constant PENDING for ImageBuilderState /// public static readonly ImageBuilderState PENDING = new ImageBuilderState("PENDING"); /// /// Constant PENDING_QUALIFICATION for ImageBuilderState /// public static readonly ImageBuilderState PENDING_QUALIFICATION = new ImageBuilderState("PENDING_QUALIFICATION"); /// /// Constant REBOOTING for ImageBuilderState /// public static readonly ImageBuilderState REBOOTING = new ImageBuilderState("REBOOTING"); /// /// Constant RUNNING for ImageBuilderState /// public static readonly ImageBuilderState RUNNING = new ImageBuilderState("RUNNING"); /// /// Constant SNAPSHOTTING for ImageBuilderState /// public static readonly ImageBuilderState SNAPSHOTTING = new ImageBuilderState("SNAPSHOTTING"); /// /// Constant STOPPED for ImageBuilderState /// public static readonly ImageBuilderState STOPPED = new ImageBuilderState("STOPPED"); /// /// Constant STOPPING for ImageBuilderState /// public static readonly ImageBuilderState STOPPING = new ImageBuilderState("STOPPING"); /// /// Constant UPDATING for ImageBuilderState /// public static readonly ImageBuilderState UPDATING = new ImageBuilderState("UPDATING"); /// /// Constant UPDATING_AGENT for ImageBuilderState /// public static readonly ImageBuilderState UPDATING_AGENT = new ImageBuilderState("UPDATING_AGENT"); /// /// 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 ImageBuilderState(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 ImageBuilderState 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 ImageBuilderState(string value) { return FindValue(value); } } /// /// Constants used for properties of type ImageBuilderStateChangeReasonCode. /// public class ImageBuilderStateChangeReasonCode : ConstantClass { /// /// Constant IMAGE_UNAVAILABLE for ImageBuilderStateChangeReasonCode /// public static readonly ImageBuilderStateChangeReasonCode IMAGE_UNAVAILABLE = new ImageBuilderStateChangeReasonCode("IMAGE_UNAVAILABLE"); /// /// Constant INTERNAL_ERROR for ImageBuilderStateChangeReasonCode /// public static readonly ImageBuilderStateChangeReasonCode INTERNAL_ERROR = new ImageBuilderStateChangeReasonCode("INTERNAL_ERROR"); /// /// 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 ImageBuilderStateChangeReasonCode(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 ImageBuilderStateChangeReasonCode 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 ImageBuilderStateChangeReasonCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type ImageState. /// public class ImageState : ConstantClass { /// /// Constant AVAILABLE for ImageState /// public static readonly ImageState AVAILABLE = new ImageState("AVAILABLE"); /// /// Constant COPYING for ImageState /// public static readonly ImageState COPYING = new ImageState("COPYING"); /// /// Constant CREATING for ImageState /// public static readonly ImageState CREATING = new ImageState("CREATING"); /// /// Constant DELETING for ImageState /// public static readonly ImageState DELETING = new ImageState("DELETING"); /// /// Constant FAILED for ImageState /// public static readonly ImageState FAILED = new ImageState("FAILED"); /// /// Constant IMPORTING for ImageState /// public static readonly ImageState IMPORTING = new ImageState("IMPORTING"); /// /// Constant PENDING for ImageState /// public static readonly ImageState PENDING = new ImageState("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 ImageState(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 ImageState 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 ImageState(string value) { return FindValue(value); } } /// /// Constants used for properties of type ImageStateChangeReasonCode. /// public class ImageStateChangeReasonCode : ConstantClass { /// /// Constant IMAGE_BUILDER_NOT_AVAILABLE for ImageStateChangeReasonCode /// public static readonly ImageStateChangeReasonCode IMAGE_BUILDER_NOT_AVAILABLE = new ImageStateChangeReasonCode("IMAGE_BUILDER_NOT_AVAILABLE"); /// /// Constant IMAGE_COPY_FAILURE for ImageStateChangeReasonCode /// public static readonly ImageStateChangeReasonCode IMAGE_COPY_FAILURE = new ImageStateChangeReasonCode("IMAGE_COPY_FAILURE"); /// /// Constant INTERNAL_ERROR for ImageStateChangeReasonCode /// public static readonly ImageStateChangeReasonCode INTERNAL_ERROR = new ImageStateChangeReasonCode("INTERNAL_ERROR"); /// /// 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 ImageStateChangeReasonCode(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 ImageStateChangeReasonCode 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 ImageStateChangeReasonCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type MessageAction. /// public class MessageAction : ConstantClass { /// /// Constant RESEND for MessageAction /// public static readonly MessageAction RESEND = new MessageAction("RESEND"); /// /// Constant SUPPRESS for MessageAction /// public static readonly MessageAction SUPPRESS = new MessageAction("SUPPRESS"); /// /// 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 MessageAction(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 MessageAction 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 MessageAction(string value) { return FindValue(value); } } /// /// Constants used for properties of type PackagingType. /// public class PackagingType : ConstantClass { /// /// Constant APPSTREAM2 for PackagingType /// public static readonly PackagingType APPSTREAM2 = new PackagingType("APPSTREAM2"); /// /// Constant CUSTOM for PackagingType /// public static readonly PackagingType CUSTOM = new PackagingType("CUSTOM"); /// /// 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 PackagingType(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 PackagingType 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 PackagingType(string value) { return FindValue(value); } } /// /// Constants used for properties of type Permission. /// public class Permission : ConstantClass { /// /// Constant DISABLED for Permission /// public static readonly Permission DISABLED = new Permission("DISABLED"); /// /// Constant ENABLED for Permission /// public static readonly Permission ENABLED = new Permission("ENABLED"); /// /// 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 Permission(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 Permission 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 Permission(string value) { return FindValue(value); } } /// /// Constants used for properties of type PlatformType. /// public class PlatformType : ConstantClass { /// /// Constant AMAZON_LINUX2 for PlatformType /// public static readonly PlatformType AMAZON_LINUX2 = new PlatformType("AMAZON_LINUX2"); /// /// Constant WINDOWS for PlatformType /// public static readonly PlatformType WINDOWS = new PlatformType("WINDOWS"); /// /// Constant WINDOWS_SERVER_2016 for PlatformType /// public static readonly PlatformType WINDOWS_SERVER_2016 = new PlatformType("WINDOWS_SERVER_2016"); /// /// Constant WINDOWS_SERVER_2019 for PlatformType /// public static readonly PlatformType WINDOWS_SERVER_2019 = new PlatformType("WINDOWS_SERVER_2019"); /// /// 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 PlatformType(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 PlatformType 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 PlatformType(string value) { return FindValue(value); } } /// /// Constants used for properties of type PreferredProtocol. /// public class PreferredProtocol : ConstantClass { /// /// Constant TCP for PreferredProtocol /// public static readonly PreferredProtocol TCP = new PreferredProtocol("TCP"); /// /// Constant UDP for PreferredProtocol /// public static readonly PreferredProtocol UDP = new PreferredProtocol("UDP"); /// /// 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 PreferredProtocol(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 PreferredProtocol 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 PreferredProtocol(string value) { return FindValue(value); } } /// /// Constants used for properties of type SessionConnectionState. /// public class SessionConnectionState : ConstantClass { /// /// Constant CONNECTED for SessionConnectionState /// public static readonly SessionConnectionState CONNECTED = new SessionConnectionState("CONNECTED"); /// /// Constant NOT_CONNECTED for SessionConnectionState /// public static readonly SessionConnectionState NOT_CONNECTED = new SessionConnectionState("NOT_CONNECTED"); /// /// 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 SessionConnectionState(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 SessionConnectionState 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 SessionConnectionState(string value) { return FindValue(value); } } /// /// Constants used for properties of type StackAttribute. /// public class StackAttribute : ConstantClass { /// /// Constant ACCESS_ENDPOINTS for StackAttribute /// public static readonly StackAttribute ACCESS_ENDPOINTS = new StackAttribute("ACCESS_ENDPOINTS"); /// /// Constant EMBED_HOST_DOMAINS for StackAttribute /// public static readonly StackAttribute EMBED_HOST_DOMAINS = new StackAttribute("EMBED_HOST_DOMAINS"); /// /// Constant FEEDBACK_URL for StackAttribute /// public static readonly StackAttribute FEEDBACK_URL = new StackAttribute("FEEDBACK_URL"); /// /// Constant IAM_ROLE_ARN for StackAttribute /// public static readonly StackAttribute IAM_ROLE_ARN = new StackAttribute("IAM_ROLE_ARN"); /// /// Constant REDIRECT_URL for StackAttribute /// public static readonly StackAttribute REDIRECT_URL = new StackAttribute("REDIRECT_URL"); /// /// Constant STORAGE_CONNECTOR_GOOGLE_DRIVE for StackAttribute /// public static readonly StackAttribute STORAGE_CONNECTOR_GOOGLE_DRIVE = new StackAttribute("STORAGE_CONNECTOR_GOOGLE_DRIVE"); /// /// Constant STORAGE_CONNECTOR_HOMEFOLDERS for StackAttribute /// public static readonly StackAttribute STORAGE_CONNECTOR_HOMEFOLDERS = new StackAttribute("STORAGE_CONNECTOR_HOMEFOLDERS"); /// /// Constant STORAGE_CONNECTOR_ONE_DRIVE for StackAttribute /// public static readonly StackAttribute STORAGE_CONNECTOR_ONE_DRIVE = new StackAttribute("STORAGE_CONNECTOR_ONE_DRIVE"); /// /// Constant STORAGE_CONNECTORS for StackAttribute /// public static readonly StackAttribute STORAGE_CONNECTORS = new StackAttribute("STORAGE_CONNECTORS"); /// /// Constant STREAMING_EXPERIENCE_SETTINGS for StackAttribute /// public static readonly StackAttribute STREAMING_EXPERIENCE_SETTINGS = new StackAttribute("STREAMING_EXPERIENCE_SETTINGS"); /// /// Constant THEME_NAME for StackAttribute /// public static readonly StackAttribute THEME_NAME = new StackAttribute("THEME_NAME"); /// /// Constant USER_SETTINGS for StackAttribute /// public static readonly StackAttribute USER_SETTINGS = new StackAttribute("USER_SETTINGS"); /// /// 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 StackAttribute(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 StackAttribute 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 StackAttribute(string value) { return FindValue(value); } } /// /// Constants used for properties of type StackErrorCode. /// public class StackErrorCode : ConstantClass { /// /// Constant INTERNAL_SERVICE_ERROR for StackErrorCode /// public static readonly StackErrorCode INTERNAL_SERVICE_ERROR = new StackErrorCode("INTERNAL_SERVICE_ERROR"); /// /// Constant STORAGE_CONNECTOR_ERROR for StackErrorCode /// public static readonly StackErrorCode STORAGE_CONNECTOR_ERROR = new StackErrorCode("STORAGE_CONNECTOR_ERROR"); /// /// 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 StackErrorCode(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 StackErrorCode 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 StackErrorCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type StorageConnectorType. /// public class StorageConnectorType : ConstantClass { /// /// Constant GOOGLE_DRIVE for StorageConnectorType /// public static readonly StorageConnectorType GOOGLE_DRIVE = new StorageConnectorType("GOOGLE_DRIVE"); /// /// Constant HOMEFOLDERS for StorageConnectorType /// public static readonly StorageConnectorType HOMEFOLDERS = new StorageConnectorType("HOMEFOLDERS"); /// /// Constant ONE_DRIVE for StorageConnectorType /// public static readonly StorageConnectorType ONE_DRIVE = new StorageConnectorType("ONE_DRIVE"); /// /// 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 StorageConnectorType(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 StorageConnectorType 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 StorageConnectorType(string value) { return FindValue(value); } } /// /// Constants used for properties of type StreamSessionState. /// public class StreamSessionState : ConstantClass { /// /// Constant ACTIVE for StreamSessionState /// public static readonly StreamSessionState ACTIVE = new StreamSessionState("ACTIVE"); /// /// Constant EXPIRED for StreamSessionState /// public static readonly StreamSessionState EXPIRED = new StreamSessionState("EXPIRED"); /// /// Constant PENDING for StreamSessionState /// public static readonly StreamSessionState PENDING = new StreamSessionState("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 StreamSessionState(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 StreamSessionState 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 StreamSessionState(string value) { return FindValue(value); } } /// /// Constants used for properties of type StreamView. /// public class StreamView : ConstantClass { /// /// Constant APP for StreamView /// public static readonly StreamView APP = new StreamView("APP"); /// /// Constant DESKTOP for StreamView /// public static readonly StreamView DESKTOP = new StreamView("DESKTOP"); /// /// 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 StreamView(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 StreamView 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 StreamView(string value) { return FindValue(value); } } /// /// Constants used for properties of type UsageReportExecutionErrorCode. /// public class UsageReportExecutionErrorCode : ConstantClass { /// /// Constant ACCESS_DENIED for UsageReportExecutionErrorCode /// public static readonly UsageReportExecutionErrorCode ACCESS_DENIED = new UsageReportExecutionErrorCode("ACCESS_DENIED"); /// /// Constant INTERNAL_SERVICE_ERROR for UsageReportExecutionErrorCode /// public static readonly UsageReportExecutionErrorCode INTERNAL_SERVICE_ERROR = new UsageReportExecutionErrorCode("INTERNAL_SERVICE_ERROR"); /// /// Constant RESOURCE_NOT_FOUND for UsageReportExecutionErrorCode /// public static readonly UsageReportExecutionErrorCode RESOURCE_NOT_FOUND = new UsageReportExecutionErrorCode("RESOURCE_NOT_FOUND"); /// /// 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 UsageReportExecutionErrorCode(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 UsageReportExecutionErrorCode 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 UsageReportExecutionErrorCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type UsageReportSchedule. /// public class UsageReportSchedule : ConstantClass { /// /// Constant DAILY for UsageReportSchedule /// public static readonly UsageReportSchedule DAILY = new UsageReportSchedule("DAILY"); /// /// 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 UsageReportSchedule(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 UsageReportSchedule 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 UsageReportSchedule(string value) { return FindValue(value); } } /// /// Constants used for properties of type UserStackAssociationErrorCode. /// public class UserStackAssociationErrorCode : ConstantClass { /// /// Constant DIRECTORY_NOT_FOUND for UserStackAssociationErrorCode /// public static readonly UserStackAssociationErrorCode DIRECTORY_NOT_FOUND = new UserStackAssociationErrorCode("DIRECTORY_NOT_FOUND"); /// /// Constant INTERNAL_ERROR for UserStackAssociationErrorCode /// public static readonly UserStackAssociationErrorCode INTERNAL_ERROR = new UserStackAssociationErrorCode("INTERNAL_ERROR"); /// /// Constant STACK_NOT_FOUND for UserStackAssociationErrorCode /// public static readonly UserStackAssociationErrorCode STACK_NOT_FOUND = new UserStackAssociationErrorCode("STACK_NOT_FOUND"); /// /// Constant USER_NAME_NOT_FOUND for UserStackAssociationErrorCode /// public static readonly UserStackAssociationErrorCode USER_NAME_NOT_FOUND = new UserStackAssociationErrorCode("USER_NAME_NOT_FOUND"); /// /// 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 UserStackAssociationErrorCode(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 UserStackAssociationErrorCode 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 UserStackAssociationErrorCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type VisibilityType. /// public class VisibilityType : ConstantClass { /// /// Constant PRIVATE for VisibilityType /// public static readonly VisibilityType PRIVATE = new VisibilityType("PRIVATE"); /// /// Constant PUBLIC for VisibilityType /// public static readonly VisibilityType PUBLIC = new VisibilityType("PUBLIC"); /// /// Constant SHARED for VisibilityType /// public static readonly VisibilityType SHARED = new VisibilityType("SHARED"); /// /// 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 VisibilityType(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 VisibilityType 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 VisibilityType(string value) { return FindValue(value); } } }