/*
* 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 cleanrooms-2022-02-17.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.CleanRooms
{
///
/// Constants used for properties of type AccessDeniedExceptionReason.
///
public class AccessDeniedExceptionReason : ConstantClass
{
///
/// Constant INSUFFICIENT_PERMISSIONS for AccessDeniedExceptionReason
///
public static readonly AccessDeniedExceptionReason INSUFFICIENT_PERMISSIONS = new AccessDeniedExceptionReason("INSUFFICIENT_PERMISSIONS");
///
/// 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 AccessDeniedExceptionReason(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 AccessDeniedExceptionReason 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 AccessDeniedExceptionReason(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AggregateFunctionName.
///
public class AggregateFunctionName : ConstantClass
{
///
/// Constant AVG for AggregateFunctionName
///
public static readonly AggregateFunctionName AVG = new AggregateFunctionName("AVG");
///
/// Constant COUNT for AggregateFunctionName
///
public static readonly AggregateFunctionName COUNT = new AggregateFunctionName("COUNT");
///
/// Constant COUNT_DISTINCT for AggregateFunctionName
///
public static readonly AggregateFunctionName COUNT_DISTINCT = new AggregateFunctionName("COUNT_DISTINCT");
///
/// Constant SUM for AggregateFunctionName
///
public static readonly AggregateFunctionName SUM = new AggregateFunctionName("SUM");
///
/// Constant SUM_DISTINCT for AggregateFunctionName
///
public static readonly AggregateFunctionName SUM_DISTINCT = new AggregateFunctionName("SUM_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 AggregateFunctionName(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 AggregateFunctionName 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 AggregateFunctionName(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AggregationType.
///
public class AggregationType : ConstantClass
{
///
/// Constant COUNT_DISTINCT for AggregationType
///
public static readonly AggregationType COUNT_DISTINCT = new AggregationType("COUNT_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 AggregationType(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 AggregationType 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 AggregationType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AnalysisMethod.
///
public class AnalysisMethod : ConstantClass
{
///
/// Constant DIRECT_QUERY for AnalysisMethod
///
public static readonly AnalysisMethod DIRECT_QUERY = new AnalysisMethod("DIRECT_QUERY");
///
/// 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 AnalysisMethod(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 AnalysisMethod 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 AnalysisMethod(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AnalysisRuleType.
///
public class AnalysisRuleType : ConstantClass
{
///
/// Constant AGGREGATION for AnalysisRuleType
///
public static readonly AnalysisRuleType AGGREGATION = new AnalysisRuleType("AGGREGATION");
///
/// Constant LIST for AnalysisRuleType
///
public static readonly AnalysisRuleType LIST = new AnalysisRuleType("LIST");
///
/// 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 AnalysisRuleType(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 AnalysisRuleType 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 AnalysisRuleType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CollaborationQueryLogStatus.
///
public class CollaborationQueryLogStatus : ConstantClass
{
///
/// Constant DISABLED for CollaborationQueryLogStatus
///
public static readonly CollaborationQueryLogStatus DISABLED = new CollaborationQueryLogStatus("DISABLED");
///
/// Constant ENABLED for CollaborationQueryLogStatus
///
public static readonly CollaborationQueryLogStatus ENABLED = new CollaborationQueryLogStatus("ENABLED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public CollaborationQueryLogStatus(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 CollaborationQueryLogStatus 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 CollaborationQueryLogStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ConfiguredTableAnalysisRuleType.
///
public class ConfiguredTableAnalysisRuleType : ConstantClass
{
///
/// Constant AGGREGATION for ConfiguredTableAnalysisRuleType
///
public static readonly ConfiguredTableAnalysisRuleType AGGREGATION = new ConfiguredTableAnalysisRuleType("AGGREGATION");
///
/// Constant LIST for ConfiguredTableAnalysisRuleType
///
public static readonly ConfiguredTableAnalysisRuleType LIST = new ConfiguredTableAnalysisRuleType("LIST");
///
/// 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 ConfiguredTableAnalysisRuleType(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 ConfiguredTableAnalysisRuleType 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 ConfiguredTableAnalysisRuleType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ConflictExceptionReason.
///
public class ConflictExceptionReason : ConstantClass
{
///
/// Constant ALREADY_EXISTS for ConflictExceptionReason
///
public static readonly ConflictExceptionReason ALREADY_EXISTS = new ConflictExceptionReason("ALREADY_EXISTS");
///
/// Constant INVALID_STATE for ConflictExceptionReason
///
public static readonly ConflictExceptionReason INVALID_STATE = new ConflictExceptionReason("INVALID_STATE");
///
/// Constant SUBRESOURCES_EXIST for ConflictExceptionReason
///
public static readonly ConflictExceptionReason SUBRESOURCES_EXIST = new ConflictExceptionReason("SUBRESOURCES_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 ConflictExceptionReason(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 ConflictExceptionReason 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 ConflictExceptionReason(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FilterableMemberStatus.
///
public class FilterableMemberStatus : ConstantClass
{
///
/// Constant ACTIVE for FilterableMemberStatus
///
public static readonly FilterableMemberStatus ACTIVE = new FilterableMemberStatus("ACTIVE");
///
/// Constant INVITED for FilterableMemberStatus
///
public static readonly FilterableMemberStatus INVITED = new FilterableMemberStatus("INVITED");
///
/// 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 FilterableMemberStatus(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 FilterableMemberStatus 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 FilterableMemberStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type JoinOperator.
///
public class JoinOperator : ConstantClass
{
///
/// Constant AND for JoinOperator
///
public static readonly JoinOperator AND = new JoinOperator("AND");
///
/// Constant OR for JoinOperator
///
public static readonly JoinOperator OR = new JoinOperator("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 JoinOperator(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 JoinOperator 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 JoinOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type JoinRequiredOption.
///
public class JoinRequiredOption : ConstantClass
{
///
/// Constant QUERY_RUNNER for JoinRequiredOption
///
public static readonly JoinRequiredOption QUERY_RUNNER = new JoinRequiredOption("QUERY_RUNNER");
///
/// 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 JoinRequiredOption(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 JoinRequiredOption 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 JoinRequiredOption(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MemberAbility.
///
public class MemberAbility : ConstantClass
{
///
/// Constant CAN_QUERY for MemberAbility
///
public static readonly MemberAbility CAN_QUERY = new MemberAbility("CAN_QUERY");
///
/// Constant CAN_RECEIVE_RESULTS for MemberAbility
///
public static readonly MemberAbility CAN_RECEIVE_RESULTS = new MemberAbility("CAN_RECEIVE_RESULTS");
///
/// 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 MemberAbility(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 MemberAbility 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 MemberAbility(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MembershipQueryLogStatus.
///
public class MembershipQueryLogStatus : ConstantClass
{
///
/// Constant DISABLED for MembershipQueryLogStatus
///
public static readonly MembershipQueryLogStatus DISABLED = new MembershipQueryLogStatus("DISABLED");
///
/// Constant ENABLED for MembershipQueryLogStatus
///
public static readonly MembershipQueryLogStatus ENABLED = new MembershipQueryLogStatus("ENABLED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public MembershipQueryLogStatus(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 MembershipQueryLogStatus 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 MembershipQueryLogStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MembershipStatus.
///
public class MembershipStatus : ConstantClass
{
///
/// Constant ACTIVE for MembershipStatus
///
public static readonly MembershipStatus ACTIVE = new MembershipStatus("ACTIVE");
///
/// Constant COLLABORATION_DELETED for MembershipStatus
///
public static readonly MembershipStatus COLLABORATION_DELETED = new MembershipStatus("COLLABORATION_DELETED");
///
/// Constant REMOVED for MembershipStatus
///
public static readonly MembershipStatus REMOVED = new MembershipStatus("REMOVED");
///
/// 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 MembershipStatus(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 MembershipStatus 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 MembershipStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MemberStatus.
///
public class MemberStatus : ConstantClass
{
///
/// Constant ACTIVE for MemberStatus
///
public static readonly MemberStatus ACTIVE = new MemberStatus("ACTIVE");
///
/// Constant INVITED for MemberStatus
///
public static readonly MemberStatus INVITED = new MemberStatus("INVITED");
///
/// Constant LEFT for MemberStatus
///
public static readonly MemberStatus LEFT = new MemberStatus("LEFT");
///
/// Constant REMOVED for MemberStatus
///
public static readonly MemberStatus REMOVED = new MemberStatus("REMOVED");
///
/// 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 MemberStatus(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 MemberStatus 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 MemberStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ProtectedQueryStatus.
///
public class ProtectedQueryStatus : ConstantClass
{
///
/// Constant CANCELLED for ProtectedQueryStatus
///
public static readonly ProtectedQueryStatus CANCELLED = new ProtectedQueryStatus("CANCELLED");
///
/// Constant CANCELLING for ProtectedQueryStatus
///
public static readonly ProtectedQueryStatus CANCELLING = new ProtectedQueryStatus("CANCELLING");
///
/// Constant FAILED for ProtectedQueryStatus
///
public static readonly ProtectedQueryStatus FAILED = new ProtectedQueryStatus("FAILED");
///
/// Constant STARTED for ProtectedQueryStatus
///
public static readonly ProtectedQueryStatus STARTED = new ProtectedQueryStatus("STARTED");
///
/// Constant SUBMITTED for ProtectedQueryStatus
///
public static readonly ProtectedQueryStatus SUBMITTED = new ProtectedQueryStatus("SUBMITTED");
///
/// Constant SUCCESS for ProtectedQueryStatus
///
public static readonly ProtectedQueryStatus SUCCESS = new ProtectedQueryStatus("SUCCESS");
///
/// Constant TIMED_OUT for ProtectedQueryStatus
///
public static readonly ProtectedQueryStatus TIMED_OUT = new ProtectedQueryStatus("TIMED_OUT");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public ProtectedQueryStatus(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 ProtectedQueryStatus 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 ProtectedQueryStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ProtectedQueryType.
///
public class ProtectedQueryType : ConstantClass
{
///
/// Constant SQL for ProtectedQueryType
///
public static readonly ProtectedQueryType SQL = new ProtectedQueryType("SQL");
///
/// 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 ProtectedQueryType(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 ProtectedQueryType 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 ProtectedQueryType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ResourceType.
///
public class ResourceType : ConstantClass
{
///
/// Constant COLLABORATION for ResourceType
///
public static readonly ResourceType COLLABORATION = new ResourceType("COLLABORATION");
///
/// Constant CONFIGURED_TABLE for ResourceType
///
public static readonly ResourceType CONFIGURED_TABLE = new ResourceType("CONFIGURED_TABLE");
///
/// Constant CONFIGURED_TABLE_ASSOCIATION for ResourceType
///
public static readonly ResourceType CONFIGURED_TABLE_ASSOCIATION = new ResourceType("CONFIGURED_TABLE_ASSOCIATION");
///
/// Constant MEMBERSHIP for ResourceType
///
public static readonly ResourceType MEMBERSHIP = new ResourceType("MEMBERSHIP");
///
/// 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 ResultFormat.
///
public class ResultFormat : ConstantClass
{
///
/// Constant CSV for ResultFormat
///
public static readonly ResultFormat CSV = new ResultFormat("CSV");
///
/// Constant PARQUET for ResultFormat
///
public static readonly ResultFormat PARQUET = new ResultFormat("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 ResultFormat(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 ResultFormat 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 ResultFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ScalarFunctions.
///
public class ScalarFunctions : ConstantClass
{
///
/// Constant ABS for ScalarFunctions
///
public static readonly ScalarFunctions ABS = new ScalarFunctions("ABS");
///
/// Constant CAST for ScalarFunctions
///
public static readonly ScalarFunctions CAST = new ScalarFunctions("CAST");
///
/// Constant CEILING for ScalarFunctions
///
public static readonly ScalarFunctions CEILING = new ScalarFunctions("CEILING");
///
/// Constant COALESCE for ScalarFunctions
///
public static readonly ScalarFunctions COALESCE = new ScalarFunctions("COALESCE");
///
/// Constant FLOOR for ScalarFunctions
///
public static readonly ScalarFunctions FLOOR = new ScalarFunctions("FLOOR");
///
/// Constant LN for ScalarFunctions
///
public static readonly ScalarFunctions LN = new ScalarFunctions("LN");
///
/// Constant LOG for ScalarFunctions
///
public static readonly ScalarFunctions LOG = new ScalarFunctions("LOG");
///
/// Constant LOWER for ScalarFunctions
///
public static readonly ScalarFunctions LOWER = new ScalarFunctions("LOWER");
///
/// Constant ROUND for ScalarFunctions
///
public static readonly ScalarFunctions ROUND = new ScalarFunctions("ROUND");
///
/// Constant RTRIM for ScalarFunctions
///
public static readonly ScalarFunctions RTRIM = new ScalarFunctions("RTRIM");
///
/// Constant SQRT for ScalarFunctions
///
public static readonly ScalarFunctions SQRT = new ScalarFunctions("SQRT");
///
/// Constant TRUNC for ScalarFunctions
///
public static readonly ScalarFunctions TRUNC = new ScalarFunctions("TRUNC");
///
/// Constant UPPER for ScalarFunctions
///
public static readonly ScalarFunctions UPPER = new ScalarFunctions("UPPER");
///
/// 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 ScalarFunctions(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 ScalarFunctions 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 ScalarFunctions(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SchemaType.
///
public class SchemaType : ConstantClass
{
///
/// Constant TABLE for SchemaType
///
public static readonly SchemaType TABLE = new SchemaType("TABLE");
///
/// 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 SchemaType(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 SchemaType 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 SchemaType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TargetProtectedQueryStatus.
///
public class TargetProtectedQueryStatus : ConstantClass
{
///
/// Constant CANCELLED for TargetProtectedQueryStatus
///
public static readonly TargetProtectedQueryStatus CANCELLED = new TargetProtectedQueryStatus("CANCELLED");
///
/// 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 TargetProtectedQueryStatus(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 TargetProtectedQueryStatus 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 TargetProtectedQueryStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ValidationExceptionReason.
///
public class ValidationExceptionReason : ConstantClass
{
///
/// Constant FIELD_VALIDATION_FAILED for ValidationExceptionReason
///
public static readonly ValidationExceptionReason FIELD_VALIDATION_FAILED = new ValidationExceptionReason("FIELD_VALIDATION_FAILED");
///
/// Constant INVALID_CONFIGURATION for ValidationExceptionReason
///
public static readonly ValidationExceptionReason INVALID_CONFIGURATION = new ValidationExceptionReason("INVALID_CONFIGURATION");
///
/// Constant INVALID_QUERY for ValidationExceptionReason
///
public static readonly ValidationExceptionReason INVALID_QUERY = new ValidationExceptionReason("INVALID_QUERY");
///
/// 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 ValidationExceptionReason(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 ValidationExceptionReason 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 ValidationExceptionReason(string value)
{
return FindValue(value);
}
}
}