/*
* 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 devicefarm-2015-06-23.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.DeviceFarm
{
///
/// Constants used for properties of type ArtifactCategory.
///
public class ArtifactCategory : ConstantClass
{
///
/// Constant FILE for ArtifactCategory
///
public static readonly ArtifactCategory FILE = new ArtifactCategory("FILE");
///
/// Constant LOG for ArtifactCategory
///
public static readonly ArtifactCategory LOG = new ArtifactCategory("LOG");
///
/// Constant SCREENSHOT for ArtifactCategory
///
public static readonly ArtifactCategory SCREENSHOT = new ArtifactCategory("SCREENSHOT");
///
/// 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 ArtifactCategory(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 ArtifactCategory 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 ArtifactCategory(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ArtifactType.
///
public class ArtifactType : ConstantClass
{
///
/// Constant APPIUM_JAVA_OUTPUT for ArtifactType
///
public static readonly ArtifactType APPIUM_JAVA_OUTPUT = new ArtifactType("APPIUM_JAVA_OUTPUT");
///
/// Constant APPIUM_JAVA_XML_OUTPUT for ArtifactType
///
public static readonly ArtifactType APPIUM_JAVA_XML_OUTPUT = new ArtifactType("APPIUM_JAVA_XML_OUTPUT");
///
/// Constant APPIUM_PYTHON_OUTPUT for ArtifactType
///
public static readonly ArtifactType APPIUM_PYTHON_OUTPUT = new ArtifactType("APPIUM_PYTHON_OUTPUT");
///
/// Constant APPIUM_PYTHON_XML_OUTPUT for ArtifactType
///
public static readonly ArtifactType APPIUM_PYTHON_XML_OUTPUT = new ArtifactType("APPIUM_PYTHON_XML_OUTPUT");
///
/// Constant APPIUM_SERVER_OUTPUT for ArtifactType
///
public static readonly ArtifactType APPIUM_SERVER_OUTPUT = new ArtifactType("APPIUM_SERVER_OUTPUT");
///
/// Constant APPLICATION_CRASH_REPORT for ArtifactType
///
public static readonly ArtifactType APPLICATION_CRASH_REPORT = new ArtifactType("APPLICATION_CRASH_REPORT");
///
/// Constant AUTOMATION_OUTPUT for ArtifactType
///
public static readonly ArtifactType AUTOMATION_OUTPUT = new ArtifactType("AUTOMATION_OUTPUT");
///
/// Constant CALABASH_JAVA_XML_OUTPUT for ArtifactType
///
public static readonly ArtifactType CALABASH_JAVA_XML_OUTPUT = new ArtifactType("CALABASH_JAVA_XML_OUTPUT");
///
/// Constant CALABASH_JSON_OUTPUT for ArtifactType
///
public static readonly ArtifactType CALABASH_JSON_OUTPUT = new ArtifactType("CALABASH_JSON_OUTPUT");
///
/// Constant CALABASH_PRETTY_OUTPUT for ArtifactType
///
public static readonly ArtifactType CALABASH_PRETTY_OUTPUT = new ArtifactType("CALABASH_PRETTY_OUTPUT");
///
/// Constant CALABASH_STANDARD_OUTPUT for ArtifactType
///
public static readonly ArtifactType CALABASH_STANDARD_OUTPUT = new ArtifactType("CALABASH_STANDARD_OUTPUT");
///
/// Constant CUSTOMER_ARTIFACT for ArtifactType
///
public static readonly ArtifactType CUSTOMER_ARTIFACT = new ArtifactType("CUSTOMER_ARTIFACT");
///
/// Constant CUSTOMER_ARTIFACT_LOG for ArtifactType
///
public static readonly ArtifactType CUSTOMER_ARTIFACT_LOG = new ArtifactType("CUSTOMER_ARTIFACT_LOG");
///
/// Constant DEVICE_LOG for ArtifactType
///
public static readonly ArtifactType DEVICE_LOG = new ArtifactType("DEVICE_LOG");
///
/// Constant EXERCISER_MONKEY_OUTPUT for ArtifactType
///
public static readonly ArtifactType EXERCISER_MONKEY_OUTPUT = new ArtifactType("EXERCISER_MONKEY_OUTPUT");
///
/// Constant EXPLORER_EVENT_LOG for ArtifactType
///
public static readonly ArtifactType EXPLORER_EVENT_LOG = new ArtifactType("EXPLORER_EVENT_LOG");
///
/// Constant EXPLORER_SUMMARY_LOG for ArtifactType
///
public static readonly ArtifactType EXPLORER_SUMMARY_LOG = new ArtifactType("EXPLORER_SUMMARY_LOG");
///
/// Constant INSTRUMENTATION_OUTPUT for ArtifactType
///
public static readonly ArtifactType INSTRUMENTATION_OUTPUT = new ArtifactType("INSTRUMENTATION_OUTPUT");
///
/// Constant MESSAGE_LOG for ArtifactType
///
public static readonly ArtifactType MESSAGE_LOG = new ArtifactType("MESSAGE_LOG");
///
/// Constant RESULT_LOG for ArtifactType
///
public static readonly ArtifactType RESULT_LOG = new ArtifactType("RESULT_LOG");
///
/// Constant SCREENSHOT for ArtifactType
///
public static readonly ArtifactType SCREENSHOT = new ArtifactType("SCREENSHOT");
///
/// Constant SERVICE_LOG for ArtifactType
///
public static readonly ArtifactType SERVICE_LOG = new ArtifactType("SERVICE_LOG");
///
/// Constant TESTSPEC_OUTPUT for ArtifactType
///
public static readonly ArtifactType TESTSPEC_OUTPUT = new ArtifactType("TESTSPEC_OUTPUT");
///
/// Constant UNKNOWN for ArtifactType
///
public static readonly ArtifactType UNKNOWN = new ArtifactType("UNKNOWN");
///
/// Constant VIDEO for ArtifactType
///
public static readonly ArtifactType VIDEO = new ArtifactType("VIDEO");
///
/// Constant VIDEO_LOG for ArtifactType
///
public static readonly ArtifactType VIDEO_LOG = new ArtifactType("VIDEO_LOG");
///
/// Constant WEBKIT_LOG for ArtifactType
///
public static readonly ArtifactType WEBKIT_LOG = new ArtifactType("WEBKIT_LOG");
///
/// Constant XCTEST_LOG for ArtifactType
///
public static readonly ArtifactType XCTEST_LOG = new ArtifactType("XCTEST_LOG");
///
/// 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 ArtifactType(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 ArtifactType 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 ArtifactType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type BillingMethod.
///
public class BillingMethod : ConstantClass
{
///
/// Constant METERED for BillingMethod
///
public static readonly BillingMethod METERED = new BillingMethod("METERED");
///
/// Constant UNMETERED for BillingMethod
///
public static readonly BillingMethod UNMETERED = new BillingMethod("UNMETERED");
///
/// 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 BillingMethod(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 BillingMethod 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 BillingMethod(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CurrencyCode.
///
public class CurrencyCode : ConstantClass
{
///
/// Constant USD for CurrencyCode
///
public static readonly CurrencyCode USD = new CurrencyCode("USD");
///
/// 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 CurrencyCode(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 CurrencyCode 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 CurrencyCode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DeviceAttribute.
///
public class DeviceAttribute : ConstantClass
{
///
/// Constant APPIUM_VERSION for DeviceAttribute
///
public static readonly DeviceAttribute APPIUM_VERSION = new DeviceAttribute("APPIUM_VERSION");
///
/// Constant ARN for DeviceAttribute
///
public static readonly DeviceAttribute ARN = new DeviceAttribute("ARN");
///
/// Constant AVAILABILITY for DeviceAttribute
///
public static readonly DeviceAttribute AVAILABILITY = new DeviceAttribute("AVAILABILITY");
///
/// Constant FLEET_TYPE for DeviceAttribute
///
public static readonly DeviceAttribute FLEET_TYPE = new DeviceAttribute("FLEET_TYPE");
///
/// Constant FORM_FACTOR for DeviceAttribute
///
public static readonly DeviceAttribute FORM_FACTOR = new DeviceAttribute("FORM_FACTOR");
///
/// Constant INSTANCE_ARN for DeviceAttribute
///
public static readonly DeviceAttribute INSTANCE_ARN = new DeviceAttribute("INSTANCE_ARN");
///
/// Constant INSTANCE_LABELS for DeviceAttribute
///
public static readonly DeviceAttribute INSTANCE_LABELS = new DeviceAttribute("INSTANCE_LABELS");
///
/// Constant MANUFACTURER for DeviceAttribute
///
public static readonly DeviceAttribute MANUFACTURER = new DeviceAttribute("MANUFACTURER");
///
/// Constant MODEL for DeviceAttribute
///
public static readonly DeviceAttribute MODEL = new DeviceAttribute("MODEL");
///
/// Constant OS_VERSION for DeviceAttribute
///
public static readonly DeviceAttribute OS_VERSION = new DeviceAttribute("OS_VERSION");
///
/// Constant PLATFORM for DeviceAttribute
///
public static readonly DeviceAttribute PLATFORM = new DeviceAttribute("PLATFORM");
///
/// Constant REMOTE_ACCESS_ENABLED for DeviceAttribute
///
public static readonly DeviceAttribute REMOTE_ACCESS_ENABLED = new DeviceAttribute("REMOTE_ACCESS_ENABLED");
///
/// Constant REMOTE_DEBUG_ENABLED for DeviceAttribute
///
public static readonly DeviceAttribute REMOTE_DEBUG_ENABLED = new DeviceAttribute("REMOTE_DEBUG_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 DeviceAttribute(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 DeviceAttribute 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 DeviceAttribute(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DeviceAvailability.
///
public class DeviceAvailability : ConstantClass
{
///
/// Constant AVAILABLE for DeviceAvailability
///
public static readonly DeviceAvailability AVAILABLE = new DeviceAvailability("AVAILABLE");
///
/// Constant BUSY for DeviceAvailability
///
public static readonly DeviceAvailability BUSY = new DeviceAvailability("BUSY");
///
/// Constant HIGHLY_AVAILABLE for DeviceAvailability
///
public static readonly DeviceAvailability HIGHLY_AVAILABLE = new DeviceAvailability("HIGHLY_AVAILABLE");
///
/// Constant TEMPORARY_NOT_AVAILABLE for DeviceAvailability
///
public static readonly DeviceAvailability TEMPORARY_NOT_AVAILABLE = new DeviceAvailability("TEMPORARY_NOT_AVAILABLE");
///
/// 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 DeviceAvailability(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 DeviceAvailability 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 DeviceAvailability(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DeviceFilterAttribute.
///
public class DeviceFilterAttribute : ConstantClass
{
///
/// Constant ARN for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute ARN = new DeviceFilterAttribute("ARN");
///
/// Constant AVAILABILITY for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute AVAILABILITY = new DeviceFilterAttribute("AVAILABILITY");
///
/// Constant FLEET_TYPE for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute FLEET_TYPE = new DeviceFilterAttribute("FLEET_TYPE");
///
/// Constant FORM_FACTOR for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute FORM_FACTOR = new DeviceFilterAttribute("FORM_FACTOR");
///
/// Constant INSTANCE_ARN for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute INSTANCE_ARN = new DeviceFilterAttribute("INSTANCE_ARN");
///
/// Constant INSTANCE_LABELS for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute INSTANCE_LABELS = new DeviceFilterAttribute("INSTANCE_LABELS");
///
/// Constant MANUFACTURER for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute MANUFACTURER = new DeviceFilterAttribute("MANUFACTURER");
///
/// Constant MODEL for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute MODEL = new DeviceFilterAttribute("MODEL");
///
/// Constant OS_VERSION for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute OS_VERSION = new DeviceFilterAttribute("OS_VERSION");
///
/// Constant PLATFORM for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute PLATFORM = new DeviceFilterAttribute("PLATFORM");
///
/// Constant REMOTE_ACCESS_ENABLED for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute REMOTE_ACCESS_ENABLED = new DeviceFilterAttribute("REMOTE_ACCESS_ENABLED");
///
/// Constant REMOTE_DEBUG_ENABLED for DeviceFilterAttribute
///
public static readonly DeviceFilterAttribute REMOTE_DEBUG_ENABLED = new DeviceFilterAttribute("REMOTE_DEBUG_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 DeviceFilterAttribute(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 DeviceFilterAttribute 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 DeviceFilterAttribute(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DeviceFormFactor.
///
public class DeviceFormFactor : ConstantClass
{
///
/// Constant PHONE for DeviceFormFactor
///
public static readonly DeviceFormFactor PHONE = new DeviceFormFactor("PHONE");
///
/// Constant TABLET for DeviceFormFactor
///
public static readonly DeviceFormFactor TABLET = new DeviceFormFactor("TABLET");
///
/// 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 DeviceFormFactor(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 DeviceFormFactor 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 DeviceFormFactor(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DevicePlatform.
///
public class DevicePlatform : ConstantClass
{
///
/// Constant ANDROID for DevicePlatform
///
public static readonly DevicePlatform ANDROID = new DevicePlatform("ANDROID");
///
/// Constant IOS for DevicePlatform
///
public static readonly DevicePlatform IOS = new DevicePlatform("IOS");
///
/// 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 DevicePlatform(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 DevicePlatform 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 DevicePlatform(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DevicePoolType.
///
public class DevicePoolType : ConstantClass
{
///
/// Constant CURATED for DevicePoolType
///
public static readonly DevicePoolType CURATED = new DevicePoolType("CURATED");
///
/// Constant PRIVATE for DevicePoolType
///
public static readonly DevicePoolType PRIVATE = new DevicePoolType("PRIVATE");
///
/// 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 DevicePoolType(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 DevicePoolType 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 DevicePoolType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ExecutionResult.
///
public class ExecutionResult : ConstantClass
{
///
/// Constant ERRORED for ExecutionResult
///
public static readonly ExecutionResult ERRORED = new ExecutionResult("ERRORED");
///
/// Constant FAILED for ExecutionResult
///
public static readonly ExecutionResult FAILED = new ExecutionResult("FAILED");
///
/// Constant PASSED for ExecutionResult
///
public static readonly ExecutionResult PASSED = new ExecutionResult("PASSED");
///
/// Constant PENDING for ExecutionResult
///
public static readonly ExecutionResult PENDING = new ExecutionResult("PENDING");
///
/// Constant SKIPPED for ExecutionResult
///
public static readonly ExecutionResult SKIPPED = new ExecutionResult("SKIPPED");
///
/// Constant STOPPED for ExecutionResult
///
public static readonly ExecutionResult STOPPED = new ExecutionResult("STOPPED");
///
/// Constant WARNED for ExecutionResult
///
public static readonly ExecutionResult WARNED = new ExecutionResult("WARNED");
///
/// 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 ExecutionResult(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 ExecutionResult 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 ExecutionResult(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ExecutionResultCode.
///
public class ExecutionResultCode : ConstantClass
{
///
/// Constant PARSING_FAILED for ExecutionResultCode
///
public static readonly ExecutionResultCode PARSING_FAILED = new ExecutionResultCode("PARSING_FAILED");
///
/// Constant VPC_ENDPOINT_SETUP_FAILED for ExecutionResultCode
///
public static readonly ExecutionResultCode VPC_ENDPOINT_SETUP_FAILED = new ExecutionResultCode("VPC_ENDPOINT_SETUP_FAILED");
///
/// 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 ExecutionResultCode(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 ExecutionResultCode 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 ExecutionResultCode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ExecutionStatus.
///
public class ExecutionStatus : ConstantClass
{
///
/// Constant COMPLETED for ExecutionStatus
///
public static readonly ExecutionStatus COMPLETED = new ExecutionStatus("COMPLETED");
///
/// Constant PENDING for ExecutionStatus
///
public static readonly ExecutionStatus PENDING = new ExecutionStatus("PENDING");
///
/// Constant PENDING_CONCURRENCY for ExecutionStatus
///
public static readonly ExecutionStatus PENDING_CONCURRENCY = new ExecutionStatus("PENDING_CONCURRENCY");
///
/// Constant PENDING_DEVICE for ExecutionStatus
///
public static readonly ExecutionStatus PENDING_DEVICE = new ExecutionStatus("PENDING_DEVICE");
///
/// Constant PREPARING for ExecutionStatus
///
public static readonly ExecutionStatus PREPARING = new ExecutionStatus("PREPARING");
///
/// Constant PROCESSING for ExecutionStatus
///
public static readonly ExecutionStatus PROCESSING = new ExecutionStatus("PROCESSING");
///
/// Constant RUNNING for ExecutionStatus
///
public static readonly ExecutionStatus RUNNING = new ExecutionStatus("RUNNING");
///
/// Constant SCHEDULING for ExecutionStatus
///
public static readonly ExecutionStatus SCHEDULING = new ExecutionStatus("SCHEDULING");
///
/// Constant STOPPING for ExecutionStatus
///
public static readonly ExecutionStatus STOPPING = new ExecutionStatus("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 ExecutionStatus(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 ExecutionStatus 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 ExecutionStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type InstanceStatus.
///
public class InstanceStatus : ConstantClass
{
///
/// Constant AVAILABLE for InstanceStatus
///
public static readonly InstanceStatus AVAILABLE = new InstanceStatus("AVAILABLE");
///
/// Constant IN_USE for InstanceStatus
///
public static readonly InstanceStatus IN_USE = new InstanceStatus("IN_USE");
///
/// Constant NOT_AVAILABLE for InstanceStatus
///
public static readonly InstanceStatus NOT_AVAILABLE = new InstanceStatus("NOT_AVAILABLE");
///
/// Constant PREPARING for InstanceStatus
///
public static readonly InstanceStatus PREPARING = new InstanceStatus("PREPARING");
///
/// 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 InstanceStatus(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 InstanceStatus 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 InstanceStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type InteractionMode.
///
public class InteractionMode : ConstantClass
{
///
/// Constant INTERACTIVE for InteractionMode
///
public static readonly InteractionMode INTERACTIVE = new InteractionMode("INTERACTIVE");
///
/// Constant NO_VIDEO for InteractionMode
///
public static readonly InteractionMode NO_VIDEO = new InteractionMode("NO_VIDEO");
///
/// Constant VIDEO_ONLY for InteractionMode
///
public static readonly InteractionMode VIDEO_ONLY = new InteractionMode("VIDEO_ONLY");
///
/// 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 InteractionMode(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 InteractionMode 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 InteractionMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NetworkProfileType.
///
public class NetworkProfileType : ConstantClass
{
///
/// Constant CURATED for NetworkProfileType
///
public static readonly NetworkProfileType CURATED = new NetworkProfileType("CURATED");
///
/// Constant PRIVATE for NetworkProfileType
///
public static readonly NetworkProfileType PRIVATE = new NetworkProfileType("PRIVATE");
///
/// 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 NetworkProfileType(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 NetworkProfileType 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 NetworkProfileType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type OfferingTransactionType.
///
public class OfferingTransactionType : ConstantClass
{
///
/// Constant PURCHASE for OfferingTransactionType
///
public static readonly OfferingTransactionType PURCHASE = new OfferingTransactionType("PURCHASE");
///
/// Constant RENEW for OfferingTransactionType
///
public static readonly OfferingTransactionType RENEW = new OfferingTransactionType("RENEW");
///
/// Constant SYSTEM for OfferingTransactionType
///
public static readonly OfferingTransactionType SYSTEM = new OfferingTransactionType("SYSTEM");
///
/// 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 OfferingTransactionType(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 OfferingTransactionType 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 OfferingTransactionType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type OfferingType.
///
public class OfferingType : ConstantClass
{
///
/// Constant RECURRING for OfferingType
///
public static readonly OfferingType RECURRING = new OfferingType("RECURRING");
///
/// 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 OfferingType(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 OfferingType 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 OfferingType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RecurringChargeFrequency.
///
public class RecurringChargeFrequency : ConstantClass
{
///
/// Constant MONTHLY for RecurringChargeFrequency
///
public static readonly RecurringChargeFrequency MONTHLY = new RecurringChargeFrequency("MONTHLY");
///
/// 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 RecurringChargeFrequency(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 RecurringChargeFrequency 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 RecurringChargeFrequency(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RuleOperator.
///
public class RuleOperator : ConstantClass
{
///
/// Constant CONTAINS for RuleOperator
///
public static readonly RuleOperator CONTAINS = new RuleOperator("CONTAINS");
///
/// Constant EQUALS_TO for RuleOperator
///
public static readonly RuleOperator EQUALS_TO = new RuleOperator("EQUALS");
///
/// Constant GREATER_THAN for RuleOperator
///
public static readonly RuleOperator GREATER_THAN = new RuleOperator("GREATER_THAN");
///
/// Constant GREATER_THAN_OR_EQUALS for RuleOperator
///
public static readonly RuleOperator GREATER_THAN_OR_EQUALS = new RuleOperator("GREATER_THAN_OR_EQUALS");
///
/// Constant IN for RuleOperator
///
public static readonly RuleOperator IN = new RuleOperator("IN");
///
/// Constant LESS_THAN for RuleOperator
///
public static readonly RuleOperator LESS_THAN = new RuleOperator("LESS_THAN");
///
/// Constant LESS_THAN_OR_EQUALS for RuleOperator
///
public static readonly RuleOperator LESS_THAN_OR_EQUALS = new RuleOperator("LESS_THAN_OR_EQUALS");
///
/// Constant NOT_IN for RuleOperator
///
public static readonly RuleOperator NOT_IN = new RuleOperator("NOT_IN");
///
/// 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 RuleOperator(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 RuleOperator 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 RuleOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SampleType.
///
public class SampleType : ConstantClass
{
///
/// Constant CPU for SampleType
///
public static readonly SampleType CPU = new SampleType("CPU");
///
/// Constant MEMORY for SampleType
///
public static readonly SampleType MEMORY = new SampleType("MEMORY");
///
/// Constant NATIVE_AVG_DRAWTIME for SampleType
///
public static readonly SampleType NATIVE_AVG_DRAWTIME = new SampleType("NATIVE_AVG_DRAWTIME");
///
/// Constant NATIVE_FPS for SampleType
///
public static readonly SampleType NATIVE_FPS = new SampleType("NATIVE_FPS");
///
/// Constant NATIVE_FRAMES for SampleType
///
public static readonly SampleType NATIVE_FRAMES = new SampleType("NATIVE_FRAMES");
///
/// Constant NATIVE_MAX_DRAWTIME for SampleType
///
public static readonly SampleType NATIVE_MAX_DRAWTIME = new SampleType("NATIVE_MAX_DRAWTIME");
///
/// Constant NATIVE_MIN_DRAWTIME for SampleType
///
public static readonly SampleType NATIVE_MIN_DRAWTIME = new SampleType("NATIVE_MIN_DRAWTIME");
///
/// Constant OPENGL_AVG_DRAWTIME for SampleType
///
public static readonly SampleType OPENGL_AVG_DRAWTIME = new SampleType("OPENGL_AVG_DRAWTIME");
///
/// Constant OPENGL_FPS for SampleType
///
public static readonly SampleType OPENGL_FPS = new SampleType("OPENGL_FPS");
///
/// Constant OPENGL_FRAMES for SampleType
///
public static readonly SampleType OPENGL_FRAMES = new SampleType("OPENGL_FRAMES");
///
/// Constant OPENGL_MAX_DRAWTIME for SampleType
///
public static readonly SampleType OPENGL_MAX_DRAWTIME = new SampleType("OPENGL_MAX_DRAWTIME");
///
/// Constant OPENGL_MIN_DRAWTIME for SampleType
///
public static readonly SampleType OPENGL_MIN_DRAWTIME = new SampleType("OPENGL_MIN_DRAWTIME");
///
/// Constant RX for SampleType
///
public static readonly SampleType RX = new SampleType("RX");
///
/// Constant RX_RATE for SampleType
///
public static readonly SampleType RX_RATE = new SampleType("RX_RATE");
///
/// Constant THREADS for SampleType
///
public static readonly SampleType THREADS = new SampleType("THREADS");
///
/// Constant TX for SampleType
///
public static readonly SampleType TX = new SampleType("TX");
///
/// Constant TX_RATE for SampleType
///
public static readonly SampleType TX_RATE = new SampleType("TX_RATE");
///
/// 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 SampleType(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 SampleType 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 SampleType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TestGridSessionArtifactCategory.
///
public class TestGridSessionArtifactCategory : ConstantClass
{
///
/// Constant LOG for TestGridSessionArtifactCategory
///
public static readonly TestGridSessionArtifactCategory LOG = new TestGridSessionArtifactCategory("LOG");
///
/// Constant VIDEO for TestGridSessionArtifactCategory
///
public static readonly TestGridSessionArtifactCategory VIDEO = new TestGridSessionArtifactCategory("VIDEO");
///
/// 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 TestGridSessionArtifactCategory(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 TestGridSessionArtifactCategory 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 TestGridSessionArtifactCategory(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TestGridSessionArtifactType.
///
public class TestGridSessionArtifactType : ConstantClass
{
///
/// Constant SELENIUM_LOG for TestGridSessionArtifactType
///
public static readonly TestGridSessionArtifactType SELENIUM_LOG = new TestGridSessionArtifactType("SELENIUM_LOG");
///
/// Constant UNKNOWN for TestGridSessionArtifactType
///
public static readonly TestGridSessionArtifactType UNKNOWN = new TestGridSessionArtifactType("UNKNOWN");
///
/// Constant VIDEO for TestGridSessionArtifactType
///
public static readonly TestGridSessionArtifactType VIDEO = new TestGridSessionArtifactType("VIDEO");
///
/// 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 TestGridSessionArtifactType(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 TestGridSessionArtifactType 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 TestGridSessionArtifactType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TestGridSessionStatus.
///
public class TestGridSessionStatus : ConstantClass
{
///
/// Constant ACTIVE for TestGridSessionStatus
///
public static readonly TestGridSessionStatus ACTIVE = new TestGridSessionStatus("ACTIVE");
///
/// Constant CLOSED for TestGridSessionStatus
///
public static readonly TestGridSessionStatus CLOSED = new TestGridSessionStatus("CLOSED");
///
/// Constant ERRORED for TestGridSessionStatus
///
public static readonly TestGridSessionStatus ERRORED = new TestGridSessionStatus("ERRORED");
///
/// 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 TestGridSessionStatus(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 TestGridSessionStatus 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 TestGridSessionStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TestType.
///
public class TestType : ConstantClass
{
///
/// Constant APPIUM_JAVA_JUNIT for TestType
///
public static readonly TestType APPIUM_JAVA_JUNIT = new TestType("APPIUM_JAVA_JUNIT");
///
/// Constant APPIUM_JAVA_TESTNG for TestType
///
public static readonly TestType APPIUM_JAVA_TESTNG = new TestType("APPIUM_JAVA_TESTNG");
///
/// Constant APPIUM_NODE for TestType
///
public static readonly TestType APPIUM_NODE = new TestType("APPIUM_NODE");
///
/// Constant APPIUM_PYTHON for TestType
///
public static readonly TestType APPIUM_PYTHON = new TestType("APPIUM_PYTHON");
///
/// Constant APPIUM_RUBY for TestType
///
public static readonly TestType APPIUM_RUBY = new TestType("APPIUM_RUBY");
///
/// Constant APPIUM_WEB_JAVA_JUNIT for TestType
///
public static readonly TestType APPIUM_WEB_JAVA_JUNIT = new TestType("APPIUM_WEB_JAVA_JUNIT");
///
/// Constant APPIUM_WEB_JAVA_TESTNG for TestType
///
public static readonly TestType APPIUM_WEB_JAVA_TESTNG = new TestType("APPIUM_WEB_JAVA_TESTNG");
///
/// Constant APPIUM_WEB_NODE for TestType
///
public static readonly TestType APPIUM_WEB_NODE = new TestType("APPIUM_WEB_NODE");
///
/// Constant APPIUM_WEB_PYTHON for TestType
///
public static readonly TestType APPIUM_WEB_PYTHON = new TestType("APPIUM_WEB_PYTHON");
///
/// Constant APPIUM_WEB_RUBY for TestType
///
public static readonly TestType APPIUM_WEB_RUBY = new TestType("APPIUM_WEB_RUBY");
///
/// Constant BUILTIN_EXPLORER for TestType
///
public static readonly TestType BUILTIN_EXPLORER = new TestType("BUILTIN_EXPLORER");
///
/// Constant BUILTIN_FUZZ for TestType
///
public static readonly TestType BUILTIN_FUZZ = new TestType("BUILTIN_FUZZ");
///
/// Constant CALABASH for TestType
///
public static readonly TestType CALABASH = new TestType("CALABASH");
///
/// Constant INSTRUMENTATION for TestType
///
public static readonly TestType INSTRUMENTATION = new TestType("INSTRUMENTATION");
///
/// Constant REMOTE_ACCESS_RECORD for TestType
///
public static readonly TestType REMOTE_ACCESS_RECORD = new TestType("REMOTE_ACCESS_RECORD");
///
/// Constant REMOTE_ACCESS_REPLAY for TestType
///
public static readonly TestType REMOTE_ACCESS_REPLAY = new TestType("REMOTE_ACCESS_REPLAY");
///
/// Constant UIAUTOMATION for TestType
///
public static readonly TestType UIAUTOMATION = new TestType("UIAUTOMATION");
///
/// Constant UIAUTOMATOR for TestType
///
public static readonly TestType UIAUTOMATOR = new TestType("UIAUTOMATOR");
///
/// Constant WEB_PERFORMANCE_PROFILE for TestType
///
public static readonly TestType WEB_PERFORMANCE_PROFILE = new TestType("WEB_PERFORMANCE_PROFILE");
///
/// Constant XCTEST for TestType
///
public static readonly TestType XCTEST = new TestType("XCTEST");
///
/// Constant XCTEST_UI for TestType
///
public static readonly TestType XCTEST_UI = new TestType("XCTEST_UI");
///
/// 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 TestType(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 TestType 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 TestType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type UploadCategory.
///
public class UploadCategory : ConstantClass
{
///
/// Constant CURATED for UploadCategory
///
public static readonly UploadCategory CURATED = new UploadCategory("CURATED");
///
/// Constant PRIVATE for UploadCategory
///
public static readonly UploadCategory PRIVATE = new UploadCategory("PRIVATE");
///
/// 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 UploadCategory(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 UploadCategory 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 UploadCategory(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type UploadStatus.
///
public class UploadStatus : ConstantClass
{
///
/// Constant FAILED for UploadStatus
///
public static readonly UploadStatus FAILED = new UploadStatus("FAILED");
///
/// Constant INITIALIZED for UploadStatus
///
public static readonly UploadStatus INITIALIZED = new UploadStatus("INITIALIZED");
///
/// Constant PROCESSING for UploadStatus
///
public static readonly UploadStatus PROCESSING = new UploadStatus("PROCESSING");
///
/// Constant SUCCEEDED for UploadStatus
///
public static readonly UploadStatus SUCCEEDED = new UploadStatus("SUCCEEDED");
///
/// 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 UploadStatus(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 UploadStatus 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 UploadStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type UploadType.
///
public class UploadType : ConstantClass
{
///
/// Constant ANDROID_APP for UploadType
///
public static readonly UploadType ANDROID_APP = new UploadType("ANDROID_APP");
///
/// Constant APPIUM_JAVA_JUNIT_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_JAVA_JUNIT_TEST_PACKAGE = new UploadType("APPIUM_JAVA_JUNIT_TEST_PACKAGE");
///
/// Constant APPIUM_JAVA_JUNIT_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_JAVA_JUNIT_TEST_SPEC = new UploadType("APPIUM_JAVA_JUNIT_TEST_SPEC");
///
/// Constant APPIUM_JAVA_TESTNG_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_JAVA_TESTNG_TEST_PACKAGE = new UploadType("APPIUM_JAVA_TESTNG_TEST_PACKAGE");
///
/// Constant APPIUM_JAVA_TESTNG_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_JAVA_TESTNG_TEST_SPEC = new UploadType("APPIUM_JAVA_TESTNG_TEST_SPEC");
///
/// Constant APPIUM_NODE_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_NODE_TEST_PACKAGE = new UploadType("APPIUM_NODE_TEST_PACKAGE");
///
/// Constant APPIUM_NODE_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_NODE_TEST_SPEC = new UploadType("APPIUM_NODE_TEST_SPEC");
///
/// Constant APPIUM_PYTHON_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_PYTHON_TEST_PACKAGE = new UploadType("APPIUM_PYTHON_TEST_PACKAGE");
///
/// Constant APPIUM_PYTHON_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_PYTHON_TEST_SPEC = new UploadType("APPIUM_PYTHON_TEST_SPEC");
///
/// Constant APPIUM_RUBY_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_RUBY_TEST_PACKAGE = new UploadType("APPIUM_RUBY_TEST_PACKAGE");
///
/// Constant APPIUM_RUBY_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_RUBY_TEST_SPEC = new UploadType("APPIUM_RUBY_TEST_SPEC");
///
/// Constant APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE = new UploadType("APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE");
///
/// Constant APPIUM_WEB_JAVA_JUNIT_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_WEB_JAVA_JUNIT_TEST_SPEC = new UploadType("APPIUM_WEB_JAVA_JUNIT_TEST_SPEC");
///
/// Constant APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE = new UploadType("APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE");
///
/// Constant APPIUM_WEB_JAVA_TESTNG_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_WEB_JAVA_TESTNG_TEST_SPEC = new UploadType("APPIUM_WEB_JAVA_TESTNG_TEST_SPEC");
///
/// Constant APPIUM_WEB_NODE_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_WEB_NODE_TEST_PACKAGE = new UploadType("APPIUM_WEB_NODE_TEST_PACKAGE");
///
/// Constant APPIUM_WEB_NODE_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_WEB_NODE_TEST_SPEC = new UploadType("APPIUM_WEB_NODE_TEST_SPEC");
///
/// Constant APPIUM_WEB_PYTHON_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_WEB_PYTHON_TEST_PACKAGE = new UploadType("APPIUM_WEB_PYTHON_TEST_PACKAGE");
///
/// Constant APPIUM_WEB_PYTHON_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_WEB_PYTHON_TEST_SPEC = new UploadType("APPIUM_WEB_PYTHON_TEST_SPEC");
///
/// Constant APPIUM_WEB_RUBY_TEST_PACKAGE for UploadType
///
public static readonly UploadType APPIUM_WEB_RUBY_TEST_PACKAGE = new UploadType("APPIUM_WEB_RUBY_TEST_PACKAGE");
///
/// Constant APPIUM_WEB_RUBY_TEST_SPEC for UploadType
///
public static readonly UploadType APPIUM_WEB_RUBY_TEST_SPEC = new UploadType("APPIUM_WEB_RUBY_TEST_SPEC");
///
/// Constant CALABASH_TEST_PACKAGE for UploadType
///
public static readonly UploadType CALABASH_TEST_PACKAGE = new UploadType("CALABASH_TEST_PACKAGE");
///
/// Constant EXTERNAL_DATA for UploadType
///
public static readonly UploadType EXTERNAL_DATA = new UploadType("EXTERNAL_DATA");
///
/// Constant INSTRUMENTATION_TEST_PACKAGE for UploadType
///
public static readonly UploadType INSTRUMENTATION_TEST_PACKAGE = new UploadType("INSTRUMENTATION_TEST_PACKAGE");
///
/// Constant INSTRUMENTATION_TEST_SPEC for UploadType
///
public static readonly UploadType INSTRUMENTATION_TEST_SPEC = new UploadType("INSTRUMENTATION_TEST_SPEC");
///
/// Constant IOS_APP for UploadType
///
public static readonly UploadType IOS_APP = new UploadType("IOS_APP");
///
/// Constant UIAUTOMATION_TEST_PACKAGE for UploadType
///
public static readonly UploadType UIAUTOMATION_TEST_PACKAGE = new UploadType("UIAUTOMATION_TEST_PACKAGE");
///
/// Constant UIAUTOMATOR_TEST_PACKAGE for UploadType
///
public static readonly UploadType UIAUTOMATOR_TEST_PACKAGE = new UploadType("UIAUTOMATOR_TEST_PACKAGE");
///
/// Constant WEB_APP for UploadType
///
public static readonly UploadType WEB_APP = new UploadType("WEB_APP");
///
/// Constant XCTEST_TEST_PACKAGE for UploadType
///
public static readonly UploadType XCTEST_TEST_PACKAGE = new UploadType("XCTEST_TEST_PACKAGE");
///
/// Constant XCTEST_UI_TEST_PACKAGE for UploadType
///
public static readonly UploadType XCTEST_UI_TEST_PACKAGE = new UploadType("XCTEST_UI_TEST_PACKAGE");
///
/// Constant XCTEST_UI_TEST_SPEC for UploadType
///
public static readonly UploadType XCTEST_UI_TEST_SPEC = new UploadType("XCTEST_UI_TEST_SPEC");
///
/// 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 UploadType(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 UploadType 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 UploadType(string value)
{
return FindValue(value);
}
}
}