/* * 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 glue-2017-03-31.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.Glue { /// /// Constants used for properties of type AdditionalOptionKeys. /// public class AdditionalOptionKeys : ConstantClass { /// /// Constant PerformanceTuningCaching for AdditionalOptionKeys /// public static readonly AdditionalOptionKeys PerformanceTuningCaching = new AdditionalOptionKeys("performanceTuning.caching"); /// /// 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 AdditionalOptionKeys(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 AdditionalOptionKeys 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 AdditionalOptionKeys(string value) { return FindValue(value); } } /// /// Constants used for properties of type AggFunction. /// public class AggFunction : ConstantClass { /// /// Constant Avg for AggFunction /// public static readonly AggFunction Avg = new AggFunction("avg"); /// /// Constant Count for AggFunction /// public static readonly AggFunction Count = new AggFunction("count"); /// /// Constant CountDistinct for AggFunction /// public static readonly AggFunction CountDistinct = new AggFunction("countDistinct"); /// /// Constant First for AggFunction /// public static readonly AggFunction First = new AggFunction("first"); /// /// Constant Kurtosis for AggFunction /// public static readonly AggFunction Kurtosis = new AggFunction("kurtosis"); /// /// Constant Last for AggFunction /// public static readonly AggFunction Last = new AggFunction("last"); /// /// Constant Max for AggFunction /// public static readonly AggFunction Max = new AggFunction("max"); /// /// Constant Min for AggFunction /// public static readonly AggFunction Min = new AggFunction("min"); /// /// Constant Skewness for AggFunction /// public static readonly AggFunction Skewness = new AggFunction("skewness"); /// /// Constant Stddev_pop for AggFunction /// public static readonly AggFunction Stddev_pop = new AggFunction("stddev_pop"); /// /// Constant Stddev_samp for AggFunction /// public static readonly AggFunction Stddev_samp = new AggFunction("stddev_samp"); /// /// Constant Sum for AggFunction /// public static readonly AggFunction Sum = new AggFunction("sum"); /// /// Constant SumDistinct for AggFunction /// public static readonly AggFunction SumDistinct = new AggFunction("sumDistinct"); /// /// Constant Var_pop for AggFunction /// public static readonly AggFunction Var_pop = new AggFunction("var_pop"); /// /// Constant Var_samp for AggFunction /// public static readonly AggFunction Var_samp = new AggFunction("var_samp"); /// /// 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 AggFunction(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 AggFunction 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 AggFunction(string value) { return FindValue(value); } } /// /// Constants used for properties of type BackfillErrorCode. /// public class BackfillErrorCode : ConstantClass { /// /// Constant ENCRYPTED_PARTITION_ERROR for BackfillErrorCode /// public static readonly BackfillErrorCode ENCRYPTED_PARTITION_ERROR = new BackfillErrorCode("ENCRYPTED_PARTITION_ERROR"); /// /// Constant INTERNAL_ERROR for BackfillErrorCode /// public static readonly BackfillErrorCode INTERNAL_ERROR = new BackfillErrorCode("INTERNAL_ERROR"); /// /// Constant INVALID_PARTITION_TYPE_DATA_ERROR for BackfillErrorCode /// public static readonly BackfillErrorCode INVALID_PARTITION_TYPE_DATA_ERROR = new BackfillErrorCode("INVALID_PARTITION_TYPE_DATA_ERROR"); /// /// Constant MISSING_PARTITION_VALUE_ERROR for BackfillErrorCode /// public static readonly BackfillErrorCode MISSING_PARTITION_VALUE_ERROR = new BackfillErrorCode("MISSING_PARTITION_VALUE_ERROR"); /// /// Constant UNSUPPORTED_PARTITION_CHARACTER_ERROR for BackfillErrorCode /// public static readonly BackfillErrorCode UNSUPPORTED_PARTITION_CHARACTER_ERROR = new BackfillErrorCode("UNSUPPORTED_PARTITION_CHARACTER_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 BackfillErrorCode(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 BackfillErrorCode 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 BackfillErrorCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type BlueprintRunState. /// public class BlueprintRunState : ConstantClass { /// /// Constant FAILED for BlueprintRunState /// public static readonly BlueprintRunState FAILED = new BlueprintRunState("FAILED"); /// /// Constant ROLLING_BACK for BlueprintRunState /// public static readonly BlueprintRunState ROLLING_BACK = new BlueprintRunState("ROLLING_BACK"); /// /// Constant RUNNING for BlueprintRunState /// public static readonly BlueprintRunState RUNNING = new BlueprintRunState("RUNNING"); /// /// Constant SUCCEEDED for BlueprintRunState /// public static readonly BlueprintRunState SUCCEEDED = new BlueprintRunState("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 BlueprintRunState(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 BlueprintRunState 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 BlueprintRunState(string value) { return FindValue(value); } } /// /// Constants used for properties of type BlueprintStatus. /// public class BlueprintStatus : ConstantClass { /// /// Constant ACTIVE for BlueprintStatus /// public static readonly BlueprintStatus ACTIVE = new BlueprintStatus("ACTIVE"); /// /// Constant CREATING for BlueprintStatus /// public static readonly BlueprintStatus CREATING = new BlueprintStatus("CREATING"); /// /// Constant FAILED for BlueprintStatus /// public static readonly BlueprintStatus FAILED = new BlueprintStatus("FAILED"); /// /// Constant UPDATING for BlueprintStatus /// public static readonly BlueprintStatus UPDATING = new BlueprintStatus("UPDATING"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public BlueprintStatus(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 BlueprintStatus 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 BlueprintStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type CatalogEncryptionMode. /// public class CatalogEncryptionMode : ConstantClass { /// /// Constant DISABLED for CatalogEncryptionMode /// public static readonly CatalogEncryptionMode DISABLED = new CatalogEncryptionMode("DISABLED"); /// /// Constant SSEKMS for CatalogEncryptionMode /// public static readonly CatalogEncryptionMode SSEKMS = new CatalogEncryptionMode("SSE-KMS"); /// /// 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 CatalogEncryptionMode(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 CatalogEncryptionMode 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 CatalogEncryptionMode(string value) { return FindValue(value); } } /// /// Constants used for properties of type CloudWatchEncryptionMode. /// public class CloudWatchEncryptionMode : ConstantClass { /// /// Constant DISABLED for CloudWatchEncryptionMode /// public static readonly CloudWatchEncryptionMode DISABLED = new CloudWatchEncryptionMode("DISABLED"); /// /// Constant SSEKMS for CloudWatchEncryptionMode /// public static readonly CloudWatchEncryptionMode SSEKMS = new CloudWatchEncryptionMode("SSE-KMS"); /// /// 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 CloudWatchEncryptionMode(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 CloudWatchEncryptionMode 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 CloudWatchEncryptionMode(string value) { return FindValue(value); } } /// /// Constants used for properties of type ColumnStatisticsType. /// public class ColumnStatisticsType : ConstantClass { /// /// Constant BINARY for ColumnStatisticsType /// public static readonly ColumnStatisticsType BINARY = new ColumnStatisticsType("BINARY"); /// /// Constant BOOLEAN for ColumnStatisticsType /// public static readonly ColumnStatisticsType BOOLEAN = new ColumnStatisticsType("BOOLEAN"); /// /// Constant DATE for ColumnStatisticsType /// public static readonly ColumnStatisticsType DATE = new ColumnStatisticsType("DATE"); /// /// Constant DECIMAL for ColumnStatisticsType /// public static readonly ColumnStatisticsType DECIMAL = new ColumnStatisticsType("DECIMAL"); /// /// Constant DOUBLE for ColumnStatisticsType /// public static readonly ColumnStatisticsType DOUBLE = new ColumnStatisticsType("DOUBLE"); /// /// Constant LONG for ColumnStatisticsType /// public static readonly ColumnStatisticsType LONG = new ColumnStatisticsType("LONG"); /// /// Constant STRING for ColumnStatisticsType /// public static readonly ColumnStatisticsType STRING = new ColumnStatisticsType("STRING"); /// /// 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 ColumnStatisticsType(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 ColumnStatisticsType 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 ColumnStatisticsType(string value) { return FindValue(value); } } /// /// Constants used for properties of type Comparator. /// public class Comparator : ConstantClass { /// /// Constant EQUALS for Comparator /// public static readonly Comparator EQUALS = new Comparator("EQUALS"); /// /// Constant GREATER_THAN for Comparator /// public static readonly Comparator GREATER_THAN = new Comparator("GREATER_THAN"); /// /// Constant GREATER_THAN_EQUALS for Comparator /// public static readonly Comparator GREATER_THAN_EQUALS = new Comparator("GREATER_THAN_EQUALS"); /// /// Constant LESS_THAN for Comparator /// public static readonly Comparator LESS_THAN = new Comparator("LESS_THAN"); /// /// Constant LESS_THAN_EQUALS for Comparator /// public static readonly Comparator LESS_THAN_EQUALS = new Comparator("LESS_THAN_EQUALS"); /// /// 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 Comparator(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 Comparator 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 Comparator(string value) { return FindValue(value); } } /// /// Constants used for properties of type Compatibility. /// public class Compatibility : ConstantClass { /// /// Constant BACKWARD for Compatibility /// public static readonly Compatibility BACKWARD = new Compatibility("BACKWARD"); /// /// Constant BACKWARD_ALL for Compatibility /// public static readonly Compatibility BACKWARD_ALL = new Compatibility("BACKWARD_ALL"); /// /// Constant DISABLED for Compatibility /// public static readonly Compatibility DISABLED = new Compatibility("DISABLED"); /// /// Constant FORWARD for Compatibility /// public static readonly Compatibility FORWARD = new Compatibility("FORWARD"); /// /// Constant FORWARD_ALL for Compatibility /// public static readonly Compatibility FORWARD_ALL = new Compatibility("FORWARD_ALL"); /// /// Constant FULL for Compatibility /// public static readonly Compatibility FULL = new Compatibility("FULL"); /// /// Constant FULL_ALL for Compatibility /// public static readonly Compatibility FULL_ALL = new Compatibility("FULL_ALL"); /// /// Constant NONE for Compatibility /// public static readonly Compatibility NONE = new Compatibility("NONE"); /// /// 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 Compatibility(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 Compatibility 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 Compatibility(string value) { return FindValue(value); } } /// /// Constants used for properties of type CompressionType. /// public class CompressionType : ConstantClass { /// /// Constant Bzip2 for CompressionType /// public static readonly CompressionType Bzip2 = new CompressionType("bzip2"); /// /// Constant Gzip for CompressionType /// public static readonly CompressionType Gzip = new CompressionType("gzip"); /// /// 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 CompressionType(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 CompressionType 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 CompressionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type ConnectionPropertyKey. /// public class ConnectionPropertyKey : ConstantClass { /// /// Constant CONFIG_FILES for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey CONFIG_FILES = new ConnectionPropertyKey("CONFIG_FILES"); /// /// Constant CONNECTION_URL for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey CONNECTION_URL = new ConnectionPropertyKey("CONNECTION_URL"); /// /// Constant CONNECTOR_CLASS_NAME for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey CONNECTOR_CLASS_NAME = new ConnectionPropertyKey("CONNECTOR_CLASS_NAME"); /// /// Constant CONNECTOR_TYPE for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey CONNECTOR_TYPE = new ConnectionPropertyKey("CONNECTOR_TYPE"); /// /// Constant CONNECTOR_URL for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey CONNECTOR_URL = new ConnectionPropertyKey("CONNECTOR_URL"); /// /// Constant CUSTOM_JDBC_CERT for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey CUSTOM_JDBC_CERT = new ConnectionPropertyKey("CUSTOM_JDBC_CERT"); /// /// Constant CUSTOM_JDBC_CERT_STRING for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey CUSTOM_JDBC_CERT_STRING = new ConnectionPropertyKey("CUSTOM_JDBC_CERT_STRING"); /// /// Constant ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD = new ConnectionPropertyKey("ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD"); /// /// Constant ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD = new ConnectionPropertyKey("ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD"); /// /// Constant ENCRYPTED_PASSWORD for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey ENCRYPTED_PASSWORD = new ConnectionPropertyKey("ENCRYPTED_PASSWORD"); /// /// Constant HOST for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey HOST = new ConnectionPropertyKey("HOST"); /// /// Constant INSTANCE_ID for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey INSTANCE_ID = new ConnectionPropertyKey("INSTANCE_ID"); /// /// Constant JDBC_CONNECTION_URL for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey JDBC_CONNECTION_URL = new ConnectionPropertyKey("JDBC_CONNECTION_URL"); /// /// Constant JDBC_DRIVER_CLASS_NAME for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey JDBC_DRIVER_CLASS_NAME = new ConnectionPropertyKey("JDBC_DRIVER_CLASS_NAME"); /// /// Constant JDBC_DRIVER_JAR_URI for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey JDBC_DRIVER_JAR_URI = new ConnectionPropertyKey("JDBC_DRIVER_JAR_URI"); /// /// Constant JDBC_ENFORCE_SSL for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey JDBC_ENFORCE_SSL = new ConnectionPropertyKey("JDBC_ENFORCE_SSL"); /// /// Constant JDBC_ENGINE for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey JDBC_ENGINE = new ConnectionPropertyKey("JDBC_ENGINE"); /// /// Constant JDBC_ENGINE_VERSION for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey JDBC_ENGINE_VERSION = new ConnectionPropertyKey("JDBC_ENGINE_VERSION"); /// /// Constant KAFKA_BOOTSTRAP_SERVERS for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey KAFKA_BOOTSTRAP_SERVERS = new ConnectionPropertyKey("KAFKA_BOOTSTRAP_SERVERS"); /// /// Constant KAFKA_CLIENT_KEY_PASSWORD for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey KAFKA_CLIENT_KEY_PASSWORD = new ConnectionPropertyKey("KAFKA_CLIENT_KEY_PASSWORD"); /// /// Constant KAFKA_CLIENT_KEYSTORE for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey KAFKA_CLIENT_KEYSTORE = new ConnectionPropertyKey("KAFKA_CLIENT_KEYSTORE"); /// /// Constant KAFKA_CLIENT_KEYSTORE_PASSWORD for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey KAFKA_CLIENT_KEYSTORE_PASSWORD = new ConnectionPropertyKey("KAFKA_CLIENT_KEYSTORE_PASSWORD"); /// /// Constant KAFKA_CUSTOM_CERT for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey KAFKA_CUSTOM_CERT = new ConnectionPropertyKey("KAFKA_CUSTOM_CERT"); /// /// Constant KAFKA_SKIP_CUSTOM_CERT_VALIDATION for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey KAFKA_SKIP_CUSTOM_CERT_VALIDATION = new ConnectionPropertyKey("KAFKA_SKIP_CUSTOM_CERT_VALIDATION"); /// /// Constant KAFKA_SSL_ENABLED for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey KAFKA_SSL_ENABLED = new ConnectionPropertyKey("KAFKA_SSL_ENABLED"); /// /// Constant PASSWORD for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey PASSWORD = new ConnectionPropertyKey("PASSWORD"); /// /// Constant PORT for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey PORT = new ConnectionPropertyKey("PORT"); /// /// Constant SECRET_ID for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey SECRET_ID = new ConnectionPropertyKey("SECRET_ID"); /// /// Constant SKIP_CUSTOM_JDBC_CERT_VALIDATION for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey SKIP_CUSTOM_JDBC_CERT_VALIDATION = new ConnectionPropertyKey("SKIP_CUSTOM_JDBC_CERT_VALIDATION"); /// /// Constant USERNAME for ConnectionPropertyKey /// public static readonly ConnectionPropertyKey USERNAME = new ConnectionPropertyKey("USERNAME"); /// /// 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 ConnectionPropertyKey(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 ConnectionPropertyKey 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 ConnectionPropertyKey(string value) { return FindValue(value); } } /// /// Constants used for properties of type ConnectionType. /// public class ConnectionType : ConstantClass { /// /// Constant CUSTOM for ConnectionType /// public static readonly ConnectionType CUSTOM = new ConnectionType("CUSTOM"); /// /// Constant JDBC for ConnectionType /// public static readonly ConnectionType JDBC = new ConnectionType("JDBC"); /// /// Constant KAFKA for ConnectionType /// public static readonly ConnectionType KAFKA = new ConnectionType("KAFKA"); /// /// Constant MARKETPLACE for ConnectionType /// public static readonly ConnectionType MARKETPLACE = new ConnectionType("MARKETPLACE"); /// /// Constant MONGODB for ConnectionType /// public static readonly ConnectionType MONGODB = new ConnectionType("MONGODB"); /// /// Constant NETWORK for ConnectionType /// public static readonly ConnectionType NETWORK = new ConnectionType("NETWORK"); /// /// Constant SFTP for ConnectionType /// public static readonly ConnectionType SFTP = new ConnectionType("SFTP"); /// /// 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 ConnectionType(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 ConnectionType 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 ConnectionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type CrawlerHistoryState. /// public class CrawlerHistoryState : ConstantClass { /// /// Constant COMPLETED for CrawlerHistoryState /// public static readonly CrawlerHistoryState COMPLETED = new CrawlerHistoryState("COMPLETED"); /// /// Constant FAILED for CrawlerHistoryState /// public static readonly CrawlerHistoryState FAILED = new CrawlerHistoryState("FAILED"); /// /// Constant RUNNING for CrawlerHistoryState /// public static readonly CrawlerHistoryState RUNNING = new CrawlerHistoryState("RUNNING"); /// /// Constant STOPPED for CrawlerHistoryState /// public static readonly CrawlerHistoryState STOPPED = new CrawlerHistoryState("STOPPED"); /// /// 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 CrawlerHistoryState(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 CrawlerHistoryState 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 CrawlerHistoryState(string value) { return FindValue(value); } } /// /// Constants used for properties of type CrawlerLineageSettings. /// public class CrawlerLineageSettings : ConstantClass { /// /// Constant DISABLE for CrawlerLineageSettings /// public static readonly CrawlerLineageSettings DISABLE = new CrawlerLineageSettings("DISABLE"); /// /// Constant ENABLE for CrawlerLineageSettings /// public static readonly CrawlerLineageSettings ENABLE = new CrawlerLineageSettings("ENABLE"); /// /// 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 CrawlerLineageSettings(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 CrawlerLineageSettings 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 CrawlerLineageSettings(string value) { return FindValue(value); } } /// /// Constants used for properties of type CrawlerState. /// public class CrawlerState : ConstantClass { /// /// Constant READY for CrawlerState /// public static readonly CrawlerState READY = new CrawlerState("READY"); /// /// Constant RUNNING for CrawlerState /// public static readonly CrawlerState RUNNING = new CrawlerState("RUNNING"); /// /// Constant STOPPING for CrawlerState /// public static readonly CrawlerState STOPPING = new CrawlerState("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 CrawlerState(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 CrawlerState 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 CrawlerState(string value) { return FindValue(value); } } /// /// Constants used for properties of type CrawlState. /// public class CrawlState : ConstantClass { /// /// Constant CANCELLED for CrawlState /// public static readonly CrawlState CANCELLED = new CrawlState("CANCELLED"); /// /// Constant CANCELLING for CrawlState /// public static readonly CrawlState CANCELLING = new CrawlState("CANCELLING"); /// /// Constant ERROR for CrawlState /// public static readonly CrawlState ERROR = new CrawlState("ERROR"); /// /// Constant FAILED for CrawlState /// public static readonly CrawlState FAILED = new CrawlState("FAILED"); /// /// Constant RUNNING for CrawlState /// public static readonly CrawlState RUNNING = new CrawlState("RUNNING"); /// /// Constant SUCCEEDED for CrawlState /// public static readonly CrawlState SUCCEEDED = new CrawlState("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 CrawlState(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 CrawlState 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 CrawlState(string value) { return FindValue(value); } } /// /// Constants used for properties of type CsvHeaderOption. /// public class CsvHeaderOption : ConstantClass { /// /// Constant ABSENT for CsvHeaderOption /// public static readonly CsvHeaderOption ABSENT = new CsvHeaderOption("ABSENT"); /// /// Constant PRESENT for CsvHeaderOption /// public static readonly CsvHeaderOption PRESENT = new CsvHeaderOption("PRESENT"); /// /// Constant UNKNOWN for CsvHeaderOption /// public static readonly CsvHeaderOption UNKNOWN = new CsvHeaderOption("UNKNOWN"); /// /// 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 CsvHeaderOption(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 CsvHeaderOption 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 CsvHeaderOption(string value) { return FindValue(value); } } /// /// Constants used for properties of type DataFormat. /// public class DataFormat : ConstantClass { /// /// Constant AVRO for DataFormat /// public static readonly DataFormat AVRO = new DataFormat("AVRO"); /// /// Constant JSON for DataFormat /// public static readonly DataFormat JSON = new DataFormat("JSON"); /// /// Constant PROTOBUF for DataFormat /// public static readonly DataFormat PROTOBUF = new DataFormat("PROTOBUF"); /// /// 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 DataFormat(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 DataFormat 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 DataFormat(string value) { return FindValue(value); } } /// /// Constants used for properties of type DataQualityRuleResultStatus. /// public class DataQualityRuleResultStatus : ConstantClass { /// /// Constant ERROR for DataQualityRuleResultStatus /// public static readonly DataQualityRuleResultStatus ERROR = new DataQualityRuleResultStatus("ERROR"); /// /// Constant FAIL for DataQualityRuleResultStatus /// public static readonly DataQualityRuleResultStatus FAIL = new DataQualityRuleResultStatus("FAIL"); /// /// Constant PASS for DataQualityRuleResultStatus /// public static readonly DataQualityRuleResultStatus PASS = new DataQualityRuleResultStatus("PASS"); /// /// 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 DataQualityRuleResultStatus(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 DataQualityRuleResultStatus 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 DataQualityRuleResultStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type DeleteBehavior. /// public class DeleteBehavior : ConstantClass { /// /// Constant DELETE_FROM_DATABASE for DeleteBehavior /// public static readonly DeleteBehavior DELETE_FROM_DATABASE = new DeleteBehavior("DELETE_FROM_DATABASE"); /// /// Constant DEPRECATE_IN_DATABASE for DeleteBehavior /// public static readonly DeleteBehavior DEPRECATE_IN_DATABASE = new DeleteBehavior("DEPRECATE_IN_DATABASE"); /// /// Constant LOG for DeleteBehavior /// public static readonly DeleteBehavior LOG = new DeleteBehavior("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 DeleteBehavior(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 DeleteBehavior 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 DeleteBehavior(string value) { return FindValue(value); } } /// /// Constants used for properties of type DeltaTargetCompressionType. /// public class DeltaTargetCompressionType : ConstantClass { /// /// Constant Snappy for DeltaTargetCompressionType /// public static readonly DeltaTargetCompressionType Snappy = new DeltaTargetCompressionType("snappy"); /// /// Constant Uncompressed for DeltaTargetCompressionType /// public static readonly DeltaTargetCompressionType Uncompressed = new DeltaTargetCompressionType("uncompressed"); /// /// 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 DeltaTargetCompressionType(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 DeltaTargetCompressionType 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 DeltaTargetCompressionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type DQStopJobOnFailureTiming. /// public class DQStopJobOnFailureTiming : ConstantClass { /// /// Constant AfterDataLoad for DQStopJobOnFailureTiming /// public static readonly DQStopJobOnFailureTiming AfterDataLoad = new DQStopJobOnFailureTiming("AfterDataLoad"); /// /// Constant Immediate for DQStopJobOnFailureTiming /// public static readonly DQStopJobOnFailureTiming Immediate = new DQStopJobOnFailureTiming("Immediate"); /// /// 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 DQStopJobOnFailureTiming(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 DQStopJobOnFailureTiming 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 DQStopJobOnFailureTiming(string value) { return FindValue(value); } } /// /// Constants used for properties of type DQTransformOutput. /// public class DQTransformOutput : ConstantClass { /// /// Constant EvaluationResults for DQTransformOutput /// public static readonly DQTransformOutput EvaluationResults = new DQTransformOutput("EvaluationResults"); /// /// Constant PrimaryInput for DQTransformOutput /// public static readonly DQTransformOutput PrimaryInput = new DQTransformOutput("PrimaryInput"); /// /// 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 DQTransformOutput(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 DQTransformOutput 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 DQTransformOutput(string value) { return FindValue(value); } } /// /// Constants used for properties of type EnableHybridValues. /// public class EnableHybridValues : ConstantClass { /// /// Constant FALSE for EnableHybridValues /// public static readonly EnableHybridValues FALSE = new EnableHybridValues("FALSE"); /// /// Constant TRUE for EnableHybridValues /// public static readonly EnableHybridValues TRUE = new EnableHybridValues("TRUE"); /// /// 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 EnableHybridValues(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 EnableHybridValues 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 EnableHybridValues(string value) { return FindValue(value); } } /// /// Constants used for properties of type ExecutionClass. /// public class ExecutionClass : ConstantClass { /// /// Constant FLEX for ExecutionClass /// public static readonly ExecutionClass FLEX = new ExecutionClass("FLEX"); /// /// Constant STANDARD for ExecutionClass /// public static readonly ExecutionClass STANDARD = new ExecutionClass("STANDARD"); /// /// 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 ExecutionClass(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 ExecutionClass 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 ExecutionClass(string value) { return FindValue(value); } } /// /// Constants used for properties of type ExistCondition. /// public class ExistCondition : ConstantClass { /// /// Constant MUST_EXIST for ExistCondition /// public static readonly ExistCondition MUST_EXIST = new ExistCondition("MUST_EXIST"); /// /// Constant NONE for ExistCondition /// public static readonly ExistCondition NONE = new ExistCondition("NONE"); /// /// Constant NOT_EXIST for ExistCondition /// public static readonly ExistCondition NOT_EXIST = new ExistCondition("NOT_EXIST"); /// /// 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 ExistCondition(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 ExistCondition 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 ExistCondition(string value) { return FindValue(value); } } /// /// Constants used for properties of type FederationSourceErrorCode. /// public class FederationSourceErrorCode : ConstantClass { /// /// Constant InternalServiceException for FederationSourceErrorCode /// public static readonly FederationSourceErrorCode InternalServiceException = new FederationSourceErrorCode("InternalServiceException"); /// /// Constant InvalidResponseException for FederationSourceErrorCode /// public static readonly FederationSourceErrorCode InvalidResponseException = new FederationSourceErrorCode("InvalidResponseException"); /// /// Constant OperationNotSupportedException for FederationSourceErrorCode /// public static readonly FederationSourceErrorCode OperationNotSupportedException = new FederationSourceErrorCode("OperationNotSupportedException"); /// /// Constant OperationTimeoutException for FederationSourceErrorCode /// public static readonly FederationSourceErrorCode OperationTimeoutException = new FederationSourceErrorCode("OperationTimeoutException"); /// /// Constant ThrottlingException for FederationSourceErrorCode /// public static readonly FederationSourceErrorCode ThrottlingException = new FederationSourceErrorCode("ThrottlingException"); /// /// 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 FederationSourceErrorCode(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 FederationSourceErrorCode 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 FederationSourceErrorCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type FieldName. /// public class FieldName : ConstantClass { /// /// Constant CRAWL_ID for FieldName /// public static readonly FieldName CRAWL_ID = new FieldName("CRAWL_ID"); /// /// Constant DPU_HOUR for FieldName /// public static readonly FieldName DPU_HOUR = new FieldName("DPU_HOUR"); /// /// Constant END_TIME for FieldName /// public static readonly FieldName END_TIME = new FieldName("END_TIME"); /// /// Constant START_TIME for FieldName /// public static readonly FieldName START_TIME = new FieldName("START_TIME"); /// /// Constant STATE for FieldName /// public static readonly FieldName STATE = new FieldName("STATE"); /// /// 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 FieldName(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 FieldName 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 FieldName(string value) { return FindValue(value); } } /// /// Constants used for properties of type FilterLogicalOperator. /// public class FilterLogicalOperator : ConstantClass { /// /// Constant AND for FilterLogicalOperator /// public static readonly FilterLogicalOperator AND = new FilterLogicalOperator("AND"); /// /// Constant OR for FilterLogicalOperator /// public static readonly FilterLogicalOperator OR = new FilterLogicalOperator("OR"); /// /// 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 FilterLogicalOperator(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 FilterLogicalOperator 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 FilterLogicalOperator(string value) { return FindValue(value); } } /// /// Constants used for properties of type FilterOperation. /// public class FilterOperation : ConstantClass { /// /// Constant EQ for FilterOperation /// public static readonly FilterOperation EQ = new FilterOperation("EQ"); /// /// Constant GT for FilterOperation /// public static readonly FilterOperation GT = new FilterOperation("GT"); /// /// Constant GTE for FilterOperation /// public static readonly FilterOperation GTE = new FilterOperation("GTE"); /// /// Constant ISNULL for FilterOperation /// public static readonly FilterOperation ISNULL = new FilterOperation("ISNULL"); /// /// Constant LT for FilterOperation /// public static readonly FilterOperation LT = new FilterOperation("LT"); /// /// Constant LTE for FilterOperation /// public static readonly FilterOperation LTE = new FilterOperation("LTE"); /// /// Constant REGEX for FilterOperation /// public static readonly FilterOperation REGEX = new FilterOperation("REGEX"); /// /// 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 FilterOperation(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 FilterOperation 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 FilterOperation(string value) { return FindValue(value); } } /// /// Constants used for properties of type FilterOperator. /// public class FilterOperator : ConstantClass { /// /// Constant EQ for FilterOperator /// public static readonly FilterOperator EQ = new FilterOperator("EQ"); /// /// Constant GE for FilterOperator /// public static readonly FilterOperator GE = new FilterOperator("GE"); /// /// Constant GT for FilterOperator /// public static readonly FilterOperator GT = new FilterOperator("GT"); /// /// Constant LE for FilterOperator /// public static readonly FilterOperator LE = new FilterOperator("LE"); /// /// Constant LT for FilterOperator /// public static readonly FilterOperator LT = new FilterOperator("LT"); /// /// Constant NE for FilterOperator /// public static readonly FilterOperator NE = new FilterOperator("NE"); /// /// 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 FilterOperator(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 FilterOperator 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 FilterOperator(string value) { return FindValue(value); } } /// /// Constants used for properties of type FilterValueType. /// public class FilterValueType : ConstantClass { /// /// Constant COLUMNEXTRACTED for FilterValueType /// public static readonly FilterValueType COLUMNEXTRACTED = new FilterValueType("COLUMNEXTRACTED"); /// /// Constant CONSTANT for FilterValueType /// public static readonly FilterValueType CONSTANT = new FilterValueType("CONSTANT"); /// /// 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 FilterValueType(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 FilterValueType 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 FilterValueType(string value) { return FindValue(value); } } /// /// Constants used for properties of type GlueRecordType. /// public class GlueRecordType : ConstantClass { /// /// Constant BIGDECIMAL for GlueRecordType /// public static readonly GlueRecordType BIGDECIMAL = new GlueRecordType("BIGDECIMAL"); /// /// Constant BYTE for GlueRecordType /// public static readonly GlueRecordType BYTE = new GlueRecordType("BYTE"); /// /// Constant DATE for GlueRecordType /// public static readonly GlueRecordType DATE = new GlueRecordType("DATE"); /// /// Constant DOUBLE for GlueRecordType /// public static readonly GlueRecordType DOUBLE = new GlueRecordType("DOUBLE"); /// /// Constant FLOAT for GlueRecordType /// public static readonly GlueRecordType FLOAT = new GlueRecordType("FLOAT"); /// /// Constant INT for GlueRecordType /// public static readonly GlueRecordType INT = new GlueRecordType("INT"); /// /// Constant LONG for GlueRecordType /// public static readonly GlueRecordType LONG = new GlueRecordType("LONG"); /// /// Constant SHORT for GlueRecordType /// public static readonly GlueRecordType SHORT = new GlueRecordType("SHORT"); /// /// Constant STRING for GlueRecordType /// public static readonly GlueRecordType STRING = new GlueRecordType("STRING"); /// /// Constant TIMESTAMP for GlueRecordType /// public static readonly GlueRecordType TIMESTAMP = new GlueRecordType("TIMESTAMP"); /// /// 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 GlueRecordType(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 GlueRecordType 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 GlueRecordType(string value) { return FindValue(value); } } /// /// Constants used for properties of type HudiTargetCompressionType. /// public class HudiTargetCompressionType : ConstantClass { /// /// Constant Gzip for HudiTargetCompressionType /// public static readonly HudiTargetCompressionType Gzip = new HudiTargetCompressionType("gzip"); /// /// Constant Lzo for HudiTargetCompressionType /// public static readonly HudiTargetCompressionType Lzo = new HudiTargetCompressionType("lzo"); /// /// Constant Snappy for HudiTargetCompressionType /// public static readonly HudiTargetCompressionType Snappy = new HudiTargetCompressionType("snappy"); /// /// Constant Uncompressed for HudiTargetCompressionType /// public static readonly HudiTargetCompressionType Uncompressed = new HudiTargetCompressionType("uncompressed"); /// /// 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 HudiTargetCompressionType(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 HudiTargetCompressionType 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 HudiTargetCompressionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type JDBCConnectionType. /// public class JDBCConnectionType : ConstantClass { /// /// Constant Mysql for JDBCConnectionType /// public static readonly JDBCConnectionType Mysql = new JDBCConnectionType("mysql"); /// /// Constant Oracle for JDBCConnectionType /// public static readonly JDBCConnectionType Oracle = new JDBCConnectionType("oracle"); /// /// Constant Postgresql for JDBCConnectionType /// public static readonly JDBCConnectionType Postgresql = new JDBCConnectionType("postgresql"); /// /// Constant Redshift for JDBCConnectionType /// public static readonly JDBCConnectionType Redshift = new JDBCConnectionType("redshift"); /// /// Constant Sqlserver for JDBCConnectionType /// public static readonly JDBCConnectionType Sqlserver = new JDBCConnectionType("sqlserver"); /// /// 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 JDBCConnectionType(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 JDBCConnectionType 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 JDBCConnectionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type JDBCDataType. /// public class JDBCDataType : ConstantClass { /// /// Constant ARRAY for JDBCDataType /// public static readonly JDBCDataType ARRAY = new JDBCDataType("ARRAY"); /// /// Constant BIGINT for JDBCDataType /// public static readonly JDBCDataType BIGINT = new JDBCDataType("BIGINT"); /// /// Constant BINARY for JDBCDataType /// public static readonly JDBCDataType BINARY = new JDBCDataType("BINARY"); /// /// Constant BIT for JDBCDataType /// public static readonly JDBCDataType BIT = new JDBCDataType("BIT"); /// /// Constant BLOB for JDBCDataType /// public static readonly JDBCDataType BLOB = new JDBCDataType("BLOB"); /// /// Constant BOOLEAN for JDBCDataType /// public static readonly JDBCDataType BOOLEAN = new JDBCDataType("BOOLEAN"); /// /// Constant CHAR for JDBCDataType /// public static readonly JDBCDataType CHAR = new JDBCDataType("CHAR"); /// /// Constant CLOB for JDBCDataType /// public static readonly JDBCDataType CLOB = new JDBCDataType("CLOB"); /// /// Constant DATALINK for JDBCDataType /// public static readonly JDBCDataType DATALINK = new JDBCDataType("DATALINK"); /// /// Constant DATE for JDBCDataType /// public static readonly JDBCDataType DATE = new JDBCDataType("DATE"); /// /// Constant DECIMAL for JDBCDataType /// public static readonly JDBCDataType DECIMAL = new JDBCDataType("DECIMAL"); /// /// Constant DISTINCT for JDBCDataType /// public static readonly JDBCDataType DISTINCT = new JDBCDataType("DISTINCT"); /// /// Constant DOUBLE for JDBCDataType /// public static readonly JDBCDataType DOUBLE = new JDBCDataType("DOUBLE"); /// /// Constant FLOAT for JDBCDataType /// public static readonly JDBCDataType FLOAT = new JDBCDataType("FLOAT"); /// /// Constant INTEGER for JDBCDataType /// public static readonly JDBCDataType INTEGER = new JDBCDataType("INTEGER"); /// /// Constant JAVA_OBJECT for JDBCDataType /// public static readonly JDBCDataType JAVA_OBJECT = new JDBCDataType("JAVA_OBJECT"); /// /// Constant LONGNVARCHAR for JDBCDataType /// public static readonly JDBCDataType LONGNVARCHAR = new JDBCDataType("LONGNVARCHAR"); /// /// Constant LONGVARBINARY for JDBCDataType /// public static readonly JDBCDataType LONGVARBINARY = new JDBCDataType("LONGVARBINARY"); /// /// Constant LONGVARCHAR for JDBCDataType /// public static readonly JDBCDataType LONGVARCHAR = new JDBCDataType("LONGVARCHAR"); /// /// Constant NCHAR for JDBCDataType /// public static readonly JDBCDataType NCHAR = new JDBCDataType("NCHAR"); /// /// Constant NCLOB for JDBCDataType /// public static readonly JDBCDataType NCLOB = new JDBCDataType("NCLOB"); /// /// Constant NULL for JDBCDataType /// public static readonly JDBCDataType NULL = new JDBCDataType("NULL"); /// /// Constant NUMERIC for JDBCDataType /// public static readonly JDBCDataType NUMERIC = new JDBCDataType("NUMERIC"); /// /// Constant NVARCHAR for JDBCDataType /// public static readonly JDBCDataType NVARCHAR = new JDBCDataType("NVARCHAR"); /// /// Constant OTHER for JDBCDataType /// public static readonly JDBCDataType OTHER = new JDBCDataType("OTHER"); /// /// Constant REAL for JDBCDataType /// public static readonly JDBCDataType REAL = new JDBCDataType("REAL"); /// /// Constant REF for JDBCDataType /// public static readonly JDBCDataType REF = new JDBCDataType("REF"); /// /// Constant REF_CURSOR for JDBCDataType /// public static readonly JDBCDataType REF_CURSOR = new JDBCDataType("REF_CURSOR"); /// /// Constant ROWID for JDBCDataType /// public static readonly JDBCDataType ROWID = new JDBCDataType("ROWID"); /// /// Constant SMALLINT for JDBCDataType /// public static readonly JDBCDataType SMALLINT = new JDBCDataType("SMALLINT"); /// /// Constant SQLXML for JDBCDataType /// public static readonly JDBCDataType SQLXML = new JDBCDataType("SQLXML"); /// /// Constant STRUCT for JDBCDataType /// public static readonly JDBCDataType STRUCT = new JDBCDataType("STRUCT"); /// /// Constant TIME for JDBCDataType /// public static readonly JDBCDataType TIME = new JDBCDataType("TIME"); /// /// Constant TIME_WITH_TIMEZONE for JDBCDataType /// public static readonly JDBCDataType TIME_WITH_TIMEZONE = new JDBCDataType("TIME_WITH_TIMEZONE"); /// /// Constant TIMESTAMP for JDBCDataType /// public static readonly JDBCDataType TIMESTAMP = new JDBCDataType("TIMESTAMP"); /// /// Constant TIMESTAMP_WITH_TIMEZONE for JDBCDataType /// public static readonly JDBCDataType TIMESTAMP_WITH_TIMEZONE = new JDBCDataType("TIMESTAMP_WITH_TIMEZONE"); /// /// Constant TINYINT for JDBCDataType /// public static readonly JDBCDataType TINYINT = new JDBCDataType("TINYINT"); /// /// Constant VARBINARY for JDBCDataType /// public static readonly JDBCDataType VARBINARY = new JDBCDataType("VARBINARY"); /// /// Constant VARCHAR for JDBCDataType /// public static readonly JDBCDataType VARCHAR = new JDBCDataType("VARCHAR"); /// /// 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 JDBCDataType(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 JDBCDataType 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 JDBCDataType(string value) { return FindValue(value); } } /// /// Constants used for properties of type JdbcMetadataEntry. /// public class JdbcMetadataEntry : ConstantClass { /// /// Constant COMMENTS for JdbcMetadataEntry /// public static readonly JdbcMetadataEntry COMMENTS = new JdbcMetadataEntry("COMMENTS"); /// /// Constant RAWTYPES for JdbcMetadataEntry /// public static readonly JdbcMetadataEntry RAWTYPES = new JdbcMetadataEntry("RAWTYPES"); /// /// 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 JdbcMetadataEntry(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 JdbcMetadataEntry 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 JdbcMetadataEntry(string value) { return FindValue(value); } } /// /// Constants used for properties of type JobBookmarksEncryptionMode. /// public class JobBookmarksEncryptionMode : ConstantClass { /// /// Constant CSEKMS for JobBookmarksEncryptionMode /// public static readonly JobBookmarksEncryptionMode CSEKMS = new JobBookmarksEncryptionMode("CSE-KMS"); /// /// Constant DISABLED for JobBookmarksEncryptionMode /// public static readonly JobBookmarksEncryptionMode DISABLED = new JobBookmarksEncryptionMode("DISABLED"); /// /// 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 JobBookmarksEncryptionMode(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 JobBookmarksEncryptionMode 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 JobBookmarksEncryptionMode(string value) { return FindValue(value); } } /// /// Constants used for properties of type JobRunState. /// public class JobRunState : ConstantClass { /// /// Constant ERROR for JobRunState /// public static readonly JobRunState ERROR = new JobRunState("ERROR"); /// /// Constant FAILED for JobRunState /// public static readonly JobRunState FAILED = new JobRunState("FAILED"); /// /// Constant RUNNING for JobRunState /// public static readonly JobRunState RUNNING = new JobRunState("RUNNING"); /// /// Constant STARTING for JobRunState /// public static readonly JobRunState STARTING = new JobRunState("STARTING"); /// /// Constant STOPPED for JobRunState /// public static readonly JobRunState STOPPED = new JobRunState("STOPPED"); /// /// Constant STOPPING for JobRunState /// public static readonly JobRunState STOPPING = new JobRunState("STOPPING"); /// /// Constant SUCCEEDED for JobRunState /// public static readonly JobRunState SUCCEEDED = new JobRunState("SUCCEEDED"); /// /// Constant TIMEOUT for JobRunState /// public static readonly JobRunState TIMEOUT = new JobRunState("TIMEOUT"); /// /// Constant WAITING for JobRunState /// public static readonly JobRunState WAITING = new JobRunState("WAITING"); /// /// 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 JobRunState(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 JobRunState 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 JobRunState(string value) { return FindValue(value); } } /// /// Constants used for properties of type JoinType. /// public class JoinType : ConstantClass { /// /// Constant Equijoin for JoinType /// public static readonly JoinType Equijoin = new JoinType("equijoin"); /// /// Constant Left for JoinType /// public static readonly JoinType Left = new JoinType("left"); /// /// Constant Leftanti for JoinType /// public static readonly JoinType Leftanti = new JoinType("leftanti"); /// /// Constant Leftsemi for JoinType /// public static readonly JoinType Leftsemi = new JoinType("leftsemi"); /// /// Constant Outer for JoinType /// public static readonly JoinType Outer = new JoinType("outer"); /// /// Constant Right for JoinType /// public static readonly JoinType Right = new JoinType("right"); /// /// 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 JoinType(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 JoinType 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 JoinType(string value) { return FindValue(value); } } /// /// Constants used for properties of type Language. /// public class Language : ConstantClass { /// /// Constant PYTHON for Language /// public static readonly Language PYTHON = new Language("PYTHON"); /// /// Constant SCALA for Language /// public static readonly Language SCALA = new Language("SCALA"); /// /// 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 Language(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 Language 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 Language(string value) { return FindValue(value); } } /// /// Constants used for properties of type LastCrawlStatus. /// public class LastCrawlStatus : ConstantClass { /// /// Constant CANCELLED for LastCrawlStatus /// public static readonly LastCrawlStatus CANCELLED = new LastCrawlStatus("CANCELLED"); /// /// Constant FAILED for LastCrawlStatus /// public static readonly LastCrawlStatus FAILED = new LastCrawlStatus("FAILED"); /// /// Constant SUCCEEDED for LastCrawlStatus /// public static readonly LastCrawlStatus SUCCEEDED = new LastCrawlStatus("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 LastCrawlStatus(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 LastCrawlStatus 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 LastCrawlStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type Logical. /// public class Logical : ConstantClass { /// /// Constant AND for Logical /// public static readonly Logical AND = new Logical("AND"); /// /// Constant ANY for Logical /// public static readonly Logical ANY = new Logical("ANY"); /// /// 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 Logical(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 Logical 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 Logical(string value) { return FindValue(value); } } /// /// Constants used for properties of type LogicalOperator. /// public class LogicalOperator : ConstantClass { /// /// Constant EQUALS for LogicalOperator /// public static readonly LogicalOperator EQUALS = new LogicalOperator("EQUALS"); /// /// 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 LogicalOperator(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 LogicalOperator 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 LogicalOperator(string value) { return FindValue(value); } } /// /// Constants used for properties of type MetadataOperation. /// public class MetadataOperation : ConstantClass { /// /// Constant CREATE for MetadataOperation /// public static readonly MetadataOperation CREATE = new MetadataOperation("CREATE"); /// /// 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 MetadataOperation(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 MetadataOperation 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 MetadataOperation(string value) { return FindValue(value); } } /// /// Constants used for properties of type MLUserDataEncryptionModeString. /// public class MLUserDataEncryptionModeString : ConstantClass { /// /// Constant DISABLED for MLUserDataEncryptionModeString /// public static readonly MLUserDataEncryptionModeString DISABLED = new MLUserDataEncryptionModeString("DISABLED"); /// /// Constant SSEKMS for MLUserDataEncryptionModeString /// public static readonly MLUserDataEncryptionModeString SSEKMS = new MLUserDataEncryptionModeString("SSE-KMS"); /// /// 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 MLUserDataEncryptionModeString(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 MLUserDataEncryptionModeString 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 MLUserDataEncryptionModeString(string value) { return FindValue(value); } } /// /// Constants used for properties of type NodeType. /// public class NodeType : ConstantClass { /// /// Constant CRAWLER for NodeType /// public static readonly NodeType CRAWLER = new NodeType("CRAWLER"); /// /// Constant JOB for NodeType /// public static readonly NodeType JOB = new NodeType("JOB"); /// /// Constant TRIGGER for NodeType /// public static readonly NodeType TRIGGER = new NodeType("TRIGGER"); /// /// 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 NodeType(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 NodeType 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 NodeType(string value) { return FindValue(value); } } /// /// Constants used for properties of type ParamType. /// public class ParamType : ConstantClass { /// /// Constant Bool for ParamType /// public static readonly ParamType Bool = new ParamType("bool"); /// /// Constant Complex for ParamType /// public static readonly ParamType Complex = new ParamType("complex"); /// /// Constant Float for ParamType /// public static readonly ParamType Float = new ParamType("float"); /// /// Constant Int for ParamType /// public static readonly ParamType Int = new ParamType("int"); /// /// Constant List for ParamType /// public static readonly ParamType List = new ParamType("list"); /// /// Constant Null for ParamType /// public static readonly ParamType Null = new ParamType("null"); /// /// Constant Str for ParamType /// public static readonly ParamType Str = new ParamType("str"); /// /// 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 ParamType(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 ParamType 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 ParamType(string value) { return FindValue(value); } } /// /// Constants used for properties of type ParquetCompressionType. /// public class ParquetCompressionType : ConstantClass { /// /// Constant Gzip for ParquetCompressionType /// public static readonly ParquetCompressionType Gzip = new ParquetCompressionType("gzip"); /// /// Constant Lzo for ParquetCompressionType /// public static readonly ParquetCompressionType Lzo = new ParquetCompressionType("lzo"); /// /// Constant None for ParquetCompressionType /// public static readonly ParquetCompressionType None = new ParquetCompressionType("none"); /// /// Constant Snappy for ParquetCompressionType /// public static readonly ParquetCompressionType Snappy = new ParquetCompressionType("snappy"); /// /// Constant Uncompressed for ParquetCompressionType /// public static readonly ParquetCompressionType Uncompressed = new ParquetCompressionType("uncompressed"); /// /// 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 ParquetCompressionType(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 ParquetCompressionType 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 ParquetCompressionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type PartitionIndexStatus. /// public class PartitionIndexStatus : ConstantClass { /// /// Constant ACTIVE for PartitionIndexStatus /// public static readonly PartitionIndexStatus ACTIVE = new PartitionIndexStatus("ACTIVE"); /// /// Constant CREATING for PartitionIndexStatus /// public static readonly PartitionIndexStatus CREATING = new PartitionIndexStatus("CREATING"); /// /// Constant DELETING for PartitionIndexStatus /// public static readonly PartitionIndexStatus DELETING = new PartitionIndexStatus("DELETING"); /// /// Constant FAILED for PartitionIndexStatus /// public static readonly PartitionIndexStatus FAILED = new PartitionIndexStatus("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 PartitionIndexStatus(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 PartitionIndexStatus 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 PartitionIndexStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type Permission. /// public class Permission : ConstantClass { /// /// Constant ALL for Permission /// public static readonly Permission ALL = new Permission("ALL"); /// /// Constant ALTER for Permission /// public static readonly Permission ALTER = new Permission("ALTER"); /// /// Constant CREATE_DATABASE for Permission /// public static readonly Permission CREATE_DATABASE = new Permission("CREATE_DATABASE"); /// /// Constant CREATE_TABLE for Permission /// public static readonly Permission CREATE_TABLE = new Permission("CREATE_TABLE"); /// /// Constant DATA_LOCATION_ACCESS for Permission /// public static readonly Permission DATA_LOCATION_ACCESS = new Permission("DATA_LOCATION_ACCESS"); /// /// Constant DELETE for Permission /// public static readonly Permission DELETE = new Permission("DELETE"); /// /// Constant DROP for Permission /// public static readonly Permission DROP = new Permission("DROP"); /// /// Constant INSERT for Permission /// public static readonly Permission INSERT = new Permission("INSERT"); /// /// Constant SELECT for Permission /// public static readonly Permission SELECT = new Permission("SELECT"); /// /// 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 PermissionType. /// public class PermissionType : ConstantClass { /// /// Constant CELL_FILTER_PERMISSION for PermissionType /// public static readonly PermissionType CELL_FILTER_PERMISSION = new PermissionType("CELL_FILTER_PERMISSION"); /// /// Constant COLUMN_PERMISSION for PermissionType /// public static readonly PermissionType COLUMN_PERMISSION = new PermissionType("COLUMN_PERMISSION"); /// /// Constant NESTED_CELL_PERMISSION for PermissionType /// public static readonly PermissionType NESTED_CELL_PERMISSION = new PermissionType("NESTED_CELL_PERMISSION"); /// /// Constant NESTED_PERMISSION for PermissionType /// public static readonly PermissionType NESTED_PERMISSION = new PermissionType("NESTED_PERMISSION"); /// /// 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 PermissionType(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 PermissionType 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 PermissionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type PiiType. /// public class PiiType : ConstantClass { /// /// Constant ColumnAudit for PiiType /// public static readonly PiiType ColumnAudit = new PiiType("ColumnAudit"); /// /// Constant ColumnMasking for PiiType /// public static readonly PiiType ColumnMasking = new PiiType("ColumnMasking"); /// /// Constant RowAudit for PiiType /// public static readonly PiiType RowAudit = new PiiType("RowAudit"); /// /// Constant RowMasking for PiiType /// public static readonly PiiType RowMasking = new PiiType("RowMasking"); /// /// 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 PiiType(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 PiiType 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 PiiType(string value) { return FindValue(value); } } /// /// Constants used for properties of type PrincipalType. /// public class PrincipalType : ConstantClass { /// /// Constant GROUP for PrincipalType /// public static readonly PrincipalType GROUP = new PrincipalType("GROUP"); /// /// Constant ROLE for PrincipalType /// public static readonly PrincipalType ROLE = new PrincipalType("ROLE"); /// /// Constant USER for PrincipalType /// public static readonly PrincipalType USER = new PrincipalType("USER"); /// /// 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 PrincipalType(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 PrincipalType 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 PrincipalType(string value) { return FindValue(value); } } /// /// Constants used for properties of type QuoteChar. /// public class QuoteChar : ConstantClass { /// /// Constant Disabled for QuoteChar /// public static readonly QuoteChar Disabled = new QuoteChar("disabled"); /// /// Constant Quillemet for QuoteChar /// public static readonly QuoteChar Quillemet = new QuoteChar("quillemet"); /// /// Constant Quote for QuoteChar /// public static readonly QuoteChar Quote = new QuoteChar("quote"); /// /// Constant Single_quote for QuoteChar /// public static readonly QuoteChar Single_quote = new QuoteChar("single_quote"); /// /// 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 QuoteChar(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 QuoteChar 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 QuoteChar(string value) { return FindValue(value); } } /// /// Constants used for properties of type RecrawlBehavior. /// public class RecrawlBehavior : ConstantClass { /// /// Constant CRAWL_EVENT_MODE for RecrawlBehavior /// public static readonly RecrawlBehavior CRAWL_EVENT_MODE = new RecrawlBehavior("CRAWL_EVENT_MODE"); /// /// Constant CRAWL_EVERYTHING for RecrawlBehavior /// public static readonly RecrawlBehavior CRAWL_EVERYTHING = new RecrawlBehavior("CRAWL_EVERYTHING"); /// /// Constant CRAWL_NEW_FOLDERS_ONLY for RecrawlBehavior /// public static readonly RecrawlBehavior CRAWL_NEW_FOLDERS_ONLY = new RecrawlBehavior("CRAWL_NEW_FOLDERS_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 RecrawlBehavior(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 RecrawlBehavior 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 RecrawlBehavior(string value) { return FindValue(value); } } /// /// Constants used for properties of type RegistryStatus. /// public class RegistryStatus : ConstantClass { /// /// Constant AVAILABLE for RegistryStatus /// public static readonly RegistryStatus AVAILABLE = new RegistryStatus("AVAILABLE"); /// /// Constant DELETING for RegistryStatus /// public static readonly RegistryStatus DELETING = new RegistryStatus("DELETING"); /// /// 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 RegistryStatus(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 RegistryStatus 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 RegistryStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type ResourceShareType. /// public class ResourceShareType : ConstantClass { /// /// Constant ALL for ResourceShareType /// public static readonly ResourceShareType ALL = new ResourceShareType("ALL"); /// /// Constant FEDERATED for ResourceShareType /// public static readonly ResourceShareType FEDERATED = new ResourceShareType("FEDERATED"); /// /// Constant FOREIGN for ResourceShareType /// public static readonly ResourceShareType FOREIGN = new ResourceShareType("FOREIGN"); /// /// 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 ResourceShareType(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 ResourceShareType 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 ResourceShareType(string value) { return FindValue(value); } } /// /// Constants used for properties of type ResourceType. /// public class ResourceType : ConstantClass { /// /// Constant ARCHIVE for ResourceType /// public static readonly ResourceType ARCHIVE = new ResourceType("ARCHIVE"); /// /// Constant FILE for ResourceType /// public static readonly ResourceType FILE = new ResourceType("FILE"); /// /// Constant JAR for ResourceType /// public static readonly ResourceType JAR = new ResourceType("JAR"); /// /// 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 ResourceType(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 ResourceType 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 ResourceType(string value) { return FindValue(value); } } /// /// Constants used for properties of type S3EncryptionMode. /// public class S3EncryptionMode : ConstantClass { /// /// Constant DISABLED for S3EncryptionMode /// public static readonly S3EncryptionMode DISABLED = new S3EncryptionMode("DISABLED"); /// /// Constant SSEKMS for S3EncryptionMode /// public static readonly S3EncryptionMode SSEKMS = new S3EncryptionMode("SSE-KMS"); /// /// Constant SSES3 for S3EncryptionMode /// public static readonly S3EncryptionMode SSES3 = new S3EncryptionMode("SSE-S3"); /// /// 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 S3EncryptionMode(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 S3EncryptionMode 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 S3EncryptionMode(string value) { return FindValue(value); } } /// /// Constants used for properties of type ScheduleState. /// public class ScheduleState : ConstantClass { /// /// Constant NOT_SCHEDULED for ScheduleState /// public static readonly ScheduleState NOT_SCHEDULED = new ScheduleState("NOT_SCHEDULED"); /// /// Constant SCHEDULED for ScheduleState /// public static readonly ScheduleState SCHEDULED = new ScheduleState("SCHEDULED"); /// /// Constant TRANSITIONING for ScheduleState /// public static readonly ScheduleState TRANSITIONING = new ScheduleState("TRANSITIONING"); /// /// 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 ScheduleState(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 ScheduleState 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 ScheduleState(string value) { return FindValue(value); } } /// /// Constants used for properties of type SchemaDiffType. /// public class SchemaDiffType : ConstantClass { /// /// Constant SYNTAX_DIFF for SchemaDiffType /// public static readonly SchemaDiffType SYNTAX_DIFF = new SchemaDiffType("SYNTAX_DIFF"); /// /// 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 SchemaDiffType(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 SchemaDiffType 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 SchemaDiffType(string value) { return FindValue(value); } } /// /// Constants used for properties of type SchemaStatus. /// public class SchemaStatus : ConstantClass { /// /// Constant AVAILABLE for SchemaStatus /// public static readonly SchemaStatus AVAILABLE = new SchemaStatus("AVAILABLE"); /// /// Constant DELETING for SchemaStatus /// public static readonly SchemaStatus DELETING = new SchemaStatus("DELETING"); /// /// Constant PENDING for SchemaStatus /// public static readonly SchemaStatus PENDING = new SchemaStatus("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 SchemaStatus(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 SchemaStatus 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 SchemaStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type SchemaVersionStatus. /// public class SchemaVersionStatus : ConstantClass { /// /// Constant AVAILABLE for SchemaVersionStatus /// public static readonly SchemaVersionStatus AVAILABLE = new SchemaVersionStatus("AVAILABLE"); /// /// Constant DELETING for SchemaVersionStatus /// public static readonly SchemaVersionStatus DELETING = new SchemaVersionStatus("DELETING"); /// /// Constant FAILURE for SchemaVersionStatus /// public static readonly SchemaVersionStatus FAILURE = new SchemaVersionStatus("FAILURE"); /// /// Constant PENDING for SchemaVersionStatus /// public static readonly SchemaVersionStatus PENDING = new SchemaVersionStatus("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 SchemaVersionStatus(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 SchemaVersionStatus 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 SchemaVersionStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type Separator. /// public class Separator : ConstantClass { /// /// Constant Comma for Separator /// public static readonly Separator Comma = new Separator("comma"); /// /// Constant Ctrla for Separator /// public static readonly Separator Ctrla = new Separator("ctrla"); /// /// Constant Pipe for Separator /// public static readonly Separator Pipe = new Separator("pipe"); /// /// Constant Semicolon for Separator /// public static readonly Separator Semicolon = new Separator("semicolon"); /// /// Constant Tab for Separator /// public static readonly Separator Tab = new Separator("tab"); /// /// 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 Separator(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 Separator 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 Separator(string value) { return FindValue(value); } } /// /// Constants used for properties of type SessionStatus. /// public class SessionStatus : ConstantClass { /// /// Constant FAILED for SessionStatus /// public static readonly SessionStatus FAILED = new SessionStatus("FAILED"); /// /// Constant PROVISIONING for SessionStatus /// public static readonly SessionStatus PROVISIONING = new SessionStatus("PROVISIONING"); /// /// Constant READY for SessionStatus /// public static readonly SessionStatus READY = new SessionStatus("READY"); /// /// Constant STOPPED for SessionStatus /// public static readonly SessionStatus STOPPED = new SessionStatus("STOPPED"); /// /// Constant STOPPING for SessionStatus /// public static readonly SessionStatus STOPPING = new SessionStatus("STOPPING"); /// /// Constant TIMEOUT for SessionStatus /// public static readonly SessionStatus TIMEOUT = new SessionStatus("TIMEOUT"); /// /// 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 SessionStatus(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 SessionStatus 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 SessionStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type Sort. /// public class Sort : ConstantClass { /// /// Constant ASC for Sort /// public static readonly Sort ASC = new Sort("ASC"); /// /// Constant DESC for Sort /// public static readonly Sort DESC = new Sort("DESC"); /// /// 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 Sort(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 Sort 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 Sort(string value) { return FindValue(value); } } /// /// Constants used for properties of type SortDirectionType. /// public class SortDirectionType : ConstantClass { /// /// Constant ASCENDING for SortDirectionType /// public static readonly SortDirectionType ASCENDING = new SortDirectionType("ASCENDING"); /// /// Constant DESCENDING for SortDirectionType /// public static readonly SortDirectionType DESCENDING = new SortDirectionType("DESCENDING"); /// /// 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 SortDirectionType(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 SortDirectionType 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 SortDirectionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type SourceControlAuthStrategy. /// public class SourceControlAuthStrategy : ConstantClass { /// /// Constant AWS_SECRETS_MANAGER for SourceControlAuthStrategy /// public static readonly SourceControlAuthStrategy AWS_SECRETS_MANAGER = new SourceControlAuthStrategy("AWS_SECRETS_MANAGER"); /// /// Constant PERSONAL_ACCESS_TOKEN for SourceControlAuthStrategy /// public static readonly SourceControlAuthStrategy PERSONAL_ACCESS_TOKEN = new SourceControlAuthStrategy("PERSONAL_ACCESS_TOKEN"); /// /// 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 SourceControlAuthStrategy(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 SourceControlAuthStrategy 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 SourceControlAuthStrategy(string value) { return FindValue(value); } } /// /// Constants used for properties of type SourceControlProvider. /// public class SourceControlProvider : ConstantClass { /// /// Constant AWS_CODE_COMMIT for SourceControlProvider /// public static readonly SourceControlProvider AWS_CODE_COMMIT = new SourceControlProvider("AWS_CODE_COMMIT"); /// /// Constant GITHUB for SourceControlProvider /// public static readonly SourceControlProvider GITHUB = new SourceControlProvider("GITHUB"); /// /// 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 SourceControlProvider(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 SourceControlProvider 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 SourceControlProvider(string value) { return FindValue(value); } } /// /// Constants used for properties of type StartingPosition. /// public class StartingPosition : ConstantClass { /// /// Constant Earliest for StartingPosition /// public static readonly StartingPosition Earliest = new StartingPosition("earliest"); /// /// Constant Latest for StartingPosition /// public static readonly StartingPosition Latest = new StartingPosition("latest"); /// /// Constant Timestamp for StartingPosition /// public static readonly StartingPosition Timestamp = new StartingPosition("timestamp"); /// /// Constant Trim_horizon for StartingPosition /// public static readonly StartingPosition Trim_horizon = new StartingPosition("trim_horizon"); /// /// 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 StartingPosition(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 StartingPosition 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 StartingPosition(string value) { return FindValue(value); } } /// /// Constants used for properties of type StatementState. /// public class StatementState : ConstantClass { /// /// Constant AVAILABLE for StatementState /// public static readonly StatementState AVAILABLE = new StatementState("AVAILABLE"); /// /// Constant CANCELLED for StatementState /// public static readonly StatementState CANCELLED = new StatementState("CANCELLED"); /// /// Constant CANCELLING for StatementState /// public static readonly StatementState CANCELLING = new StatementState("CANCELLING"); /// /// Constant ERROR for StatementState /// public static readonly StatementState ERROR = new StatementState("ERROR"); /// /// Constant RUNNING for StatementState /// public static readonly StatementState RUNNING = new StatementState("RUNNING"); /// /// Constant WAITING for StatementState /// public static readonly StatementState WAITING = new StatementState("WAITING"); /// /// 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 StatementState(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 StatementState 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 StatementState(string value) { return FindValue(value); } } /// /// Constants used for properties of type TargetFormat. /// public class TargetFormat : ConstantClass { /// /// Constant Avro for TargetFormat /// public static readonly TargetFormat Avro = new TargetFormat("avro"); /// /// Constant Csv for TargetFormat /// public static readonly TargetFormat Csv = new TargetFormat("csv"); /// /// Constant Delta for TargetFormat /// public static readonly TargetFormat Delta = new TargetFormat("delta"); /// /// Constant Hudi for TargetFormat /// public static readonly TargetFormat Hudi = new TargetFormat("hudi"); /// /// Constant Json for TargetFormat /// public static readonly TargetFormat Json = new TargetFormat("json"); /// /// Constant Orc for TargetFormat /// public static readonly TargetFormat Orc = new TargetFormat("orc"); /// /// Constant Parquet for TargetFormat /// public static readonly TargetFormat Parquet = new TargetFormat("parquet"); /// /// 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 TargetFormat(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 TargetFormat 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 TargetFormat(string value) { return FindValue(value); } } /// /// Constants used for properties of type TaskRunSortColumnType. /// public class TaskRunSortColumnType : ConstantClass { /// /// Constant STARTED for TaskRunSortColumnType /// public static readonly TaskRunSortColumnType STARTED = new TaskRunSortColumnType("STARTED"); /// /// Constant STATUS for TaskRunSortColumnType /// public static readonly TaskRunSortColumnType STATUS = new TaskRunSortColumnType("STATUS"); /// /// Constant TASK_RUN_TYPE for TaskRunSortColumnType /// public static readonly TaskRunSortColumnType TASK_RUN_TYPE = new TaskRunSortColumnType("TASK_RUN_TYPE"); /// /// 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 TaskRunSortColumnType(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 TaskRunSortColumnType 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 TaskRunSortColumnType(string value) { return FindValue(value); } } /// /// Constants used for properties of type TaskStatusType. /// public class TaskStatusType : ConstantClass { /// /// Constant FAILED for TaskStatusType /// public static readonly TaskStatusType FAILED = new TaskStatusType("FAILED"); /// /// Constant RUNNING for TaskStatusType /// public static readonly TaskStatusType RUNNING = new TaskStatusType("RUNNING"); /// /// Constant STARTING for TaskStatusType /// public static readonly TaskStatusType STARTING = new TaskStatusType("STARTING"); /// /// Constant STOPPED for TaskStatusType /// public static readonly TaskStatusType STOPPED = new TaskStatusType("STOPPED"); /// /// Constant STOPPING for TaskStatusType /// public static readonly TaskStatusType STOPPING = new TaskStatusType("STOPPING"); /// /// Constant SUCCEEDED for TaskStatusType /// public static readonly TaskStatusType SUCCEEDED = new TaskStatusType("SUCCEEDED"); /// /// Constant TIMEOUT for TaskStatusType /// public static readonly TaskStatusType TIMEOUT = new TaskStatusType("TIMEOUT"); /// /// 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 TaskStatusType(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 TaskStatusType 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 TaskStatusType(string value) { return FindValue(value); } } /// /// Constants used for properties of type TaskType. /// public class TaskType : ConstantClass { /// /// Constant EVALUATION for TaskType /// public static readonly TaskType EVALUATION = new TaskType("EVALUATION"); /// /// Constant EXPORT_LABELS for TaskType /// public static readonly TaskType EXPORT_LABELS = new TaskType("EXPORT_LABELS"); /// /// Constant FIND_MATCHES for TaskType /// public static readonly TaskType FIND_MATCHES = new TaskType("FIND_MATCHES"); /// /// Constant IMPORT_LABELS for TaskType /// public static readonly TaskType IMPORT_LABELS = new TaskType("IMPORT_LABELS"); /// /// Constant LABELING_SET_GENERATION for TaskType /// public static readonly TaskType LABELING_SET_GENERATION = new TaskType("LABELING_SET_GENERATION"); /// /// 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 TaskType(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 TaskType 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 TaskType(string value) { return FindValue(value); } } /// /// Constants used for properties of type TransformSortColumnType. /// public class TransformSortColumnType : ConstantClass { /// /// Constant CREATED for TransformSortColumnType /// public static readonly TransformSortColumnType CREATED = new TransformSortColumnType("CREATED"); /// /// Constant LAST_MODIFIED for TransformSortColumnType /// public static readonly TransformSortColumnType LAST_MODIFIED = new TransformSortColumnType("LAST_MODIFIED"); /// /// Constant NAME for TransformSortColumnType /// public static readonly TransformSortColumnType NAME = new TransformSortColumnType("NAME"); /// /// Constant STATUS for TransformSortColumnType /// public static readonly TransformSortColumnType STATUS = new TransformSortColumnType("STATUS"); /// /// Constant TRANSFORM_TYPE for TransformSortColumnType /// public static readonly TransformSortColumnType TRANSFORM_TYPE = new TransformSortColumnType("TRANSFORM_TYPE"); /// /// 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 TransformSortColumnType(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 TransformSortColumnType 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 TransformSortColumnType(string value) { return FindValue(value); } } /// /// Constants used for properties of type TransformStatusType. /// public class TransformStatusType : ConstantClass { /// /// Constant DELETING for TransformStatusType /// public static readonly TransformStatusType DELETING = new TransformStatusType("DELETING"); /// /// Constant NOT_READY for TransformStatusType /// public static readonly TransformStatusType NOT_READY = new TransformStatusType("NOT_READY"); /// /// Constant READY for TransformStatusType /// public static readonly TransformStatusType READY = new TransformStatusType("READY"); /// /// 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 TransformStatusType(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 TransformStatusType 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 TransformStatusType(string value) { return FindValue(value); } } /// /// Constants used for properties of type TransformType. /// public class TransformType : ConstantClass { /// /// Constant FIND_MATCHES for TransformType /// public static readonly TransformType FIND_MATCHES = new TransformType("FIND_MATCHES"); /// /// 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 TransformType(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 TransformType 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 TransformType(string value) { return FindValue(value); } } /// /// Constants used for properties of type TriggerState. /// public class TriggerState : ConstantClass { /// /// Constant ACTIVATED for TriggerState /// public static readonly TriggerState ACTIVATED = new TriggerState("ACTIVATED"); /// /// Constant ACTIVATING for TriggerState /// public static readonly TriggerState ACTIVATING = new TriggerState("ACTIVATING"); /// /// Constant CREATED for TriggerState /// public static readonly TriggerState CREATED = new TriggerState("CREATED"); /// /// Constant CREATING for TriggerState /// public static readonly TriggerState CREATING = new TriggerState("CREATING"); /// /// Constant DEACTIVATED for TriggerState /// public static readonly TriggerState DEACTIVATED = new TriggerState("DEACTIVATED"); /// /// Constant DEACTIVATING for TriggerState /// public static readonly TriggerState DEACTIVATING = new TriggerState("DEACTIVATING"); /// /// Constant DELETING for TriggerState /// public static readonly TriggerState DELETING = new TriggerState("DELETING"); /// /// Constant UPDATING for TriggerState /// public static readonly TriggerState UPDATING = new TriggerState("UPDATING"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public TriggerState(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 TriggerState 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 TriggerState(string value) { return FindValue(value); } } /// /// Constants used for properties of type TriggerType. /// public class TriggerType : ConstantClass { /// /// Constant CONDITIONAL for TriggerType /// public static readonly TriggerType CONDITIONAL = new TriggerType("CONDITIONAL"); /// /// Constant EVENT for TriggerType /// public static readonly TriggerType EVENT = new TriggerType("EVENT"); /// /// Constant ON_DEMAND for TriggerType /// public static readonly TriggerType ON_DEMAND = new TriggerType("ON_DEMAND"); /// /// Constant SCHEDULED for TriggerType /// public static readonly TriggerType SCHEDULED = new TriggerType("SCHEDULED"); /// /// 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 TriggerType(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 TriggerType 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 TriggerType(string value) { return FindValue(value); } } /// /// Constants used for properties of type UnionType. /// public class UnionType : ConstantClass { /// /// Constant ALL for UnionType /// public static readonly UnionType ALL = new UnionType("ALL"); /// /// Constant DISTINCT for UnionType /// public static readonly UnionType DISTINCT = new UnionType("DISTINCT"); /// /// 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 UnionType(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 UnionType 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 UnionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type UpdateBehavior. /// public class UpdateBehavior : ConstantClass { /// /// Constant LOG for UpdateBehavior /// public static readonly UpdateBehavior LOG = new UpdateBehavior("LOG"); /// /// Constant UPDATE_IN_DATABASE for UpdateBehavior /// public static readonly UpdateBehavior UPDATE_IN_DATABASE = new UpdateBehavior("UPDATE_IN_DATABASE"); /// /// 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 UpdateBehavior(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 UpdateBehavior 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 UpdateBehavior(string value) { return FindValue(value); } } /// /// Constants used for properties of type UpdateCatalogBehavior. /// public class UpdateCatalogBehavior : ConstantClass { /// /// Constant LOG for UpdateCatalogBehavior /// public static readonly UpdateCatalogBehavior LOG = new UpdateCatalogBehavior("LOG"); /// /// Constant UPDATE_IN_DATABASE for UpdateCatalogBehavior /// public static readonly UpdateCatalogBehavior UPDATE_IN_DATABASE = new UpdateCatalogBehavior("UPDATE_IN_DATABASE"); /// /// 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 UpdateCatalogBehavior(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 UpdateCatalogBehavior 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 UpdateCatalogBehavior(string value) { return FindValue(value); } } /// /// Constants used for properties of type WorkerType. /// public class WorkerType : ConstantClass { /// /// Constant G025X for WorkerType /// public static readonly WorkerType G025X = new WorkerType("G.025X"); /// /// Constant G1X for WorkerType /// public static readonly WorkerType G1X = new WorkerType("G.1X"); /// /// Constant G2X for WorkerType /// public static readonly WorkerType G2X = new WorkerType("G.2X"); /// /// Constant G4X for WorkerType /// public static readonly WorkerType G4X = new WorkerType("G.4X"); /// /// Constant G8X for WorkerType /// public static readonly WorkerType G8X = new WorkerType("G.8X"); /// /// Constant Standard for WorkerType /// public static readonly WorkerType Standard = new WorkerType("Standard"); /// /// Constant Z2X for WorkerType /// public static readonly WorkerType Z2X = new WorkerType("Z.2X"); /// /// 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 WorkerType(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 WorkerType 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 WorkerType(string value) { return FindValue(value); } } /// /// Constants used for properties of type WorkflowRunStatus. /// public class WorkflowRunStatus : ConstantClass { /// /// Constant COMPLETED for WorkflowRunStatus /// public static readonly WorkflowRunStatus COMPLETED = new WorkflowRunStatus("COMPLETED"); /// /// Constant ERROR for WorkflowRunStatus /// public static readonly WorkflowRunStatus ERROR = new WorkflowRunStatus("ERROR"); /// /// Constant RUNNING for WorkflowRunStatus /// public static readonly WorkflowRunStatus RUNNING = new WorkflowRunStatus("RUNNING"); /// /// Constant STOPPED for WorkflowRunStatus /// public static readonly WorkflowRunStatus STOPPED = new WorkflowRunStatus("STOPPED"); /// /// Constant STOPPING for WorkflowRunStatus /// public static readonly WorkflowRunStatus STOPPING = new WorkflowRunStatus("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 WorkflowRunStatus(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 WorkflowRunStatus 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 WorkflowRunStatus(string value) { return FindValue(value); } } }