/*
* 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 quicksight-2018-04-01.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.QuickSight
{
///
/// Constants used for properties of type AnalysisErrorType.
///
public class AnalysisErrorType : ConstantClass
{
///
/// Constant ACCESS_DENIED for AnalysisErrorType
///
public static readonly AnalysisErrorType ACCESS_DENIED = new AnalysisErrorType("ACCESS_DENIED");
///
/// Constant COLUMN_GEOGRAPHIC_ROLE_MISMATCH for AnalysisErrorType
///
public static readonly AnalysisErrorType COLUMN_GEOGRAPHIC_ROLE_MISMATCH = new AnalysisErrorType("COLUMN_GEOGRAPHIC_ROLE_MISMATCH");
///
/// Constant COLUMN_REPLACEMENT_MISSING for AnalysisErrorType
///
public static readonly AnalysisErrorType COLUMN_REPLACEMENT_MISSING = new AnalysisErrorType("COLUMN_REPLACEMENT_MISSING");
///
/// Constant COLUMN_TYPE_MISMATCH for AnalysisErrorType
///
public static readonly AnalysisErrorType COLUMN_TYPE_MISMATCH = new AnalysisErrorType("COLUMN_TYPE_MISMATCH");
///
/// Constant DATA_SET_NOT_FOUND for AnalysisErrorType
///
public static readonly AnalysisErrorType DATA_SET_NOT_FOUND = new AnalysisErrorType("DATA_SET_NOT_FOUND");
///
/// Constant INTERNAL_FAILURE for AnalysisErrorType
///
public static readonly AnalysisErrorType INTERNAL_FAILURE = new AnalysisErrorType("INTERNAL_FAILURE");
///
/// Constant PARAMETER_NOT_FOUND for AnalysisErrorType
///
public static readonly AnalysisErrorType PARAMETER_NOT_FOUND = new AnalysisErrorType("PARAMETER_NOT_FOUND");
///
/// Constant PARAMETER_TYPE_INVALID for AnalysisErrorType
///
public static readonly AnalysisErrorType PARAMETER_TYPE_INVALID = new AnalysisErrorType("PARAMETER_TYPE_INVALID");
///
/// Constant PARAMETER_VALUE_INCOMPATIBLE for AnalysisErrorType
///
public static readonly AnalysisErrorType PARAMETER_VALUE_INCOMPATIBLE = new AnalysisErrorType("PARAMETER_VALUE_INCOMPATIBLE");
///
/// Constant SOURCE_NOT_FOUND for AnalysisErrorType
///
public static readonly AnalysisErrorType SOURCE_NOT_FOUND = new AnalysisErrorType("SOURCE_NOT_FOUND");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public AnalysisErrorType(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 AnalysisErrorType 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 AnalysisErrorType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AnalysisFilterAttribute.
///
public class AnalysisFilterAttribute : ConstantClass
{
///
/// Constant ANALYSIS_NAME for AnalysisFilterAttribute
///
public static readonly AnalysisFilterAttribute ANALYSIS_NAME = new AnalysisFilterAttribute("ANALYSIS_NAME");
///
/// Constant DIRECT_QUICKSIGHT_OWNER for AnalysisFilterAttribute
///
public static readonly AnalysisFilterAttribute DIRECT_QUICKSIGHT_OWNER = new AnalysisFilterAttribute("DIRECT_QUICKSIGHT_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_SOLE_OWNER for AnalysisFilterAttribute
///
public static readonly AnalysisFilterAttribute DIRECT_QUICKSIGHT_SOLE_OWNER = new AnalysisFilterAttribute("DIRECT_QUICKSIGHT_SOLE_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_VIEWER_OR_OWNER for AnalysisFilterAttribute
///
public static readonly AnalysisFilterAttribute DIRECT_QUICKSIGHT_VIEWER_OR_OWNER = new AnalysisFilterAttribute("DIRECT_QUICKSIGHT_VIEWER_OR_OWNER");
///
/// Constant QUICKSIGHT_OWNER for AnalysisFilterAttribute
///
public static readonly AnalysisFilterAttribute QUICKSIGHT_OWNER = new AnalysisFilterAttribute("QUICKSIGHT_OWNER");
///
/// Constant QUICKSIGHT_USER for AnalysisFilterAttribute
///
public static readonly AnalysisFilterAttribute QUICKSIGHT_USER = new AnalysisFilterAttribute("QUICKSIGHT_USER");
///
/// Constant QUICKSIGHT_VIEWER_OR_OWNER for AnalysisFilterAttribute
///
public static readonly AnalysisFilterAttribute QUICKSIGHT_VIEWER_OR_OWNER = new AnalysisFilterAttribute("QUICKSIGHT_VIEWER_OR_OWNER");
///
/// 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 AnalysisFilterAttribute(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 AnalysisFilterAttribute 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 AnalysisFilterAttribute(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AnchorOption.
///
public class AnchorOption : ConstantClass
{
///
/// Constant NOW for AnchorOption
///
public static readonly AnchorOption NOW = new AnchorOption("NOW");
///
/// 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 AnchorOption(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 AnchorOption 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 AnchorOption(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ArcThickness.
///
public class ArcThickness : ConstantClass
{
///
/// Constant LARGE for ArcThickness
///
public static readonly ArcThickness LARGE = new ArcThickness("LARGE");
///
/// Constant MEDIUM for ArcThickness
///
public static readonly ArcThickness MEDIUM = new ArcThickness("MEDIUM");
///
/// Constant SMALL for ArcThickness
///
public static readonly ArcThickness SMALL = new ArcThickness("SMALL");
///
/// Constant WHOLE for ArcThickness
///
public static readonly ArcThickness WHOLE = new ArcThickness("WHOLE");
///
/// 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 ArcThickness(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 ArcThickness 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 ArcThickness(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ArcThicknessOptions.
///
public class ArcThicknessOptions : ConstantClass
{
///
/// Constant LARGE for ArcThicknessOptions
///
public static readonly ArcThicknessOptions LARGE = new ArcThicknessOptions("LARGE");
///
/// Constant MEDIUM for ArcThicknessOptions
///
public static readonly ArcThicknessOptions MEDIUM = new ArcThicknessOptions("MEDIUM");
///
/// Constant SMALL for ArcThicknessOptions
///
public static readonly ArcThicknessOptions SMALL = new ArcThicknessOptions("SMALL");
///
/// 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 ArcThicknessOptions(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 ArcThicknessOptions 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 ArcThicknessOptions(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportFormat.
///
public class AssetBundleExportFormat : ConstantClass
{
///
/// Constant CLOUDFORMATION_JSON for AssetBundleExportFormat
///
public static readonly AssetBundleExportFormat CLOUDFORMATION_JSON = new AssetBundleExportFormat("CLOUDFORMATION_JSON");
///
/// Constant QUICKSIGHT_JSON for AssetBundleExportFormat
///
public static readonly AssetBundleExportFormat QUICKSIGHT_JSON = new AssetBundleExportFormat("QUICKSIGHT_JSON");
///
/// 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 AssetBundleExportFormat(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 AssetBundleExportFormat 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 AssetBundleExportFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportJobAnalysisPropertyToOverride.
///
public class AssetBundleExportJobAnalysisPropertyToOverride : ConstantClass
{
///
/// Constant Name for AssetBundleExportJobAnalysisPropertyToOverride
///
public static readonly AssetBundleExportJobAnalysisPropertyToOverride Name = new AssetBundleExportJobAnalysisPropertyToOverride("Name");
///
/// 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 AssetBundleExportJobAnalysisPropertyToOverride(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 AssetBundleExportJobAnalysisPropertyToOverride 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 AssetBundleExportJobAnalysisPropertyToOverride(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportJobDashboardPropertyToOverride.
///
public class AssetBundleExportJobDashboardPropertyToOverride : ConstantClass
{
///
/// Constant Name for AssetBundleExportJobDashboardPropertyToOverride
///
public static readonly AssetBundleExportJobDashboardPropertyToOverride Name = new AssetBundleExportJobDashboardPropertyToOverride("Name");
///
/// 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 AssetBundleExportJobDashboardPropertyToOverride(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 AssetBundleExportJobDashboardPropertyToOverride 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 AssetBundleExportJobDashboardPropertyToOverride(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportJobDataSetPropertyToOverride.
///
public class AssetBundleExportJobDataSetPropertyToOverride : ConstantClass
{
///
/// Constant Name for AssetBundleExportJobDataSetPropertyToOverride
///
public static readonly AssetBundleExportJobDataSetPropertyToOverride Name = new AssetBundleExportJobDataSetPropertyToOverride("Name");
///
/// 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 AssetBundleExportJobDataSetPropertyToOverride(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 AssetBundleExportJobDataSetPropertyToOverride 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 AssetBundleExportJobDataSetPropertyToOverride(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportJobDataSourcePropertyToOverride.
///
public class AssetBundleExportJobDataSourcePropertyToOverride : ConstantClass
{
///
/// Constant Catalog for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Catalog = new AssetBundleExportJobDataSourcePropertyToOverride("Catalog");
///
/// Constant ClusterId for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride ClusterId = new AssetBundleExportJobDataSourcePropertyToOverride("ClusterId");
///
/// Constant Database for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Database = new AssetBundleExportJobDataSourcePropertyToOverride("Database");
///
/// Constant DataSetName for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride DataSetName = new AssetBundleExportJobDataSourcePropertyToOverride("DataSetName");
///
/// Constant DisableSsl for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride DisableSsl = new AssetBundleExportJobDataSourcePropertyToOverride("DisableSsl");
///
/// Constant Domain for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Domain = new AssetBundleExportJobDataSourcePropertyToOverride("Domain");
///
/// Constant Host for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Host = new AssetBundleExportJobDataSourcePropertyToOverride("Host");
///
/// Constant InstanceId for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride InstanceId = new AssetBundleExportJobDataSourcePropertyToOverride("InstanceId");
///
/// Constant ManifestFileLocation for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride ManifestFileLocation = new AssetBundleExportJobDataSourcePropertyToOverride("ManifestFileLocation");
///
/// Constant Name for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Name = new AssetBundleExportJobDataSourcePropertyToOverride("Name");
///
/// Constant Password for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Password = new AssetBundleExportJobDataSourcePropertyToOverride("Password");
///
/// Constant Port for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Port = new AssetBundleExportJobDataSourcePropertyToOverride("Port");
///
/// Constant RoleArn for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride RoleArn = new AssetBundleExportJobDataSourcePropertyToOverride("RoleArn");
///
/// Constant SecretArn for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride SecretArn = new AssetBundleExportJobDataSourcePropertyToOverride("SecretArn");
///
/// Constant Username for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Username = new AssetBundleExportJobDataSourcePropertyToOverride("Username");
///
/// Constant Warehouse for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride Warehouse = new AssetBundleExportJobDataSourcePropertyToOverride("Warehouse");
///
/// Constant WorkGroup for AssetBundleExportJobDataSourcePropertyToOverride
///
public static readonly AssetBundleExportJobDataSourcePropertyToOverride WorkGroup = new AssetBundleExportJobDataSourcePropertyToOverride("WorkGroup");
///
/// 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 AssetBundleExportJobDataSourcePropertyToOverride(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 AssetBundleExportJobDataSourcePropertyToOverride 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 AssetBundleExportJobDataSourcePropertyToOverride(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportJobRefreshSchedulePropertyToOverride.
///
public class AssetBundleExportJobRefreshSchedulePropertyToOverride : ConstantClass
{
///
/// Constant StartAfterDateTime for AssetBundleExportJobRefreshSchedulePropertyToOverride
///
public static readonly AssetBundleExportJobRefreshSchedulePropertyToOverride StartAfterDateTime = new AssetBundleExportJobRefreshSchedulePropertyToOverride("StartAfterDateTime");
///
/// 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 AssetBundleExportJobRefreshSchedulePropertyToOverride(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 AssetBundleExportJobRefreshSchedulePropertyToOverride 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 AssetBundleExportJobRefreshSchedulePropertyToOverride(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportJobStatus.
///
public class AssetBundleExportJobStatus : ConstantClass
{
///
/// Constant FAILED for AssetBundleExportJobStatus
///
public static readonly AssetBundleExportJobStatus FAILED = new AssetBundleExportJobStatus("FAILED");
///
/// Constant IN_PROGRESS for AssetBundleExportJobStatus
///
public static readonly AssetBundleExportJobStatus IN_PROGRESS = new AssetBundleExportJobStatus("IN_PROGRESS");
///
/// Constant QUEUED_FOR_IMMEDIATE_EXECUTION for AssetBundleExportJobStatus
///
public static readonly AssetBundleExportJobStatus QUEUED_FOR_IMMEDIATE_EXECUTION = new AssetBundleExportJobStatus("QUEUED_FOR_IMMEDIATE_EXECUTION");
///
/// Constant SUCCESSFUL for AssetBundleExportJobStatus
///
public static readonly AssetBundleExportJobStatus SUCCESSFUL = new AssetBundleExportJobStatus("SUCCESSFUL");
///
/// 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 AssetBundleExportJobStatus(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 AssetBundleExportJobStatus 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 AssetBundleExportJobStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportJobThemePropertyToOverride.
///
public class AssetBundleExportJobThemePropertyToOverride : ConstantClass
{
///
/// Constant Name for AssetBundleExportJobThemePropertyToOverride
///
public static readonly AssetBundleExportJobThemePropertyToOverride Name = new AssetBundleExportJobThemePropertyToOverride("Name");
///
/// 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 AssetBundleExportJobThemePropertyToOverride(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 AssetBundleExportJobThemePropertyToOverride 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 AssetBundleExportJobThemePropertyToOverride(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleExportJobVPCConnectionPropertyToOverride.
///
public class AssetBundleExportJobVPCConnectionPropertyToOverride : ConstantClass
{
///
/// Constant DnsResolvers for AssetBundleExportJobVPCConnectionPropertyToOverride
///
public static readonly AssetBundleExportJobVPCConnectionPropertyToOverride DnsResolvers = new AssetBundleExportJobVPCConnectionPropertyToOverride("DnsResolvers");
///
/// Constant Name for AssetBundleExportJobVPCConnectionPropertyToOverride
///
public static readonly AssetBundleExportJobVPCConnectionPropertyToOverride Name = new AssetBundleExportJobVPCConnectionPropertyToOverride("Name");
///
/// Constant RoleArn for AssetBundleExportJobVPCConnectionPropertyToOverride
///
public static readonly AssetBundleExportJobVPCConnectionPropertyToOverride RoleArn = new AssetBundleExportJobVPCConnectionPropertyToOverride("RoleArn");
///
/// 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 AssetBundleExportJobVPCConnectionPropertyToOverride(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 AssetBundleExportJobVPCConnectionPropertyToOverride 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 AssetBundleExportJobVPCConnectionPropertyToOverride(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleImportFailureAction.
///
public class AssetBundleImportFailureAction : ConstantClass
{
///
/// Constant DO_NOTHING for AssetBundleImportFailureAction
///
public static readonly AssetBundleImportFailureAction DO_NOTHING = new AssetBundleImportFailureAction("DO_NOTHING");
///
/// Constant ROLLBACK for AssetBundleImportFailureAction
///
public static readonly AssetBundleImportFailureAction ROLLBACK = new AssetBundleImportFailureAction("ROLLBACK");
///
/// 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 AssetBundleImportFailureAction(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 AssetBundleImportFailureAction 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 AssetBundleImportFailureAction(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssetBundleImportJobStatus.
///
public class AssetBundleImportJobStatus : ConstantClass
{
///
/// Constant FAILED for AssetBundleImportJobStatus
///
public static readonly AssetBundleImportJobStatus FAILED = new AssetBundleImportJobStatus("FAILED");
///
/// Constant FAILED_ROLLBACK_COMPLETED for AssetBundleImportJobStatus
///
public static readonly AssetBundleImportJobStatus FAILED_ROLLBACK_COMPLETED = new AssetBundleImportJobStatus("FAILED_ROLLBACK_COMPLETED");
///
/// Constant FAILED_ROLLBACK_ERROR for AssetBundleImportJobStatus
///
public static readonly AssetBundleImportJobStatus FAILED_ROLLBACK_ERROR = new AssetBundleImportJobStatus("FAILED_ROLLBACK_ERROR");
///
/// Constant FAILED_ROLLBACK_IN_PROGRESS for AssetBundleImportJobStatus
///
public static readonly AssetBundleImportJobStatus FAILED_ROLLBACK_IN_PROGRESS = new AssetBundleImportJobStatus("FAILED_ROLLBACK_IN_PROGRESS");
///
/// Constant IN_PROGRESS for AssetBundleImportJobStatus
///
public static readonly AssetBundleImportJobStatus IN_PROGRESS = new AssetBundleImportJobStatus("IN_PROGRESS");
///
/// Constant QUEUED_FOR_IMMEDIATE_EXECUTION for AssetBundleImportJobStatus
///
public static readonly AssetBundleImportJobStatus QUEUED_FOR_IMMEDIATE_EXECUTION = new AssetBundleImportJobStatus("QUEUED_FOR_IMMEDIATE_EXECUTION");
///
/// Constant SUCCESSFUL for AssetBundleImportJobStatus
///
public static readonly AssetBundleImportJobStatus SUCCESSFUL = new AssetBundleImportJobStatus("SUCCESSFUL");
///
/// 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 AssetBundleImportJobStatus(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 AssetBundleImportJobStatus 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 AssetBundleImportJobStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AssignmentStatus.
///
public class AssignmentStatus : ConstantClass
{
///
/// Constant DISABLED for AssignmentStatus
///
public static readonly AssignmentStatus DISABLED = new AssignmentStatus("DISABLED");
///
/// Constant DRAFT for AssignmentStatus
///
public static readonly AssignmentStatus DRAFT = new AssignmentStatus("DRAFT");
///
/// Constant ENABLED for AssignmentStatus
///
public static readonly AssignmentStatus ENABLED = new AssignmentStatus("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 AssignmentStatus(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 AssignmentStatus 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 AssignmentStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AuthenticationMethodOption.
///
public class AuthenticationMethodOption : ConstantClass
{
///
/// Constant ACTIVE_DIRECTORY for AuthenticationMethodOption
///
public static readonly AuthenticationMethodOption ACTIVE_DIRECTORY = new AuthenticationMethodOption("ACTIVE_DIRECTORY");
///
/// Constant IAM_AND_QUICKSIGHT for AuthenticationMethodOption
///
public static readonly AuthenticationMethodOption IAM_AND_QUICKSIGHT = new AuthenticationMethodOption("IAM_AND_QUICKSIGHT");
///
/// Constant IAM_ONLY for AuthenticationMethodOption
///
public static readonly AuthenticationMethodOption IAM_ONLY = new AuthenticationMethodOption("IAM_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 AuthenticationMethodOption(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 AuthenticationMethodOption 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 AuthenticationMethodOption(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AuthorSpecifiedAggregation.
///
public class AuthorSpecifiedAggregation : ConstantClass
{
///
/// Constant AVERAGE for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation AVERAGE = new AuthorSpecifiedAggregation("AVERAGE");
///
/// Constant COUNT for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation COUNT = new AuthorSpecifiedAggregation("COUNT");
///
/// Constant DISTINCT_COUNT for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation DISTINCT_COUNT = new AuthorSpecifiedAggregation("DISTINCT_COUNT");
///
/// Constant MAX for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation MAX = new AuthorSpecifiedAggregation("MAX");
///
/// Constant MEDIAN for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation MEDIAN = new AuthorSpecifiedAggregation("MEDIAN");
///
/// Constant MIN for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation MIN = new AuthorSpecifiedAggregation("MIN");
///
/// Constant PERCENTILE for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation PERCENTILE = new AuthorSpecifiedAggregation("PERCENTILE");
///
/// Constant STDEV for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation STDEV = new AuthorSpecifiedAggregation("STDEV");
///
/// Constant STDEVP for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation STDEVP = new AuthorSpecifiedAggregation("STDEVP");
///
/// Constant SUM for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation SUM = new AuthorSpecifiedAggregation("SUM");
///
/// Constant VAR for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation VAR = new AuthorSpecifiedAggregation("VAR");
///
/// Constant VARP for AuthorSpecifiedAggregation
///
public static readonly AuthorSpecifiedAggregation VARP = new AuthorSpecifiedAggregation("VARP");
///
/// 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 AuthorSpecifiedAggregation(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 AuthorSpecifiedAggregation 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 AuthorSpecifiedAggregation(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type AxisBinding.
///
public class AxisBinding : ConstantClass
{
///
/// Constant PRIMARY_YAXIS for AxisBinding
///
public static readonly AxisBinding PRIMARY_YAXIS = new AxisBinding("PRIMARY_YAXIS");
///
/// Constant SECONDARY_YAXIS for AxisBinding
///
public static readonly AxisBinding SECONDARY_YAXIS = new AxisBinding("SECONDARY_YAXIS");
///
/// 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 AxisBinding(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 AxisBinding 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 AxisBinding(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type BarChartOrientation.
///
public class BarChartOrientation : ConstantClass
{
///
/// Constant HORIZONTAL for BarChartOrientation
///
public static readonly BarChartOrientation HORIZONTAL = new BarChartOrientation("HORIZONTAL");
///
/// Constant VERTICAL for BarChartOrientation
///
public static readonly BarChartOrientation VERTICAL = new BarChartOrientation("VERTICAL");
///
/// 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 BarChartOrientation(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 BarChartOrientation 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 BarChartOrientation(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type BarsArrangement.
///
public class BarsArrangement : ConstantClass
{
///
/// Constant CLUSTERED for BarsArrangement
///
public static readonly BarsArrangement CLUSTERED = new BarsArrangement("CLUSTERED");
///
/// Constant STACKED for BarsArrangement
///
public static readonly BarsArrangement STACKED = new BarsArrangement("STACKED");
///
/// Constant STACKED_PERCENT for BarsArrangement
///
public static readonly BarsArrangement STACKED_PERCENT = new BarsArrangement("STACKED_PERCENT");
///
/// 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 BarsArrangement(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 BarsArrangement 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 BarsArrangement(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type BaseMapStyleType.
///
public class BaseMapStyleType : ConstantClass
{
///
/// Constant DARK_GRAY for BaseMapStyleType
///
public static readonly BaseMapStyleType DARK_GRAY = new BaseMapStyleType("DARK_GRAY");
///
/// Constant IMAGERY for BaseMapStyleType
///
public static readonly BaseMapStyleType IMAGERY = new BaseMapStyleType("IMAGERY");
///
/// Constant LIGHT_GRAY for BaseMapStyleType
///
public static readonly BaseMapStyleType LIGHT_GRAY = new BaseMapStyleType("LIGHT_GRAY");
///
/// Constant STREET for BaseMapStyleType
///
public static readonly BaseMapStyleType STREET = new BaseMapStyleType("STREET");
///
/// 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 BaseMapStyleType(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 BaseMapStyleType 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 BaseMapStyleType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type BoxPlotFillStyle.
///
public class BoxPlotFillStyle : ConstantClass
{
///
/// Constant SOLID for BoxPlotFillStyle
///
public static readonly BoxPlotFillStyle SOLID = new BoxPlotFillStyle("SOLID");
///
/// Constant TRANSPARENT for BoxPlotFillStyle
///
public static readonly BoxPlotFillStyle TRANSPARENT = new BoxPlotFillStyle("TRANSPARENT");
///
/// 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 BoxPlotFillStyle(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 BoxPlotFillStyle 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 BoxPlotFillStyle(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CategoricalAggregationFunction.
///
public class CategoricalAggregationFunction : ConstantClass
{
///
/// Constant COUNT for CategoricalAggregationFunction
///
public static readonly CategoricalAggregationFunction COUNT = new CategoricalAggregationFunction("COUNT");
///
/// Constant DISTINCT_COUNT for CategoricalAggregationFunction
///
public static readonly CategoricalAggregationFunction DISTINCT_COUNT = new CategoricalAggregationFunction("DISTINCT_COUNT");
///
/// 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 CategoricalAggregationFunction(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 CategoricalAggregationFunction 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 CategoricalAggregationFunction(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CategoryFilterFunction.
///
public class CategoryFilterFunction : ConstantClass
{
///
/// Constant CONTAINS for CategoryFilterFunction
///
public static readonly CategoryFilterFunction CONTAINS = new CategoryFilterFunction("CONTAINS");
///
/// Constant EXACT for CategoryFilterFunction
///
public static readonly CategoryFilterFunction EXACT = new CategoryFilterFunction("EXACT");
///
/// 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 CategoryFilterFunction(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 CategoryFilterFunction 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 CategoryFilterFunction(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CategoryFilterMatchOperator.
///
public class CategoryFilterMatchOperator : ConstantClass
{
///
/// Constant CONTAINS for CategoryFilterMatchOperator
///
public static readonly CategoryFilterMatchOperator CONTAINS = new CategoryFilterMatchOperator("CONTAINS");
///
/// Constant DOES_NOT_CONTAIN for CategoryFilterMatchOperator
///
public static readonly CategoryFilterMatchOperator DOES_NOT_CONTAIN = new CategoryFilterMatchOperator("DOES_NOT_CONTAIN");
///
/// Constant DOES_NOT_EQUAL for CategoryFilterMatchOperator
///
public static readonly CategoryFilterMatchOperator DOES_NOT_EQUAL = new CategoryFilterMatchOperator("DOES_NOT_EQUAL");
///
/// Constant ENDS_WITH for CategoryFilterMatchOperator
///
public static readonly CategoryFilterMatchOperator ENDS_WITH = new CategoryFilterMatchOperator("ENDS_WITH");
///
/// Constant EQUALS for CategoryFilterMatchOperator
///
public static readonly CategoryFilterMatchOperator EQUALS = new CategoryFilterMatchOperator("EQUALS");
///
/// Constant STARTS_WITH for CategoryFilterMatchOperator
///
public static readonly CategoryFilterMatchOperator STARTS_WITH = new CategoryFilterMatchOperator("STARTS_WITH");
///
/// 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 CategoryFilterMatchOperator(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 CategoryFilterMatchOperator 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 CategoryFilterMatchOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CategoryFilterSelectAllOptions.
///
public class CategoryFilterSelectAllOptions : ConstantClass
{
///
/// Constant FILTER_ALL_VALUES for CategoryFilterSelectAllOptions
///
public static readonly CategoryFilterSelectAllOptions FILTER_ALL_VALUES = new CategoryFilterSelectAllOptions("FILTER_ALL_VALUES");
///
/// 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 CategoryFilterSelectAllOptions(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 CategoryFilterSelectAllOptions 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 CategoryFilterSelectAllOptions(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CategoryFilterType.
///
public class CategoryFilterType : ConstantClass
{
///
/// Constant CUSTOM_FILTER for CategoryFilterType
///
public static readonly CategoryFilterType CUSTOM_FILTER = new CategoryFilterType("CUSTOM_FILTER");
///
/// Constant CUSTOM_FILTER_LIST for CategoryFilterType
///
public static readonly CategoryFilterType CUSTOM_FILTER_LIST = new CategoryFilterType("CUSTOM_FILTER_LIST");
///
/// Constant FILTER_LIST for CategoryFilterType
///
public static readonly CategoryFilterType FILTER_LIST = new CategoryFilterType("FILTER_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 CategoryFilterType(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 CategoryFilterType 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 CategoryFilterType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ColorFillType.
///
public class ColorFillType : ConstantClass
{
///
/// Constant DISCRETE for ColorFillType
///
public static readonly ColorFillType DISCRETE = new ColorFillType("DISCRETE");
///
/// Constant GRADIENT for ColorFillType
///
public static readonly ColorFillType GRADIENT = new ColorFillType("GRADIENT");
///
/// 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 ColorFillType(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 ColorFillType 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 ColorFillType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ColumnDataRole.
///
public class ColumnDataRole : ConstantClass
{
///
/// Constant DIMENSION for ColumnDataRole
///
public static readonly ColumnDataRole DIMENSION = new ColumnDataRole("DIMENSION");
///
/// Constant MEASURE for ColumnDataRole
///
public static readonly ColumnDataRole MEASURE = new ColumnDataRole("MEASURE");
///
/// 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 ColumnDataRole(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 ColumnDataRole 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 ColumnDataRole(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ColumnDataType.
///
public class ColumnDataType : ConstantClass
{
///
/// Constant DATETIME for ColumnDataType
///
public static readonly ColumnDataType DATETIME = new ColumnDataType("DATETIME");
///
/// Constant DECIMAL for ColumnDataType
///
public static readonly ColumnDataType DECIMAL = new ColumnDataType("DECIMAL");
///
/// Constant INTEGER for ColumnDataType
///
public static readonly ColumnDataType INTEGER = new ColumnDataType("INTEGER");
///
/// Constant STRING for ColumnDataType
///
public static readonly ColumnDataType STRING = new ColumnDataType("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 ColumnDataType(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 ColumnDataType 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 ColumnDataType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ColumnOrderingType.
///
public class ColumnOrderingType : ConstantClass
{
///
/// Constant GREATER_IS_BETTER for ColumnOrderingType
///
public static readonly ColumnOrderingType GREATER_IS_BETTER = new ColumnOrderingType("GREATER_IS_BETTER");
///
/// Constant LESSER_IS_BETTER for ColumnOrderingType
///
public static readonly ColumnOrderingType LESSER_IS_BETTER = new ColumnOrderingType("LESSER_IS_BETTER");
///
/// Constant SPECIFIED for ColumnOrderingType
///
public static readonly ColumnOrderingType SPECIFIED = new ColumnOrderingType("SPECIFIED");
///
/// 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 ColumnOrderingType(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 ColumnOrderingType 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 ColumnOrderingType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ColumnRole.
///
public class ColumnRole : ConstantClass
{
///
/// Constant DIMENSION for ColumnRole
///
public static readonly ColumnRole DIMENSION = new ColumnRole("DIMENSION");
///
/// Constant MEASURE for ColumnRole
///
public static readonly ColumnRole MEASURE = new ColumnRole("MEASURE");
///
/// 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 ColumnRole(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 ColumnRole 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 ColumnRole(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ColumnTagName.
///
public class ColumnTagName : ConstantClass
{
///
/// Constant COLUMN_DESCRIPTION for ColumnTagName
///
public static readonly ColumnTagName COLUMN_DESCRIPTION = new ColumnTagName("COLUMN_DESCRIPTION");
///
/// Constant COLUMN_GEOGRAPHIC_ROLE for ColumnTagName
///
public static readonly ColumnTagName COLUMN_GEOGRAPHIC_ROLE = new ColumnTagName("COLUMN_GEOGRAPHIC_ROLE");
///
/// 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 ColumnTagName(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 ColumnTagName 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 ColumnTagName(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ComparisonMethod.
///
public class ComparisonMethod : ConstantClass
{
///
/// Constant DIFFERENCE for ComparisonMethod
///
public static readonly ComparisonMethod DIFFERENCE = new ComparisonMethod("DIFFERENCE");
///
/// Constant PERCENT for ComparisonMethod
///
public static readonly ComparisonMethod PERCENT = new ComparisonMethod("PERCENT");
///
/// Constant PERCENT_DIFFERENCE for ComparisonMethod
///
public static readonly ComparisonMethod PERCENT_DIFFERENCE = new ComparisonMethod("PERCENT_DIFFERENCE");
///
/// 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 ComparisonMethod(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 ComparisonMethod 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 ComparisonMethod(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ConditionalFormattingIconDisplayOption.
///
public class ConditionalFormattingIconDisplayOption : ConstantClass
{
///
/// Constant ICON_ONLY for ConditionalFormattingIconDisplayOption
///
public static readonly ConditionalFormattingIconDisplayOption ICON_ONLY = new ConditionalFormattingIconDisplayOption("ICON_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 ConditionalFormattingIconDisplayOption(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 ConditionalFormattingIconDisplayOption 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 ConditionalFormattingIconDisplayOption(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ConditionalFormattingIconSetType.
///
public class ConditionalFormattingIconSetType : ConstantClass
{
///
/// Constant BARS for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType BARS = new ConditionalFormattingIconSetType("BARS");
///
/// Constant CARET_UP_MINUS_DOWN for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType CARET_UP_MINUS_DOWN = new ConditionalFormattingIconSetType("CARET_UP_MINUS_DOWN");
///
/// Constant CHECK_X for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType CHECK_X = new ConditionalFormattingIconSetType("CHECK_X");
///
/// Constant FLAGS for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType FLAGS = new ConditionalFormattingIconSetType("FLAGS");
///
/// Constant FOUR_COLOR_ARROW for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType FOUR_COLOR_ARROW = new ConditionalFormattingIconSetType("FOUR_COLOR_ARROW");
///
/// Constant FOUR_GRAY_ARROW for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType FOUR_GRAY_ARROW = new ConditionalFormattingIconSetType("FOUR_GRAY_ARROW");
///
/// Constant PLUS_MINUS for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType PLUS_MINUS = new ConditionalFormattingIconSetType("PLUS_MINUS");
///
/// Constant THREE_CIRCLE for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType THREE_CIRCLE = new ConditionalFormattingIconSetType("THREE_CIRCLE");
///
/// Constant THREE_COLOR_ARROW for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType THREE_COLOR_ARROW = new ConditionalFormattingIconSetType("THREE_COLOR_ARROW");
///
/// Constant THREE_GRAY_ARROW for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType THREE_GRAY_ARROW = new ConditionalFormattingIconSetType("THREE_GRAY_ARROW");
///
/// Constant THREE_SHAPE for ConditionalFormattingIconSetType
///
public static readonly ConditionalFormattingIconSetType THREE_SHAPE = new ConditionalFormattingIconSetType("THREE_SHAPE");
///
/// 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 ConditionalFormattingIconSetType(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 ConditionalFormattingIconSetType 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 ConditionalFormattingIconSetType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ConstantType.
///
public class ConstantType : ConstantClass
{
///
/// Constant COLLECTIVE for ConstantType
///
public static readonly ConstantType COLLECTIVE = new ConstantType("COLLECTIVE");
///
/// Constant RANGE for ConstantType
///
public static readonly ConstantType RANGE = new ConstantType("RANGE");
///
/// Constant SINGULAR for ConstantType
///
public static readonly ConstantType SINGULAR = new ConstantType("SINGULAR");
///
/// 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 ConstantType(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 ConstantType 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 ConstantType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CrossDatasetTypes.
///
public class CrossDatasetTypes : ConstantClass
{
///
/// Constant ALL_DATASETS for CrossDatasetTypes
///
public static readonly CrossDatasetTypes ALL_DATASETS = new CrossDatasetTypes("ALL_DATASETS");
///
/// Constant SINGLE_DATASET for CrossDatasetTypes
///
public static readonly CrossDatasetTypes SINGLE_DATASET = new CrossDatasetTypes("SINGLE_DATASET");
///
/// 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 CrossDatasetTypes(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 CrossDatasetTypes 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 CrossDatasetTypes(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CustomContentImageScalingConfiguration.
///
public class CustomContentImageScalingConfiguration : ConstantClass
{
///
/// Constant DO_NOT_SCALE for CustomContentImageScalingConfiguration
///
public static readonly CustomContentImageScalingConfiguration DO_NOT_SCALE = new CustomContentImageScalingConfiguration("DO_NOT_SCALE");
///
/// Constant FIT_TO_HEIGHT for CustomContentImageScalingConfiguration
///
public static readonly CustomContentImageScalingConfiguration FIT_TO_HEIGHT = new CustomContentImageScalingConfiguration("FIT_TO_HEIGHT");
///
/// Constant FIT_TO_WIDTH for CustomContentImageScalingConfiguration
///
public static readonly CustomContentImageScalingConfiguration FIT_TO_WIDTH = new CustomContentImageScalingConfiguration("FIT_TO_WIDTH");
///
/// Constant SCALE_TO_VISUAL for CustomContentImageScalingConfiguration
///
public static readonly CustomContentImageScalingConfiguration SCALE_TO_VISUAL = new CustomContentImageScalingConfiguration("SCALE_TO_VISUAL");
///
/// 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 CustomContentImageScalingConfiguration(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 CustomContentImageScalingConfiguration 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 CustomContentImageScalingConfiguration(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CustomContentType.
///
public class CustomContentType : ConstantClass
{
///
/// Constant IMAGE for CustomContentType
///
public static readonly CustomContentType IMAGE = new CustomContentType("IMAGE");
///
/// Constant OTHER_EMBEDDED_CONTENT for CustomContentType
///
public static readonly CustomContentType OTHER_EMBEDDED_CONTENT = new CustomContentType("OTHER_EMBEDDED_CONTENT");
///
/// 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 CustomContentType(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 CustomContentType 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 CustomContentType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DashboardBehavior.
///
public class DashboardBehavior : ConstantClass
{
///
/// Constant DISABLED for DashboardBehavior
///
public static readonly DashboardBehavior DISABLED = new DashboardBehavior("DISABLED");
///
/// Constant ENABLED for DashboardBehavior
///
public static readonly DashboardBehavior ENABLED = new DashboardBehavior("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 DashboardBehavior(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 DashboardBehavior 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 DashboardBehavior(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DashboardErrorType.
///
public class DashboardErrorType : ConstantClass
{
///
/// Constant ACCESS_DENIED for DashboardErrorType
///
public static readonly DashboardErrorType ACCESS_DENIED = new DashboardErrorType("ACCESS_DENIED");
///
/// Constant COLUMN_GEOGRAPHIC_ROLE_MISMATCH for DashboardErrorType
///
public static readonly DashboardErrorType COLUMN_GEOGRAPHIC_ROLE_MISMATCH = new DashboardErrorType("COLUMN_GEOGRAPHIC_ROLE_MISMATCH");
///
/// Constant COLUMN_REPLACEMENT_MISSING for DashboardErrorType
///
public static readonly DashboardErrorType COLUMN_REPLACEMENT_MISSING = new DashboardErrorType("COLUMN_REPLACEMENT_MISSING");
///
/// Constant COLUMN_TYPE_MISMATCH for DashboardErrorType
///
public static readonly DashboardErrorType COLUMN_TYPE_MISMATCH = new DashboardErrorType("COLUMN_TYPE_MISMATCH");
///
/// Constant DATA_SET_NOT_FOUND for DashboardErrorType
///
public static readonly DashboardErrorType DATA_SET_NOT_FOUND = new DashboardErrorType("DATA_SET_NOT_FOUND");
///
/// Constant INTERNAL_FAILURE for DashboardErrorType
///
public static readonly DashboardErrorType INTERNAL_FAILURE = new DashboardErrorType("INTERNAL_FAILURE");
///
/// Constant PARAMETER_NOT_FOUND for DashboardErrorType
///
public static readonly DashboardErrorType PARAMETER_NOT_FOUND = new DashboardErrorType("PARAMETER_NOT_FOUND");
///
/// Constant PARAMETER_TYPE_INVALID for DashboardErrorType
///
public static readonly DashboardErrorType PARAMETER_TYPE_INVALID = new DashboardErrorType("PARAMETER_TYPE_INVALID");
///
/// Constant PARAMETER_VALUE_INCOMPATIBLE for DashboardErrorType
///
public static readonly DashboardErrorType PARAMETER_VALUE_INCOMPATIBLE = new DashboardErrorType("PARAMETER_VALUE_INCOMPATIBLE");
///
/// Constant SOURCE_NOT_FOUND for DashboardErrorType
///
public static readonly DashboardErrorType SOURCE_NOT_FOUND = new DashboardErrorType("SOURCE_NOT_FOUND");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public DashboardErrorType(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 DashboardErrorType 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 DashboardErrorType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DashboardFilterAttribute.
///
public class DashboardFilterAttribute : ConstantClass
{
///
/// Constant DASHBOARD_NAME for DashboardFilterAttribute
///
public static readonly DashboardFilterAttribute DASHBOARD_NAME = new DashboardFilterAttribute("DASHBOARD_NAME");
///
/// Constant DIRECT_QUICKSIGHT_OWNER for DashboardFilterAttribute
///
public static readonly DashboardFilterAttribute DIRECT_QUICKSIGHT_OWNER = new DashboardFilterAttribute("DIRECT_QUICKSIGHT_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_SOLE_OWNER for DashboardFilterAttribute
///
public static readonly DashboardFilterAttribute DIRECT_QUICKSIGHT_SOLE_OWNER = new DashboardFilterAttribute("DIRECT_QUICKSIGHT_SOLE_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_VIEWER_OR_OWNER for DashboardFilterAttribute
///
public static readonly DashboardFilterAttribute DIRECT_QUICKSIGHT_VIEWER_OR_OWNER = new DashboardFilterAttribute("DIRECT_QUICKSIGHT_VIEWER_OR_OWNER");
///
/// Constant QUICKSIGHT_OWNER for DashboardFilterAttribute
///
public static readonly DashboardFilterAttribute QUICKSIGHT_OWNER = new DashboardFilterAttribute("QUICKSIGHT_OWNER");
///
/// Constant QUICKSIGHT_USER for DashboardFilterAttribute
///
public static readonly DashboardFilterAttribute QUICKSIGHT_USER = new DashboardFilterAttribute("QUICKSIGHT_USER");
///
/// Constant QUICKSIGHT_VIEWER_OR_OWNER for DashboardFilterAttribute
///
public static readonly DashboardFilterAttribute QUICKSIGHT_VIEWER_OR_OWNER = new DashboardFilterAttribute("QUICKSIGHT_VIEWER_OR_OWNER");
///
/// 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 DashboardFilterAttribute(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 DashboardFilterAttribute 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 DashboardFilterAttribute(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DashboardUIState.
///
public class DashboardUIState : ConstantClass
{
///
/// Constant COLLAPSED for DashboardUIState
///
public static readonly DashboardUIState COLLAPSED = new DashboardUIState("COLLAPSED");
///
/// Constant EXPANDED for DashboardUIState
///
public static readonly DashboardUIState EXPANDED = new DashboardUIState("EXPANDED");
///
/// 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 DashboardUIState(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 DashboardUIState 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 DashboardUIState(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataLabelContent.
///
public class DataLabelContent : ConstantClass
{
///
/// Constant PERCENT for DataLabelContent
///
public static readonly DataLabelContent PERCENT = new DataLabelContent("PERCENT");
///
/// Constant VALUE for DataLabelContent
///
public static readonly DataLabelContent VALUE = new DataLabelContent("VALUE");
///
/// Constant VALUE_AND_PERCENT for DataLabelContent
///
public static readonly DataLabelContent VALUE_AND_PERCENT = new DataLabelContent("VALUE_AND_PERCENT");
///
/// 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 DataLabelContent(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 DataLabelContent 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 DataLabelContent(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataLabelOverlap.
///
public class DataLabelOverlap : ConstantClass
{
///
/// Constant DISABLE_OVERLAP for DataLabelOverlap
///
public static readonly DataLabelOverlap DISABLE_OVERLAP = new DataLabelOverlap("DISABLE_OVERLAP");
///
/// Constant ENABLE_OVERLAP for DataLabelOverlap
///
public static readonly DataLabelOverlap ENABLE_OVERLAP = new DataLabelOverlap("ENABLE_OVERLAP");
///
/// 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 DataLabelOverlap(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 DataLabelOverlap 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 DataLabelOverlap(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataLabelPosition.
///
public class DataLabelPosition : ConstantClass
{
///
/// Constant BOTTOM for DataLabelPosition
///
public static readonly DataLabelPosition BOTTOM = new DataLabelPosition("BOTTOM");
///
/// Constant INSIDE for DataLabelPosition
///
public static readonly DataLabelPosition INSIDE = new DataLabelPosition("INSIDE");
///
/// Constant LEFT for DataLabelPosition
///
public static readonly DataLabelPosition LEFT = new DataLabelPosition("LEFT");
///
/// Constant OUTSIDE for DataLabelPosition
///
public static readonly DataLabelPosition OUTSIDE = new DataLabelPosition("OUTSIDE");
///
/// Constant RIGHT for DataLabelPosition
///
public static readonly DataLabelPosition RIGHT = new DataLabelPosition("RIGHT");
///
/// Constant TOP for DataLabelPosition
///
public static readonly DataLabelPosition TOP = new DataLabelPosition("TOP");
///
/// 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 DataLabelPosition(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 DataLabelPosition 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 DataLabelPosition(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataSetFilterAttribute.
///
public class DataSetFilterAttribute : ConstantClass
{
///
/// Constant DATASET_NAME for DataSetFilterAttribute
///
public static readonly DataSetFilterAttribute DATASET_NAME = new DataSetFilterAttribute("DATASET_NAME");
///
/// Constant DIRECT_QUICKSIGHT_OWNER for DataSetFilterAttribute
///
public static readonly DataSetFilterAttribute DIRECT_QUICKSIGHT_OWNER = new DataSetFilterAttribute("DIRECT_QUICKSIGHT_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_SOLE_OWNER for DataSetFilterAttribute
///
public static readonly DataSetFilterAttribute DIRECT_QUICKSIGHT_SOLE_OWNER = new DataSetFilterAttribute("DIRECT_QUICKSIGHT_SOLE_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_VIEWER_OR_OWNER for DataSetFilterAttribute
///
public static readonly DataSetFilterAttribute DIRECT_QUICKSIGHT_VIEWER_OR_OWNER = new DataSetFilterAttribute("DIRECT_QUICKSIGHT_VIEWER_OR_OWNER");
///
/// Constant QUICKSIGHT_OWNER for DataSetFilterAttribute
///
public static readonly DataSetFilterAttribute QUICKSIGHT_OWNER = new DataSetFilterAttribute("QUICKSIGHT_OWNER");
///
/// Constant QUICKSIGHT_VIEWER_OR_OWNER for DataSetFilterAttribute
///
public static readonly DataSetFilterAttribute QUICKSIGHT_VIEWER_OR_OWNER = new DataSetFilterAttribute("QUICKSIGHT_VIEWER_OR_OWNER");
///
/// 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 DataSetFilterAttribute(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 DataSetFilterAttribute 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 DataSetFilterAttribute(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataSetImportMode.
///
public class DataSetImportMode : ConstantClass
{
///
/// Constant DIRECT_QUERY for DataSetImportMode
///
public static readonly DataSetImportMode DIRECT_QUERY = new DataSetImportMode("DIRECT_QUERY");
///
/// Constant SPICE for DataSetImportMode
///
public static readonly DataSetImportMode SPICE = new DataSetImportMode("SPICE");
///
/// 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 DataSetImportMode(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 DataSetImportMode 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 DataSetImportMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DatasetParameterValueType.
///
public class DatasetParameterValueType : ConstantClass
{
///
/// Constant MULTI_VALUED for DatasetParameterValueType
///
public static readonly DatasetParameterValueType MULTI_VALUED = new DatasetParameterValueType("MULTI_VALUED");
///
/// Constant SINGLE_VALUED for DatasetParameterValueType
///
public static readonly DatasetParameterValueType SINGLE_VALUED = new DatasetParameterValueType("SINGLE_VALUED");
///
/// 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 DatasetParameterValueType(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 DatasetParameterValueType 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 DatasetParameterValueType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataSourceErrorInfoType.
///
public class DataSourceErrorInfoType : ConstantClass
{
///
/// Constant ACCESS_DENIED for DataSourceErrorInfoType
///
public static readonly DataSourceErrorInfoType ACCESS_DENIED = new DataSourceErrorInfoType("ACCESS_DENIED");
///
/// Constant CONFLICT for DataSourceErrorInfoType
///
public static readonly DataSourceErrorInfoType CONFLICT = new DataSourceErrorInfoType("CONFLICT");
///
/// Constant COPY_SOURCE_NOT_FOUND for DataSourceErrorInfoType
///
public static readonly DataSourceErrorInfoType COPY_SOURCE_NOT_FOUND = new DataSourceErrorInfoType("COPY_SOURCE_NOT_FOUND");
///
/// Constant ENGINE_VERSION_NOT_SUPPORTED for DataSourceErrorInfoType
///
public static readonly DataSourceErrorInfoType ENGINE_VERSION_NOT_SUPPORTED = new DataSourceErrorInfoType("ENGINE_VERSION_NOT_SUPPORTED");
///
/// Constant GENERIC_SQL_FAILURE for DataSourceErrorInfoType
///
public static readonly DataSourceErrorInfoType GENERIC_SQL_FAILURE = new DataSourceErrorInfoType("GENERIC_SQL_FAILURE");
///
/// Constant TIMEOUT for DataSourceErrorInfoType
///
public static readonly DataSourceErrorInfoType TIMEOUT = new DataSourceErrorInfoType("TIMEOUT");
///
/// Constant UNKNOWN for DataSourceErrorInfoType
///
public static readonly DataSourceErrorInfoType UNKNOWN = new DataSourceErrorInfoType("UNKNOWN");
///
/// Constant UNKNOWN_HOST for DataSourceErrorInfoType
///
public static readonly DataSourceErrorInfoType UNKNOWN_HOST = new DataSourceErrorInfoType("UNKNOWN_HOST");
///
/// 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 DataSourceErrorInfoType(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 DataSourceErrorInfoType 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 DataSourceErrorInfoType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataSourceFilterAttribute.
///
public class DataSourceFilterAttribute : ConstantClass
{
///
/// Constant DATASOURCE_NAME for DataSourceFilterAttribute
///
public static readonly DataSourceFilterAttribute DATASOURCE_NAME = new DataSourceFilterAttribute("DATASOURCE_NAME");
///
/// Constant DIRECT_QUICKSIGHT_OWNER for DataSourceFilterAttribute
///
public static readonly DataSourceFilterAttribute DIRECT_QUICKSIGHT_OWNER = new DataSourceFilterAttribute("DIRECT_QUICKSIGHT_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_SOLE_OWNER for DataSourceFilterAttribute
///
public static readonly DataSourceFilterAttribute DIRECT_QUICKSIGHT_SOLE_OWNER = new DataSourceFilterAttribute("DIRECT_QUICKSIGHT_SOLE_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_VIEWER_OR_OWNER for DataSourceFilterAttribute
///
public static readonly DataSourceFilterAttribute DIRECT_QUICKSIGHT_VIEWER_OR_OWNER = new DataSourceFilterAttribute("DIRECT_QUICKSIGHT_VIEWER_OR_OWNER");
///
/// 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 DataSourceFilterAttribute(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 DataSourceFilterAttribute 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 DataSourceFilterAttribute(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataSourceType.
///
public class DataSourceType : ConstantClass
{
///
/// Constant ADOBE_ANALYTICS for DataSourceType
///
public static readonly DataSourceType ADOBE_ANALYTICS = new DataSourceType("ADOBE_ANALYTICS");
///
/// Constant AMAZON_ELASTICSEARCH for DataSourceType
///
public static readonly DataSourceType AMAZON_ELASTICSEARCH = new DataSourceType("AMAZON_ELASTICSEARCH");
///
/// Constant AMAZON_OPENSEARCH for DataSourceType
///
public static readonly DataSourceType AMAZON_OPENSEARCH = new DataSourceType("AMAZON_OPENSEARCH");
///
/// Constant ATHENA for DataSourceType
///
public static readonly DataSourceType ATHENA = new DataSourceType("ATHENA");
///
/// Constant AURORA for DataSourceType
///
public static readonly DataSourceType AURORA = new DataSourceType("AURORA");
///
/// Constant AURORA_POSTGRESQL for DataSourceType
///
public static readonly DataSourceType AURORA_POSTGRESQL = new DataSourceType("AURORA_POSTGRESQL");
///
/// Constant AWS_IOT_ANALYTICS for DataSourceType
///
public static readonly DataSourceType AWS_IOT_ANALYTICS = new DataSourceType("AWS_IOT_ANALYTICS");
///
/// Constant DATABRICKS for DataSourceType
///
public static readonly DataSourceType DATABRICKS = new DataSourceType("DATABRICKS");
///
/// Constant EXASOL for DataSourceType
///
public static readonly DataSourceType EXASOL = new DataSourceType("EXASOL");
///
/// Constant GITHUB for DataSourceType
///
public static readonly DataSourceType GITHUB = new DataSourceType("GITHUB");
///
/// Constant JIRA for DataSourceType
///
public static readonly DataSourceType JIRA = new DataSourceType("JIRA");
///
/// Constant MARIADB for DataSourceType
///
public static readonly DataSourceType MARIADB = new DataSourceType("MARIADB");
///
/// Constant MYSQL for DataSourceType
///
public static readonly DataSourceType MYSQL = new DataSourceType("MYSQL");
///
/// Constant ORACLE for DataSourceType
///
public static readonly DataSourceType ORACLE = new DataSourceType("ORACLE");
///
/// Constant POSTGRESQL for DataSourceType
///
public static readonly DataSourceType POSTGRESQL = new DataSourceType("POSTGRESQL");
///
/// Constant PRESTO for DataSourceType
///
public static readonly DataSourceType PRESTO = new DataSourceType("PRESTO");
///
/// Constant REDSHIFT for DataSourceType
///
public static readonly DataSourceType REDSHIFT = new DataSourceType("REDSHIFT");
///
/// Constant S3 for DataSourceType
///
public static readonly DataSourceType S3 = new DataSourceType("S3");
///
/// Constant SALESFORCE for DataSourceType
///
public static readonly DataSourceType SALESFORCE = new DataSourceType("SALESFORCE");
///
/// Constant SERVICENOW for DataSourceType
///
public static readonly DataSourceType SERVICENOW = new DataSourceType("SERVICENOW");
///
/// Constant SNOWFLAKE for DataSourceType
///
public static readonly DataSourceType SNOWFLAKE = new DataSourceType("SNOWFLAKE");
///
/// Constant SPARK for DataSourceType
///
public static readonly DataSourceType SPARK = new DataSourceType("SPARK");
///
/// Constant SQLSERVER for DataSourceType
///
public static readonly DataSourceType SQLSERVER = new DataSourceType("SQLSERVER");
///
/// Constant TERADATA for DataSourceType
///
public static readonly DataSourceType TERADATA = new DataSourceType("TERADATA");
///
/// Constant TIMESTREAM for DataSourceType
///
public static readonly DataSourceType TIMESTREAM = new DataSourceType("TIMESTREAM");
///
/// Constant TWITTER for DataSourceType
///
public static readonly DataSourceType TWITTER = new DataSourceType("TWITTER");
///
/// 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 DataSourceType(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 DataSourceType 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 DataSourceType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DateAggregationFunction.
///
public class DateAggregationFunction : ConstantClass
{
///
/// Constant COUNT for DateAggregationFunction
///
public static readonly DateAggregationFunction COUNT = new DateAggregationFunction("COUNT");
///
/// Constant DISTINCT_COUNT for DateAggregationFunction
///
public static readonly DateAggregationFunction DISTINCT_COUNT = new DateAggregationFunction("DISTINCT_COUNT");
///
/// Constant MAX for DateAggregationFunction
///
public static readonly DateAggregationFunction MAX = new DateAggregationFunction("MAX");
///
/// Constant MIN for DateAggregationFunction
///
public static readonly DateAggregationFunction MIN = new DateAggregationFunction("MIN");
///
/// 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 DateAggregationFunction(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 DateAggregationFunction 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 DateAggregationFunction(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DayOfWeek.
///
public class DayOfWeek : ConstantClass
{
///
/// Constant FRIDAY for DayOfWeek
///
public static readonly DayOfWeek FRIDAY = new DayOfWeek("FRIDAY");
///
/// Constant MONDAY for DayOfWeek
///
public static readonly DayOfWeek MONDAY = new DayOfWeek("MONDAY");
///
/// Constant SATURDAY for DayOfWeek
///
public static readonly DayOfWeek SATURDAY = new DayOfWeek("SATURDAY");
///
/// Constant SUNDAY for DayOfWeek
///
public static readonly DayOfWeek SUNDAY = new DayOfWeek("SUNDAY");
///
/// Constant THURSDAY for DayOfWeek
///
public static readonly DayOfWeek THURSDAY = new DayOfWeek("THURSDAY");
///
/// Constant TUESDAY for DayOfWeek
///
public static readonly DayOfWeek TUESDAY = new DayOfWeek("TUESDAY");
///
/// Constant WEDNESDAY for DayOfWeek
///
public static readonly DayOfWeek WEDNESDAY = new DayOfWeek("WEDNESDAY");
///
/// 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 DayOfWeek(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 DayOfWeek 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 DayOfWeek(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DefaultAggregation.
///
public class DefaultAggregation : ConstantClass
{
///
/// Constant AVERAGE for DefaultAggregation
///
public static readonly DefaultAggregation AVERAGE = new DefaultAggregation("AVERAGE");
///
/// Constant COUNT for DefaultAggregation
///
public static readonly DefaultAggregation COUNT = new DefaultAggregation("COUNT");
///
/// Constant DISTINCT_COUNT for DefaultAggregation
///
public static readonly DefaultAggregation DISTINCT_COUNT = new DefaultAggregation("DISTINCT_COUNT");
///
/// Constant MAX for DefaultAggregation
///
public static readonly DefaultAggregation MAX = new DefaultAggregation("MAX");
///
/// Constant MIN for DefaultAggregation
///
public static readonly DefaultAggregation MIN = new DefaultAggregation("MIN");
///
/// Constant SUM for DefaultAggregation
///
public static readonly DefaultAggregation SUM = new DefaultAggregation("SUM");
///
/// 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 DefaultAggregation(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 DefaultAggregation 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 DefaultAggregation(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DisplayFormat.
///
public class DisplayFormat : ConstantClass
{
///
/// Constant AUTO for DisplayFormat
///
public static readonly DisplayFormat AUTO = new DisplayFormat("AUTO");
///
/// Constant CURRENCY for DisplayFormat
///
public static readonly DisplayFormat CURRENCY = new DisplayFormat("CURRENCY");
///
/// Constant DATE for DisplayFormat
///
public static readonly DisplayFormat DATE = new DisplayFormat("DATE");
///
/// Constant NUMBER for DisplayFormat
///
public static readonly DisplayFormat NUMBER = new DisplayFormat("NUMBER");
///
/// Constant PERCENT for DisplayFormat
///
public static readonly DisplayFormat PERCENT = new DisplayFormat("PERCENT");
///
/// Constant STRING for DisplayFormat
///
public static readonly DisplayFormat STRING = new DisplayFormat("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 DisplayFormat(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 DisplayFormat 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 DisplayFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Edition.
///
public class Edition : ConstantClass
{
///
/// Constant ENTERPRISE for Edition
///
public static readonly Edition ENTERPRISE = new Edition("ENTERPRISE");
///
/// Constant ENTERPRISE_AND_Q for Edition
///
public static readonly Edition ENTERPRISE_AND_Q = new Edition("ENTERPRISE_AND_Q");
///
/// Constant STANDARD for Edition
///
public static readonly Edition STANDARD = new Edition("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 Edition(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 Edition 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 Edition(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type EmbeddingIdentityType.
///
public class EmbeddingIdentityType : ConstantClass
{
///
/// Constant ANONYMOUS for EmbeddingIdentityType
///
public static readonly EmbeddingIdentityType ANONYMOUS = new EmbeddingIdentityType("ANONYMOUS");
///
/// Constant IAM for EmbeddingIdentityType
///
public static readonly EmbeddingIdentityType IAM = new EmbeddingIdentityType("IAM");
///
/// Constant QUICKSIGHT for EmbeddingIdentityType
///
public static readonly EmbeddingIdentityType QUICKSIGHT = new EmbeddingIdentityType("QUICKSIGHT");
///
/// 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 EmbeddingIdentityType(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 EmbeddingIdentityType 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 EmbeddingIdentityType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ExceptionResourceType.
///
public class ExceptionResourceType : ConstantClass
{
///
/// Constant ACCOUNT_SETTINGS for ExceptionResourceType
///
public static readonly ExceptionResourceType ACCOUNT_SETTINGS = new ExceptionResourceType("ACCOUNT_SETTINGS");
///
/// Constant DATA_SET for ExceptionResourceType
///
public static readonly ExceptionResourceType DATA_SET = new ExceptionResourceType("DATA_SET");
///
/// Constant DATA_SOURCE for ExceptionResourceType
///
public static readonly ExceptionResourceType DATA_SOURCE = new ExceptionResourceType("DATA_SOURCE");
///
/// Constant GROUP for ExceptionResourceType
///
public static readonly ExceptionResourceType GROUP = new ExceptionResourceType("GROUP");
///
/// Constant IAMPOLICY_ASSIGNMENT for ExceptionResourceType
///
public static readonly ExceptionResourceType IAMPOLICY_ASSIGNMENT = new ExceptionResourceType("IAMPOLICY_ASSIGNMENT");
///
/// Constant INGESTION for ExceptionResourceType
///
public static readonly ExceptionResourceType INGESTION = new ExceptionResourceType("INGESTION");
///
/// Constant NAMESPACE for ExceptionResourceType
///
public static readonly ExceptionResourceType NAMESPACE = new ExceptionResourceType("NAMESPACE");
///
/// Constant USER for ExceptionResourceType
///
public static readonly ExceptionResourceType USER = new ExceptionResourceType("USER");
///
/// Constant VPC_CONNECTION for ExceptionResourceType
///
public static readonly ExceptionResourceType VPC_CONNECTION = new ExceptionResourceType("VPC_CONNECTION");
///
/// 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 ExceptionResourceType(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 ExceptionResourceType 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 ExceptionResourceType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FileFormat.
///
public class FileFormat : ConstantClass
{
///
/// Constant CLF for FileFormat
///
public static readonly FileFormat CLF = new FileFormat("CLF");
///
/// Constant CSV for FileFormat
///
public static readonly FileFormat CSV = new FileFormat("CSV");
///
/// Constant ELF for FileFormat
///
public static readonly FileFormat ELF = new FileFormat("ELF");
///
/// Constant JSON for FileFormat
///
public static readonly FileFormat JSON = new FileFormat("JSON");
///
/// Constant TSV for FileFormat
///
public static readonly FileFormat TSV = new FileFormat("TSV");
///
/// Constant XLSX for FileFormat
///
public static readonly FileFormat XLSX = new FileFormat("XLSX");
///
/// 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 FileFormat(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 FileFormat 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 FileFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FilterClass.
///
public class FilterClass : ConstantClass
{
///
/// Constant CONDITIONAL_VALUE_FILTER for FilterClass
///
public static readonly FilterClass CONDITIONAL_VALUE_FILTER = new FilterClass("CONDITIONAL_VALUE_FILTER");
///
/// Constant ENFORCED_VALUE_FILTER for FilterClass
///
public static readonly FilterClass ENFORCED_VALUE_FILTER = new FilterClass("ENFORCED_VALUE_FILTER");
///
/// Constant NAMED_VALUE_FILTER for FilterClass
///
public static readonly FilterClass NAMED_VALUE_FILTER = new FilterClass("NAMED_VALUE_FILTER");
///
/// 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 FilterClass(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 FilterClass 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 FilterClass(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FilterNullOption.
///
public class FilterNullOption : ConstantClass
{
///
/// Constant ALL_VALUES for FilterNullOption
///
public static readonly FilterNullOption ALL_VALUES = new FilterNullOption("ALL_VALUES");
///
/// Constant NON_NULLS_ONLY for FilterNullOption
///
public static readonly FilterNullOption NON_NULLS_ONLY = new FilterNullOption("NON_NULLS_ONLY");
///
/// Constant NULLS_ONLY for FilterNullOption
///
public static readonly FilterNullOption NULLS_ONLY = new FilterNullOption("NULLS_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 FilterNullOption(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 FilterNullOption 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 FilterNullOption(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FilterOperator.
///
public class FilterOperator : ConstantClass
{
///
/// Constant StringEquals for FilterOperator
///
public static readonly FilterOperator StringEquals = new FilterOperator("StringEquals");
///
/// Constant StringLike for FilterOperator
///
public static readonly FilterOperator StringLike = new FilterOperator("StringLike");
///
/// 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 FilterVisualScope.
///
public class FilterVisualScope : ConstantClass
{
///
/// Constant ALL_VISUALS for FilterVisualScope
///
public static readonly FilterVisualScope ALL_VISUALS = new FilterVisualScope("ALL_VISUALS");
///
/// Constant SELECTED_VISUALS for FilterVisualScope
///
public static readonly FilterVisualScope SELECTED_VISUALS = new FilterVisualScope("SELECTED_VISUALS");
///
/// 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 FilterVisualScope(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 FilterVisualScope 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 FilterVisualScope(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FolderFilterAttribute.
///
public class FolderFilterAttribute : ConstantClass
{
///
/// Constant DIRECT_QUICKSIGHT_OWNER for FolderFilterAttribute
///
public static readonly FolderFilterAttribute DIRECT_QUICKSIGHT_OWNER = new FolderFilterAttribute("DIRECT_QUICKSIGHT_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_SOLE_OWNER for FolderFilterAttribute
///
public static readonly FolderFilterAttribute DIRECT_QUICKSIGHT_SOLE_OWNER = new FolderFilterAttribute("DIRECT_QUICKSIGHT_SOLE_OWNER");
///
/// Constant DIRECT_QUICKSIGHT_VIEWER_OR_OWNER for FolderFilterAttribute
///
public static readonly FolderFilterAttribute DIRECT_QUICKSIGHT_VIEWER_OR_OWNER = new FolderFilterAttribute("DIRECT_QUICKSIGHT_VIEWER_OR_OWNER");
///
/// Constant FOLDER_NAME for FolderFilterAttribute
///
public static readonly FolderFilterAttribute FOLDER_NAME = new FolderFilterAttribute("FOLDER_NAME");
///
/// Constant PARENT_FOLDER_ARN for FolderFilterAttribute
///
public static readonly FolderFilterAttribute PARENT_FOLDER_ARN = new FolderFilterAttribute("PARENT_FOLDER_ARN");
///
/// Constant QUICKSIGHT_OWNER for FolderFilterAttribute
///
public static readonly FolderFilterAttribute QUICKSIGHT_OWNER = new FolderFilterAttribute("QUICKSIGHT_OWNER");
///
/// Constant QUICKSIGHT_VIEWER_OR_OWNER for FolderFilterAttribute
///
public static readonly FolderFilterAttribute QUICKSIGHT_VIEWER_OR_OWNER = new FolderFilterAttribute("QUICKSIGHT_VIEWER_OR_OWNER");
///
/// 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 FolderFilterAttribute(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 FolderFilterAttribute 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 FolderFilterAttribute(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FolderType.
///
public class FolderType : ConstantClass
{
///
/// Constant SHARED for FolderType
///
public static readonly FolderType SHARED = new FolderType("SHARED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public FolderType(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 FolderType 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 FolderType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FontDecoration.
///
public class FontDecoration : ConstantClass
{
///
/// Constant NONE for FontDecoration
///
public static readonly FontDecoration NONE = new FontDecoration("NONE");
///
/// Constant UNDERLINE for FontDecoration
///
public static readonly FontDecoration UNDERLINE = new FontDecoration("UNDERLINE");
///
/// 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 FontDecoration(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 FontDecoration 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 FontDecoration(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FontStyle.
///
public class FontStyle : ConstantClass
{
///
/// Constant ITALIC for FontStyle
///
public static readonly FontStyle ITALIC = new FontStyle("ITALIC");
///
/// Constant NORMAL for FontStyle
///
public static readonly FontStyle NORMAL = new FontStyle("NORMAL");
///
/// 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 FontStyle(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 FontStyle 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 FontStyle(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FontWeightName.
///
public class FontWeightName : ConstantClass
{
///
/// Constant BOLD for FontWeightName
///
public static readonly FontWeightName BOLD = new FontWeightName("BOLD");
///
/// Constant NORMAL for FontWeightName
///
public static readonly FontWeightName NORMAL = new FontWeightName("NORMAL");
///
/// 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 FontWeightName(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 FontWeightName 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 FontWeightName(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ForecastComputationSeasonality.
///
public class ForecastComputationSeasonality : ConstantClass
{
///
/// Constant AUTOMATIC for ForecastComputationSeasonality
///
public static readonly ForecastComputationSeasonality AUTOMATIC = new ForecastComputationSeasonality("AUTOMATIC");
///
/// Constant CUSTOM for ForecastComputationSeasonality
///
public static readonly ForecastComputationSeasonality CUSTOM = new ForecastComputationSeasonality("CUSTOM");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public ForecastComputationSeasonality(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 ForecastComputationSeasonality 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 ForecastComputationSeasonality(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FunnelChartMeasureDataLabelStyle.
///
public class FunnelChartMeasureDataLabelStyle : ConstantClass
{
///
/// Constant PERCENTAGE_BY_FIRST_STAGE for FunnelChartMeasureDataLabelStyle
///
public static readonly FunnelChartMeasureDataLabelStyle PERCENTAGE_BY_FIRST_STAGE = new FunnelChartMeasureDataLabelStyle("PERCENTAGE_BY_FIRST_STAGE");
///
/// Constant PERCENTAGE_BY_PREVIOUS_STAGE for FunnelChartMeasureDataLabelStyle
///
public static readonly FunnelChartMeasureDataLabelStyle PERCENTAGE_BY_PREVIOUS_STAGE = new FunnelChartMeasureDataLabelStyle("PERCENTAGE_BY_PREVIOUS_STAGE");
///
/// Constant VALUE_AND_PERCENTAGE_BY_FIRST_STAGE for FunnelChartMeasureDataLabelStyle
///
public static readonly FunnelChartMeasureDataLabelStyle VALUE_AND_PERCENTAGE_BY_FIRST_STAGE = new FunnelChartMeasureDataLabelStyle("VALUE_AND_PERCENTAGE_BY_FIRST_STAGE");
///
/// Constant VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE for FunnelChartMeasureDataLabelStyle
///
public static readonly FunnelChartMeasureDataLabelStyle VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE = new FunnelChartMeasureDataLabelStyle("VALUE_AND_PERCENTAGE_BY_PREVIOUS_STAGE");
///
/// Constant VALUE_ONLY for FunnelChartMeasureDataLabelStyle
///
public static readonly FunnelChartMeasureDataLabelStyle VALUE_ONLY = new FunnelChartMeasureDataLabelStyle("VALUE_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 FunnelChartMeasureDataLabelStyle(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 FunnelChartMeasureDataLabelStyle 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 FunnelChartMeasureDataLabelStyle(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type GeoSpatialCountryCode.
///
public class GeoSpatialCountryCode : ConstantClass
{
///
/// Constant US for GeoSpatialCountryCode
///
public static readonly GeoSpatialCountryCode US = new GeoSpatialCountryCode("US");
///
/// 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 GeoSpatialCountryCode(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 GeoSpatialCountryCode 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 GeoSpatialCountryCode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type GeoSpatialDataRole.
///
public class GeoSpatialDataRole : ConstantClass
{
///
/// Constant CITY for GeoSpatialDataRole
///
public static readonly GeoSpatialDataRole CITY = new GeoSpatialDataRole("CITY");
///
/// Constant COUNTRY for GeoSpatialDataRole
///
public static readonly GeoSpatialDataRole COUNTRY = new GeoSpatialDataRole("COUNTRY");
///
/// Constant COUNTY for GeoSpatialDataRole
///
public static readonly GeoSpatialDataRole COUNTY = new GeoSpatialDataRole("COUNTY");
///
/// Constant LATITUDE for GeoSpatialDataRole
///
public static readonly GeoSpatialDataRole LATITUDE = new GeoSpatialDataRole("LATITUDE");
///
/// Constant LONGITUDE for GeoSpatialDataRole
///
public static readonly GeoSpatialDataRole LONGITUDE = new GeoSpatialDataRole("LONGITUDE");
///
/// Constant POSTCODE for GeoSpatialDataRole
///
public static readonly GeoSpatialDataRole POSTCODE = new GeoSpatialDataRole("POSTCODE");
///
/// Constant STATE for GeoSpatialDataRole
///
public static readonly GeoSpatialDataRole STATE = new GeoSpatialDataRole("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 GeoSpatialDataRole(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 GeoSpatialDataRole 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 GeoSpatialDataRole(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type GeospatialSelectedPointStyle.
///
public class GeospatialSelectedPointStyle : ConstantClass
{
///
/// Constant CLUSTER for GeospatialSelectedPointStyle
///
public static readonly GeospatialSelectedPointStyle CLUSTER = new GeospatialSelectedPointStyle("CLUSTER");
///
/// Constant HEATMAP for GeospatialSelectedPointStyle
///
public static readonly GeospatialSelectedPointStyle HEATMAP = new GeospatialSelectedPointStyle("HEATMAP");
///
/// Constant POINT for GeospatialSelectedPointStyle
///
public static readonly GeospatialSelectedPointStyle POINT = new GeospatialSelectedPointStyle("POINT");
///
/// 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 GeospatialSelectedPointStyle(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 GeospatialSelectedPointStyle 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 GeospatialSelectedPointStyle(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type GroupFilterAttribute.
///
public class GroupFilterAttribute : ConstantClass
{
///
/// Constant GROUP_NAME for GroupFilterAttribute
///
public static readonly GroupFilterAttribute GROUP_NAME = new GroupFilterAttribute("GROUP_NAME");
///
/// 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 GroupFilterAttribute(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 GroupFilterAttribute 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 GroupFilterAttribute(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type GroupFilterOperator.
///
public class GroupFilterOperator : ConstantClass
{
///
/// Constant StartsWith for GroupFilterOperator
///
public static readonly GroupFilterOperator StartsWith = new GroupFilterOperator("StartsWith");
///
/// 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 GroupFilterOperator(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 GroupFilterOperator 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 GroupFilterOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type HistogramBinType.
///
public class HistogramBinType : ConstantClass
{
///
/// Constant BIN_COUNT for HistogramBinType
///
public static readonly HistogramBinType BIN_COUNT = new HistogramBinType("BIN_COUNT");
///
/// Constant BIN_WIDTH for HistogramBinType
///
public static readonly HistogramBinType BIN_WIDTH = new HistogramBinType("BIN_WIDTH");
///
/// 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 HistogramBinType(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 HistogramBinType 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 HistogramBinType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type HorizontalTextAlignment.
///
public class HorizontalTextAlignment : ConstantClass
{
///
/// Constant AUTO for HorizontalTextAlignment
///
public static readonly HorizontalTextAlignment AUTO = new HorizontalTextAlignment("AUTO");
///
/// Constant CENTER for HorizontalTextAlignment
///
public static readonly HorizontalTextAlignment CENTER = new HorizontalTextAlignment("CENTER");
///
/// Constant LEFT for HorizontalTextAlignment
///
public static readonly HorizontalTextAlignment LEFT = new HorizontalTextAlignment("LEFT");
///
/// Constant RIGHT for HorizontalTextAlignment
///
public static readonly HorizontalTextAlignment RIGHT = new HorizontalTextAlignment("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 HorizontalTextAlignment(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 HorizontalTextAlignment 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 HorizontalTextAlignment(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Icon.
///
public class Icon : ConstantClass
{
///
/// Constant ARROW_DOWN for Icon
///
public static readonly Icon ARROW_DOWN = new Icon("ARROW_DOWN");
///
/// Constant ARROW_DOWN_LEFT for Icon
///
public static readonly Icon ARROW_DOWN_LEFT = new Icon("ARROW_DOWN_LEFT");
///
/// Constant ARROW_DOWN_RIGHT for Icon
///
public static readonly Icon ARROW_DOWN_RIGHT = new Icon("ARROW_DOWN_RIGHT");
///
/// Constant ARROW_LEFT for Icon
///
public static readonly Icon ARROW_LEFT = new Icon("ARROW_LEFT");
///
/// Constant ARROW_RIGHT for Icon
///
public static readonly Icon ARROW_RIGHT = new Icon("ARROW_RIGHT");
///
/// Constant ARROW_UP for Icon
///
public static readonly Icon ARROW_UP = new Icon("ARROW_UP");
///
/// Constant ARROW_UP_LEFT for Icon
///
public static readonly Icon ARROW_UP_LEFT = new Icon("ARROW_UP_LEFT");
///
/// Constant ARROW_UP_RIGHT for Icon
///
public static readonly Icon ARROW_UP_RIGHT = new Icon("ARROW_UP_RIGHT");
///
/// Constant CARET_DOWN for Icon
///
public static readonly Icon CARET_DOWN = new Icon("CARET_DOWN");
///
/// Constant CARET_UP for Icon
///
public static readonly Icon CARET_UP = new Icon("CARET_UP");
///
/// Constant CHECKMARK for Icon
///
public static readonly Icon CHECKMARK = new Icon("CHECKMARK");
///
/// Constant CIRCLE for Icon
///
public static readonly Icon CIRCLE = new Icon("CIRCLE");
///
/// Constant FACE_DOWN for Icon
///
public static readonly Icon FACE_DOWN = new Icon("FACE_DOWN");
///
/// Constant FACE_FLAT for Icon
///
public static readonly Icon FACE_FLAT = new Icon("FACE_FLAT");
///
/// Constant FACE_UP for Icon
///
public static readonly Icon FACE_UP = new Icon("FACE_UP");
///
/// Constant FLAG for Icon
///
public static readonly Icon FLAG = new Icon("FLAG");
///
/// Constant MINUS for Icon
///
public static readonly Icon MINUS = new Icon("MINUS");
///
/// Constant ONE_BAR for Icon
///
public static readonly Icon ONE_BAR = new Icon("ONE_BAR");
///
/// Constant PLUS for Icon
///
public static readonly Icon PLUS = new Icon("PLUS");
///
/// Constant SQUARE for Icon
///
public static readonly Icon SQUARE = new Icon("SQUARE");
///
/// Constant THREE_BAR for Icon
///
public static readonly Icon THREE_BAR = new Icon("THREE_BAR");
///
/// Constant THUMBS_DOWN for Icon
///
public static readonly Icon THUMBS_DOWN = new Icon("THUMBS_DOWN");
///
/// Constant THUMBS_UP for Icon
///
public static readonly Icon THUMBS_UP = new Icon("THUMBS_UP");
///
/// Constant TRIANGLE for Icon
///
public static readonly Icon TRIANGLE = new Icon("TRIANGLE");
///
/// Constant TWO_BAR for Icon
///
public static readonly Icon TWO_BAR = new Icon("TWO_BAR");
///
/// Constant X for Icon
///
public static readonly Icon X = new Icon("X");
///
/// 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 Icon(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 Icon 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 Icon(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type IdentityStore.
///
public class IdentityStore : ConstantClass
{
///
/// Constant QUICKSIGHT for IdentityStore
///
public static readonly IdentityStore QUICKSIGHT = new IdentityStore("QUICKSIGHT");
///
/// 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 IdentityStore(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 IdentityStore 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 IdentityStore(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type IdentityType.
///
public class IdentityType : ConstantClass
{
///
/// Constant IAM for IdentityType
///
public static readonly IdentityType IAM = new IdentityType("IAM");
///
/// Constant QUICKSIGHT for IdentityType
///
public static readonly IdentityType QUICKSIGHT = new IdentityType("QUICKSIGHT");
///
/// 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 IdentityType(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 IdentityType 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 IdentityType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type IngestionErrorType.
///
public class IngestionErrorType : ConstantClass
{
///
/// Constant ACCOUNT_CAPACITY_LIMIT_EXCEEDED for IngestionErrorType
///
public static readonly IngestionErrorType ACCOUNT_CAPACITY_LIMIT_EXCEEDED = new IngestionErrorType("ACCOUNT_CAPACITY_LIMIT_EXCEEDED");
///
/// Constant CONNECTION_FAILURE for IngestionErrorType
///
public static readonly IngestionErrorType CONNECTION_FAILURE = new IngestionErrorType("CONNECTION_FAILURE");
///
/// Constant CURSOR_NOT_ENABLED for IngestionErrorType
///
public static readonly IngestionErrorType CURSOR_NOT_ENABLED = new IngestionErrorType("CURSOR_NOT_ENABLED");
///
/// Constant CUSTOMER_ERROR for IngestionErrorType
///
public static readonly IngestionErrorType CUSTOMER_ERROR = new IngestionErrorType("CUSTOMER_ERROR");
///
/// Constant DATA_SET_DELETED for IngestionErrorType
///
public static readonly IngestionErrorType DATA_SET_DELETED = new IngestionErrorType("DATA_SET_DELETED");
///
/// Constant DATA_SET_NOT_SPICE for IngestionErrorType
///
public static readonly IngestionErrorType DATA_SET_NOT_SPICE = new IngestionErrorType("DATA_SET_NOT_SPICE");
///
/// Constant DATA_SET_SIZE_LIMIT_EXCEEDED for IngestionErrorType
///
public static readonly IngestionErrorType DATA_SET_SIZE_LIMIT_EXCEEDED = new IngestionErrorType("DATA_SET_SIZE_LIMIT_EXCEEDED");
///
/// Constant DATA_SOURCE_AUTH_FAILED for IngestionErrorType
///
public static readonly IngestionErrorType DATA_SOURCE_AUTH_FAILED = new IngestionErrorType("DATA_SOURCE_AUTH_FAILED");
///
/// Constant DATA_SOURCE_CONNECTION_FAILED for IngestionErrorType
///
public static readonly IngestionErrorType DATA_SOURCE_CONNECTION_FAILED = new IngestionErrorType("DATA_SOURCE_CONNECTION_FAILED");
///
/// Constant DATA_SOURCE_NOT_FOUND for IngestionErrorType
///
public static readonly IngestionErrorType DATA_SOURCE_NOT_FOUND = new IngestionErrorType("DATA_SOURCE_NOT_FOUND");
///
/// Constant DATA_TOLERANCE_EXCEPTION for IngestionErrorType
///
public static readonly IngestionErrorType DATA_TOLERANCE_EXCEPTION = new IngestionErrorType("DATA_TOLERANCE_EXCEPTION");
///
/// Constant DUPLICATE_COLUMN_NAMES_FOUND for IngestionErrorType
///
public static readonly IngestionErrorType DUPLICATE_COLUMN_NAMES_FOUND = new IngestionErrorType("DUPLICATE_COLUMN_NAMES_FOUND");
///
/// Constant ELASTICSEARCH_CURSOR_NOT_ENABLED for IngestionErrorType
///
public static readonly IngestionErrorType ELASTICSEARCH_CURSOR_NOT_ENABLED = new IngestionErrorType("ELASTICSEARCH_CURSOR_NOT_ENABLED");
///
/// Constant FAILURE_TO_ASSUME_ROLE for IngestionErrorType
///
public static readonly IngestionErrorType FAILURE_TO_ASSUME_ROLE = new IngestionErrorType("FAILURE_TO_ASSUME_ROLE");
///
/// Constant FAILURE_TO_PROCESS_JSON_FILE for IngestionErrorType
///
public static readonly IngestionErrorType FAILURE_TO_PROCESS_JSON_FILE = new IngestionErrorType("FAILURE_TO_PROCESS_JSON_FILE");
///
/// Constant IAM_ROLE_NOT_AVAILABLE for IngestionErrorType
///
public static readonly IngestionErrorType IAM_ROLE_NOT_AVAILABLE = new IngestionErrorType("IAM_ROLE_NOT_AVAILABLE");
///
/// Constant INGESTION_CANCELED for IngestionErrorType
///
public static readonly IngestionErrorType INGESTION_CANCELED = new IngestionErrorType("INGESTION_CANCELED");
///
/// Constant INGESTION_SUPERSEDED for IngestionErrorType
///
public static readonly IngestionErrorType INGESTION_SUPERSEDED = new IngestionErrorType("INGESTION_SUPERSEDED");
///
/// Constant INTERNAL_SERVICE_ERROR for IngestionErrorType
///
public static readonly IngestionErrorType INTERNAL_SERVICE_ERROR = new IngestionErrorType("INTERNAL_SERVICE_ERROR");
///
/// Constant INVALID_DATA_SOURCE_CONFIG for IngestionErrorType
///
public static readonly IngestionErrorType INVALID_DATA_SOURCE_CONFIG = new IngestionErrorType("INVALID_DATA_SOURCE_CONFIG");
///
/// Constant INVALID_DATAPREP_SYNTAX for IngestionErrorType
///
public static readonly IngestionErrorType INVALID_DATAPREP_SYNTAX = new IngestionErrorType("INVALID_DATAPREP_SYNTAX");
///
/// Constant INVALID_DATE_FORMAT for IngestionErrorType
///
public static readonly IngestionErrorType INVALID_DATE_FORMAT = new IngestionErrorType("INVALID_DATE_FORMAT");
///
/// Constant IOT_DATA_SET_FILE_EMPTY for IngestionErrorType
///
public static readonly IngestionErrorType IOT_DATA_SET_FILE_EMPTY = new IngestionErrorType("IOT_DATA_SET_FILE_EMPTY");
///
/// Constant IOT_FILE_NOT_FOUND for IngestionErrorType
///
public static readonly IngestionErrorType IOT_FILE_NOT_FOUND = new IngestionErrorType("IOT_FILE_NOT_FOUND");
///
/// Constant OAUTH_TOKEN_FAILURE for IngestionErrorType
///
public static readonly IngestionErrorType OAUTH_TOKEN_FAILURE = new IngestionErrorType("OAUTH_TOKEN_FAILURE");
///
/// Constant PASSWORD_AUTHENTICATION_FAILURE for IngestionErrorType
///
public static readonly IngestionErrorType PASSWORD_AUTHENTICATION_FAILURE = new IngestionErrorType("PASSWORD_AUTHENTICATION_FAILURE");
///
/// Constant PERMISSION_DENIED for IngestionErrorType
///
public static readonly IngestionErrorType PERMISSION_DENIED = new IngestionErrorType("PERMISSION_DENIED");
///
/// Constant PERMISSION_NOT_FOUND for IngestionErrorType
///
public static readonly IngestionErrorType PERMISSION_NOT_FOUND = new IngestionErrorType("PERMISSION_NOT_FOUND");
///
/// Constant QUERY_TIMEOUT for IngestionErrorType
///
public static readonly IngestionErrorType QUERY_TIMEOUT = new IngestionErrorType("QUERY_TIMEOUT");
///
/// Constant REFRESH_SUPPRESSED_BY_EDIT for IngestionErrorType
///
public static readonly IngestionErrorType REFRESH_SUPPRESSED_BY_EDIT = new IngestionErrorType("REFRESH_SUPPRESSED_BY_EDIT");
///
/// Constant ROW_SIZE_LIMIT_EXCEEDED for IngestionErrorType
///
public static readonly IngestionErrorType ROW_SIZE_LIMIT_EXCEEDED = new IngestionErrorType("ROW_SIZE_LIMIT_EXCEEDED");
///
/// Constant S3_FILE_INACCESSIBLE for IngestionErrorType
///
public static readonly IngestionErrorType S3_FILE_INACCESSIBLE = new IngestionErrorType("S3_FILE_INACCESSIBLE");
///
/// Constant S3_MANIFEST_ERROR for IngestionErrorType
///
public static readonly IngestionErrorType S3_MANIFEST_ERROR = new IngestionErrorType("S3_MANIFEST_ERROR");
///
/// Constant S3_UPLOADED_FILE_DELETED for IngestionErrorType
///
public static readonly IngestionErrorType S3_UPLOADED_FILE_DELETED = new IngestionErrorType("S3_UPLOADED_FILE_DELETED");
///
/// Constant SOURCE_API_LIMIT_EXCEEDED_FAILURE for IngestionErrorType
///
public static readonly IngestionErrorType SOURCE_API_LIMIT_EXCEEDED_FAILURE = new IngestionErrorType("SOURCE_API_LIMIT_EXCEEDED_FAILURE");
///
/// Constant SOURCE_RESOURCE_LIMIT_EXCEEDED for IngestionErrorType
///
public static readonly IngestionErrorType SOURCE_RESOURCE_LIMIT_EXCEEDED = new IngestionErrorType("SOURCE_RESOURCE_LIMIT_EXCEEDED");
///
/// Constant SPICE_TABLE_NOT_FOUND for IngestionErrorType
///
public static readonly IngestionErrorType SPICE_TABLE_NOT_FOUND = new IngestionErrorType("SPICE_TABLE_NOT_FOUND");
///
/// Constant SQL_EXCEPTION for IngestionErrorType
///
public static readonly IngestionErrorType SQL_EXCEPTION = new IngestionErrorType("SQL_EXCEPTION");
///
/// Constant SQL_INVALID_PARAMETER_VALUE for IngestionErrorType
///
public static readonly IngestionErrorType SQL_INVALID_PARAMETER_VALUE = new IngestionErrorType("SQL_INVALID_PARAMETER_VALUE");
///
/// Constant SQL_NUMERIC_OVERFLOW for IngestionErrorType
///
public static readonly IngestionErrorType SQL_NUMERIC_OVERFLOW = new IngestionErrorType("SQL_NUMERIC_OVERFLOW");
///
/// Constant SQL_SCHEMA_MISMATCH_ERROR for IngestionErrorType
///
public static readonly IngestionErrorType SQL_SCHEMA_MISMATCH_ERROR = new IngestionErrorType("SQL_SCHEMA_MISMATCH_ERROR");
///
/// Constant SQL_TABLE_NOT_FOUND for IngestionErrorType
///
public static readonly IngestionErrorType SQL_TABLE_NOT_FOUND = new IngestionErrorType("SQL_TABLE_NOT_FOUND");
///
/// Constant SSL_CERTIFICATE_VALIDATION_FAILURE for IngestionErrorType
///
public static readonly IngestionErrorType SSL_CERTIFICATE_VALIDATION_FAILURE = new IngestionErrorType("SSL_CERTIFICATE_VALIDATION_FAILURE");
///
/// Constant UNRESOLVABLE_HOST for IngestionErrorType
///
public static readonly IngestionErrorType UNRESOLVABLE_HOST = new IngestionErrorType("UNRESOLVABLE_HOST");
///
/// Constant UNROUTABLE_HOST for IngestionErrorType
///
public static readonly IngestionErrorType UNROUTABLE_HOST = new IngestionErrorType("UNROUTABLE_HOST");
///
/// 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 IngestionErrorType(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 IngestionErrorType 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 IngestionErrorType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type IngestionRequestSource.
///
public class IngestionRequestSource : ConstantClass
{
///
/// Constant MANUAL for IngestionRequestSource
///
public static readonly IngestionRequestSource MANUAL = new IngestionRequestSource("MANUAL");
///
/// Constant SCHEDULED for IngestionRequestSource
///
public static readonly IngestionRequestSource SCHEDULED = new IngestionRequestSource("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 IngestionRequestSource(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 IngestionRequestSource 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 IngestionRequestSource(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type IngestionRequestType.
///
public class IngestionRequestType : ConstantClass
{
///
/// Constant EDIT for IngestionRequestType
///
public static readonly IngestionRequestType EDIT = new IngestionRequestType("EDIT");
///
/// Constant FULL_REFRESH for IngestionRequestType
///
public static readonly IngestionRequestType FULL_REFRESH = new IngestionRequestType("FULL_REFRESH");
///
/// Constant INCREMENTAL_REFRESH for IngestionRequestType
///
public static readonly IngestionRequestType INCREMENTAL_REFRESH = new IngestionRequestType("INCREMENTAL_REFRESH");
///
/// Constant INITIAL_INGESTION for IngestionRequestType
///
public static readonly IngestionRequestType INITIAL_INGESTION = new IngestionRequestType("INITIAL_INGESTION");
///
/// 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 IngestionRequestType(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 IngestionRequestType 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 IngestionRequestType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type IngestionStatus.
///
public class IngestionStatus : ConstantClass
{
///
/// Constant CANCELLED for IngestionStatus
///
public static readonly IngestionStatus CANCELLED = new IngestionStatus("CANCELLED");
///
/// Constant COMPLETED for IngestionStatus
///
public static readonly IngestionStatus COMPLETED = new IngestionStatus("COMPLETED");
///
/// Constant FAILED for IngestionStatus
///
public static readonly IngestionStatus FAILED = new IngestionStatus("FAILED");
///
/// Constant INITIALIZED for IngestionStatus
///
public static readonly IngestionStatus INITIALIZED = new IngestionStatus("INITIALIZED");
///
/// Constant QUEUED for IngestionStatus
///
public static readonly IngestionStatus QUEUED = new IngestionStatus("QUEUED");
///
/// Constant RUNNING for IngestionStatus
///
public static readonly IngestionStatus RUNNING = new IngestionStatus("RUNNING");
///
/// 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 IngestionStatus(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 IngestionStatus 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 IngestionStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type IngestionType.
///
public class IngestionType : ConstantClass
{
///
/// Constant FULL_REFRESH for IngestionType
///
public static readonly IngestionType FULL_REFRESH = new IngestionType("FULL_REFRESH");
///
/// Constant INCREMENTAL_REFRESH for IngestionType
///
public static readonly IngestionType INCREMENTAL_REFRESH = new IngestionType("INCREMENTAL_REFRESH");
///
/// 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 IngestionType(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 IngestionType 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 IngestionType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type InputColumnDataType.
///
public class InputColumnDataType : ConstantClass
{
///
/// Constant BIT for InputColumnDataType
///
public static readonly InputColumnDataType BIT = new InputColumnDataType("BIT");
///
/// Constant BOOLEAN for InputColumnDataType
///
public static readonly InputColumnDataType BOOLEAN = new InputColumnDataType("BOOLEAN");
///
/// Constant DATETIME for InputColumnDataType
///
public static readonly InputColumnDataType DATETIME = new InputColumnDataType("DATETIME");
///
/// Constant DECIMAL for InputColumnDataType
///
public static readonly InputColumnDataType DECIMAL = new InputColumnDataType("DECIMAL");
///
/// Constant INTEGER for InputColumnDataType
///
public static readonly InputColumnDataType INTEGER = new InputColumnDataType("INTEGER");
///
/// Constant JSON for InputColumnDataType
///
public static readonly InputColumnDataType JSON = new InputColumnDataType("JSON");
///
/// Constant STRING for InputColumnDataType
///
public static readonly InputColumnDataType STRING = new InputColumnDataType("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 InputColumnDataType(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 InputColumnDataType 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 InputColumnDataType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type JoinType.
///
public class JoinType : ConstantClass
{
///
/// Constant INNER for JoinType
///
public static readonly JoinType INNER = new JoinType("INNER");
///
/// Constant LEFT for JoinType
///
public static readonly JoinType LEFT = new JoinType("LEFT");
///
/// 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 LayoutElementType.
///
public class LayoutElementType : ConstantClass
{
///
/// Constant FILTER_CONTROL for LayoutElementType
///
public static readonly LayoutElementType FILTER_CONTROL = new LayoutElementType("FILTER_CONTROL");
///
/// Constant PARAMETER_CONTROL for LayoutElementType
///
public static readonly LayoutElementType PARAMETER_CONTROL = new LayoutElementType("PARAMETER_CONTROL");
///
/// Constant TEXT_BOX for LayoutElementType
///
public static readonly LayoutElementType TEXT_BOX = new LayoutElementType("TEXT_BOX");
///
/// Constant VISUAL for LayoutElementType
///
public static readonly LayoutElementType VISUAL = new LayoutElementType("VISUAL");
///
/// 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 LayoutElementType(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 LayoutElementType 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 LayoutElementType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LegendPosition.
///
public class LegendPosition : ConstantClass
{
///
/// Constant AUTO for LegendPosition
///
public static readonly LegendPosition AUTO = new LegendPosition("AUTO");
///
/// Constant BOTTOM for LegendPosition
///
public static readonly LegendPosition BOTTOM = new LegendPosition("BOTTOM");
///
/// Constant RIGHT for LegendPosition
///
public static readonly LegendPosition RIGHT = new LegendPosition("RIGHT");
///
/// Constant TOP for LegendPosition
///
public static readonly LegendPosition TOP = new LegendPosition("TOP");
///
/// 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 LegendPosition(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 LegendPosition 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 LegendPosition(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LineChartLineStyle.
///
public class LineChartLineStyle : ConstantClass
{
///
/// Constant DASHED for LineChartLineStyle
///
public static readonly LineChartLineStyle DASHED = new LineChartLineStyle("DASHED");
///
/// Constant DOTTED for LineChartLineStyle
///
public static readonly LineChartLineStyle DOTTED = new LineChartLineStyle("DOTTED");
///
/// Constant SOLID for LineChartLineStyle
///
public static readonly LineChartLineStyle SOLID = new LineChartLineStyle("SOLID");
///
/// 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 LineChartLineStyle(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 LineChartLineStyle 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 LineChartLineStyle(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LineChartMarkerShape.
///
public class LineChartMarkerShape : ConstantClass
{
///
/// Constant CIRCLE for LineChartMarkerShape
///
public static readonly LineChartMarkerShape CIRCLE = new LineChartMarkerShape("CIRCLE");
///
/// Constant DIAMOND for LineChartMarkerShape
///
public static readonly LineChartMarkerShape DIAMOND = new LineChartMarkerShape("DIAMOND");
///
/// Constant ROUNDED_SQUARE for LineChartMarkerShape
///
public static readonly LineChartMarkerShape ROUNDED_SQUARE = new LineChartMarkerShape("ROUNDED_SQUARE");
///
/// Constant SQUARE for LineChartMarkerShape
///
public static readonly LineChartMarkerShape SQUARE = new LineChartMarkerShape("SQUARE");
///
/// Constant TRIANGLE for LineChartMarkerShape
///
public static readonly LineChartMarkerShape TRIANGLE = new LineChartMarkerShape("TRIANGLE");
///
/// 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 LineChartMarkerShape(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 LineChartMarkerShape 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 LineChartMarkerShape(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LineChartType.
///
public class LineChartType : ConstantClass
{
///
/// Constant AREA for LineChartType
///
public static readonly LineChartType AREA = new LineChartType("AREA");
///
/// Constant LINE for LineChartType
///
public static readonly LineChartType LINE = new LineChartType("LINE");
///
/// Constant STACKED_AREA for LineChartType
///
public static readonly LineChartType STACKED_AREA = new LineChartType("STACKED_AREA");
///
/// 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 LineChartType(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 LineChartType 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 LineChartType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LineInterpolation.
///
public class LineInterpolation : ConstantClass
{
///
/// Constant LINEAR for LineInterpolation
///
public static readonly LineInterpolation LINEAR = new LineInterpolation("LINEAR");
///
/// Constant SMOOTH for LineInterpolation
///
public static readonly LineInterpolation SMOOTH = new LineInterpolation("SMOOTH");
///
/// Constant STEPPED for LineInterpolation
///
public static readonly LineInterpolation STEPPED = new LineInterpolation("STEPPED");
///
/// 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 LineInterpolation(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 LineInterpolation 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 LineInterpolation(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LookbackWindowSizeUnit.
///
public class LookbackWindowSizeUnit : ConstantClass
{
///
/// Constant DAY for LookbackWindowSizeUnit
///
public static readonly LookbackWindowSizeUnit DAY = new LookbackWindowSizeUnit("DAY");
///
/// Constant HOUR for LookbackWindowSizeUnit
///
public static readonly LookbackWindowSizeUnit HOUR = new LookbackWindowSizeUnit("HOUR");
///
/// Constant WEEK for LookbackWindowSizeUnit
///
public static readonly LookbackWindowSizeUnit WEEK = new LookbackWindowSizeUnit("WEEK");
///
/// 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 LookbackWindowSizeUnit(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 LookbackWindowSizeUnit 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 LookbackWindowSizeUnit(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MapZoomMode.
///
public class MapZoomMode : ConstantClass
{
///
/// Constant AUTO for MapZoomMode
///
public static readonly MapZoomMode AUTO = new MapZoomMode("AUTO");
///
/// Constant MANUAL for MapZoomMode
///
public static readonly MapZoomMode MANUAL = new MapZoomMode("MANUAL");
///
/// 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 MapZoomMode(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 MapZoomMode 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 MapZoomMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MaximumMinimumComputationType.
///
public class MaximumMinimumComputationType : ConstantClass
{
///
/// Constant MAXIMUM for MaximumMinimumComputationType
///
public static readonly MaximumMinimumComputationType MAXIMUM = new MaximumMinimumComputationType("MAXIMUM");
///
/// Constant MINIMUM for MaximumMinimumComputationType
///
public static readonly MaximumMinimumComputationType MINIMUM = new MaximumMinimumComputationType("MINIMUM");
///
/// 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 MaximumMinimumComputationType(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 MaximumMinimumComputationType 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 MaximumMinimumComputationType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MemberType.
///
public class MemberType : ConstantClass
{
///
/// Constant ANALYSIS for MemberType
///
public static readonly MemberType ANALYSIS = new MemberType("ANALYSIS");
///
/// Constant DASHBOARD for MemberType
///
public static readonly MemberType DASHBOARD = new MemberType("DASHBOARD");
///
/// Constant DATASET for MemberType
///
public static readonly MemberType DATASET = new MemberType("DATASET");
///
/// 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 MemberType(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 MemberType 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 MemberType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MissingDataTreatmentOption.
///
public class MissingDataTreatmentOption : ConstantClass
{
///
/// Constant INTERPOLATE for MissingDataTreatmentOption
///
public static readonly MissingDataTreatmentOption INTERPOLATE = new MissingDataTreatmentOption("INTERPOLATE");
///
/// Constant SHOW_AS_BLANK for MissingDataTreatmentOption
///
public static readonly MissingDataTreatmentOption SHOW_AS_BLANK = new MissingDataTreatmentOption("SHOW_AS_BLANK");
///
/// Constant SHOW_AS_ZERO for MissingDataTreatmentOption
///
public static readonly MissingDataTreatmentOption SHOW_AS_ZERO = new MissingDataTreatmentOption("SHOW_AS_ZERO");
///
/// 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 MissingDataTreatmentOption(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 MissingDataTreatmentOption 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 MissingDataTreatmentOption(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NamedEntityAggType.
///
public class NamedEntityAggType : ConstantClass
{
///
/// Constant AVERAGE for NamedEntityAggType
///
public static readonly NamedEntityAggType AVERAGE = new NamedEntityAggType("AVERAGE");
///
/// Constant COUNT for NamedEntityAggType
///
public static readonly NamedEntityAggType COUNT = new NamedEntityAggType("COUNT");
///
/// Constant CUSTOM for NamedEntityAggType
///
public static readonly NamedEntityAggType CUSTOM = new NamedEntityAggType("CUSTOM");
///
/// Constant DISTINCT_COUNT for NamedEntityAggType
///
public static readonly NamedEntityAggType DISTINCT_COUNT = new NamedEntityAggType("DISTINCT_COUNT");
///
/// Constant MAX for NamedEntityAggType
///
public static readonly NamedEntityAggType MAX = new NamedEntityAggType("MAX");
///
/// Constant MEDIAN for NamedEntityAggType
///
public static readonly NamedEntityAggType MEDIAN = new NamedEntityAggType("MEDIAN");
///
/// Constant MIN for NamedEntityAggType
///
public static readonly NamedEntityAggType MIN = new NamedEntityAggType("MIN");
///
/// Constant PERCENTILE for NamedEntityAggType
///
public static readonly NamedEntityAggType PERCENTILE = new NamedEntityAggType("PERCENTILE");
///
/// Constant STDEV for NamedEntityAggType
///
public static readonly NamedEntityAggType STDEV = new NamedEntityAggType("STDEV");
///
/// Constant STDEVP for NamedEntityAggType
///
public static readonly NamedEntityAggType STDEVP = new NamedEntityAggType("STDEVP");
///
/// Constant SUM for NamedEntityAggType
///
public static readonly NamedEntityAggType SUM = new NamedEntityAggType("SUM");
///
/// Constant VAR for NamedEntityAggType
///
public static readonly NamedEntityAggType VAR = new NamedEntityAggType("VAR");
///
/// Constant VARP for NamedEntityAggType
///
public static readonly NamedEntityAggType VARP = new NamedEntityAggType("VARP");
///
/// 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 NamedEntityAggType(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 NamedEntityAggType 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 NamedEntityAggType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NamedFilterAggType.
///
public class NamedFilterAggType : ConstantClass
{
///
/// Constant AVERAGE for NamedFilterAggType
///
public static readonly NamedFilterAggType AVERAGE = new NamedFilterAggType("AVERAGE");
///
/// Constant COUNT for NamedFilterAggType
///
public static readonly NamedFilterAggType COUNT = new NamedFilterAggType("COUNT");
///
/// Constant DISTINCT_COUNT for NamedFilterAggType
///
public static readonly NamedFilterAggType DISTINCT_COUNT = new NamedFilterAggType("DISTINCT_COUNT");
///
/// Constant MAX for NamedFilterAggType
///
public static readonly NamedFilterAggType MAX = new NamedFilterAggType("MAX");
///
/// Constant MEDIAN for NamedFilterAggType
///
public static readonly NamedFilterAggType MEDIAN = new NamedFilterAggType("MEDIAN");
///
/// Constant MIN for NamedFilterAggType
///
public static readonly NamedFilterAggType MIN = new NamedFilterAggType("MIN");
///
/// Constant NO_AGGREGATION for NamedFilterAggType
///
public static readonly NamedFilterAggType NO_AGGREGATION = new NamedFilterAggType("NO_AGGREGATION");
///
/// Constant STDEV for NamedFilterAggType
///
public static readonly NamedFilterAggType STDEV = new NamedFilterAggType("STDEV");
///
/// Constant STDEVP for NamedFilterAggType
///
public static readonly NamedFilterAggType STDEVP = new NamedFilterAggType("STDEVP");
///
/// Constant SUM for NamedFilterAggType
///
public static readonly NamedFilterAggType SUM = new NamedFilterAggType("SUM");
///
/// Constant VAR for NamedFilterAggType
///
public static readonly NamedFilterAggType VAR = new NamedFilterAggType("VAR");
///
/// Constant VARP for NamedFilterAggType
///
public static readonly NamedFilterAggType VARP = new NamedFilterAggType("VARP");
///
/// 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 NamedFilterAggType(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 NamedFilterAggType 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 NamedFilterAggType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NamedFilterType.
///
public class NamedFilterType : ConstantClass
{
///
/// Constant CATEGORY_FILTER for NamedFilterType
///
public static readonly NamedFilterType CATEGORY_FILTER = new NamedFilterType("CATEGORY_FILTER");
///
/// Constant DATE_RANGE_FILTER for NamedFilterType
///
public static readonly NamedFilterType DATE_RANGE_FILTER = new NamedFilterType("DATE_RANGE_FILTER");
///
/// Constant NUMERIC_EQUALITY_FILTER for NamedFilterType
///
public static readonly NamedFilterType NUMERIC_EQUALITY_FILTER = new NamedFilterType("NUMERIC_EQUALITY_FILTER");
///
/// Constant NUMERIC_RANGE_FILTER for NamedFilterType
///
public static readonly NamedFilterType NUMERIC_RANGE_FILTER = new NamedFilterType("NUMERIC_RANGE_FILTER");
///
/// Constant RELATIVE_DATE_FILTER for NamedFilterType
///
public static readonly NamedFilterType RELATIVE_DATE_FILTER = new NamedFilterType("RELATIVE_DATE_FILTER");
///
/// 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 NamedFilterType(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 NamedFilterType 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 NamedFilterType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NamespaceErrorType.
///
public class NamespaceErrorType : ConstantClass
{
///
/// Constant INTERNAL_SERVICE_ERROR for NamespaceErrorType
///
public static readonly NamespaceErrorType INTERNAL_SERVICE_ERROR = new NamespaceErrorType("INTERNAL_SERVICE_ERROR");
///
/// Constant PERMISSION_DENIED for NamespaceErrorType
///
public static readonly NamespaceErrorType PERMISSION_DENIED = new NamespaceErrorType("PERMISSION_DENIED");
///
/// 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 NamespaceErrorType(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 NamespaceErrorType 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 NamespaceErrorType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NamespaceStatus.
///
public class NamespaceStatus : ConstantClass
{
///
/// Constant CREATED for NamespaceStatus
///
public static readonly NamespaceStatus CREATED = new NamespaceStatus("CREATED");
///
/// Constant CREATING for NamespaceStatus
///
public static readonly NamespaceStatus CREATING = new NamespaceStatus("CREATING");
///
/// Constant DELETING for NamespaceStatus
///
public static readonly NamespaceStatus DELETING = new NamespaceStatus("DELETING");
///
/// Constant NON_RETRYABLE_FAILURE for NamespaceStatus
///
public static readonly NamespaceStatus NON_RETRYABLE_FAILURE = new NamespaceStatus("NON_RETRYABLE_FAILURE");
///
/// Constant RETRYABLE_FAILURE for NamespaceStatus
///
public static readonly NamespaceStatus RETRYABLE_FAILURE = new NamespaceStatus("RETRYABLE_FAILURE");
///
/// 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 NamespaceStatus(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 NamespaceStatus 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 NamespaceStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NegativeValueDisplayMode.
///
public class NegativeValueDisplayMode : ConstantClass
{
///
/// Constant NEGATIVE for NegativeValueDisplayMode
///
public static readonly NegativeValueDisplayMode NEGATIVE = new NegativeValueDisplayMode("NEGATIVE");
///
/// Constant POSITIVE for NegativeValueDisplayMode
///
public static readonly NegativeValueDisplayMode POSITIVE = new NegativeValueDisplayMode("POSITIVE");
///
/// 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 NegativeValueDisplayMode(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 NegativeValueDisplayMode 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 NegativeValueDisplayMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NetworkInterfaceStatus.
///
public class NetworkInterfaceStatus : ConstantClass
{
///
/// Constant ATTACHMENT_FAILED_ROLLBACK_FAILED for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus ATTACHMENT_FAILED_ROLLBACK_FAILED = new NetworkInterfaceStatus("ATTACHMENT_FAILED_ROLLBACK_FAILED");
///
/// Constant AVAILABLE for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus AVAILABLE = new NetworkInterfaceStatus("AVAILABLE");
///
/// Constant CREATING for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus CREATING = new NetworkInterfaceStatus("CREATING");
///
/// Constant CREATION_FAILED for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus CREATION_FAILED = new NetworkInterfaceStatus("CREATION_FAILED");
///
/// Constant DELETED for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus DELETED = new NetworkInterfaceStatus("DELETED");
///
/// Constant DELETING for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus DELETING = new NetworkInterfaceStatus("DELETING");
///
/// Constant DELETION_FAILED for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus DELETION_FAILED = new NetworkInterfaceStatus("DELETION_FAILED");
///
/// Constant DELETION_SCHEDULED for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus DELETION_SCHEDULED = new NetworkInterfaceStatus("DELETION_SCHEDULED");
///
/// Constant UPDATE_FAILED for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus UPDATE_FAILED = new NetworkInterfaceStatus("UPDATE_FAILED");
///
/// Constant UPDATING for NetworkInterfaceStatus
///
public static readonly NetworkInterfaceStatus UPDATING = new NetworkInterfaceStatus("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 NetworkInterfaceStatus(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 NetworkInterfaceStatus 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 NetworkInterfaceStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NumberScale.
///
public class NumberScale : ConstantClass
{
///
/// Constant AUTO for NumberScale
///
public static readonly NumberScale AUTO = new NumberScale("AUTO");
///
/// Constant BILLIONS for NumberScale
///
public static readonly NumberScale BILLIONS = new NumberScale("BILLIONS");
///
/// Constant MILLIONS for NumberScale
///
public static readonly NumberScale MILLIONS = new NumberScale("MILLIONS");
///
/// Constant NONE for NumberScale
///
public static readonly NumberScale NONE = new NumberScale("NONE");
///
/// Constant THOUSANDS for NumberScale
///
public static readonly NumberScale THOUSANDS = new NumberScale("THOUSANDS");
///
/// Constant TRILLIONS for NumberScale
///
public static readonly NumberScale TRILLIONS = new NumberScale("TRILLIONS");
///
/// 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 NumberScale(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 NumberScale 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 NumberScale(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NumericEqualityMatchOperator.
///
public class NumericEqualityMatchOperator : ConstantClass
{
///
/// Constant DOES_NOT_EQUAL for NumericEqualityMatchOperator
///
public static readonly NumericEqualityMatchOperator DOES_NOT_EQUAL = new NumericEqualityMatchOperator("DOES_NOT_EQUAL");
///
/// Constant EQUALS for NumericEqualityMatchOperator
///
public static readonly NumericEqualityMatchOperator EQUALS = new NumericEqualityMatchOperator("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 NumericEqualityMatchOperator(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 NumericEqualityMatchOperator 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 NumericEqualityMatchOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NumericFilterSelectAllOptions.
///
public class NumericFilterSelectAllOptions : ConstantClass
{
///
/// Constant FILTER_ALL_VALUES for NumericFilterSelectAllOptions
///
public static readonly NumericFilterSelectAllOptions FILTER_ALL_VALUES = new NumericFilterSelectAllOptions("FILTER_ALL_VALUES");
///
/// 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 NumericFilterSelectAllOptions(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 NumericFilterSelectAllOptions 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 NumericFilterSelectAllOptions(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type NumericSeparatorSymbol.
///
public class NumericSeparatorSymbol : ConstantClass
{
///
/// Constant COMMA for NumericSeparatorSymbol
///
public static readonly NumericSeparatorSymbol COMMA = new NumericSeparatorSymbol("COMMA");
///
/// Constant DOT for NumericSeparatorSymbol
///
public static readonly NumericSeparatorSymbol DOT = new NumericSeparatorSymbol("DOT");
///
/// Constant SPACE for NumericSeparatorSymbol
///
public static readonly NumericSeparatorSymbol SPACE = new NumericSeparatorSymbol("SPACE");
///
/// 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 NumericSeparatorSymbol(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 NumericSeparatorSymbol 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 NumericSeparatorSymbol(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type OtherCategories.
///
public class OtherCategories : ConstantClass
{
///
/// Constant EXCLUDE for OtherCategories
///
public static readonly OtherCategories EXCLUDE = new OtherCategories("EXCLUDE");
///
/// Constant INCLUDE for OtherCategories
///
public static readonly OtherCategories INCLUDE = new OtherCategories("INCLUDE");
///
/// 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 OtherCategories(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 OtherCategories 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 OtherCategories(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PanelBorderStyle.
///
public class PanelBorderStyle : ConstantClass
{
///
/// Constant DASHED for PanelBorderStyle
///
public static readonly PanelBorderStyle DASHED = new PanelBorderStyle("DASHED");
///
/// Constant DOTTED for PanelBorderStyle
///
public static readonly PanelBorderStyle DOTTED = new PanelBorderStyle("DOTTED");
///
/// Constant SOLID for PanelBorderStyle
///
public static readonly PanelBorderStyle SOLID = new PanelBorderStyle("SOLID");
///
/// 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 PanelBorderStyle(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 PanelBorderStyle 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 PanelBorderStyle(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PaperOrientation.
///
public class PaperOrientation : ConstantClass
{
///
/// Constant LANDSCAPE for PaperOrientation
///
public static readonly PaperOrientation LANDSCAPE = new PaperOrientation("LANDSCAPE");
///
/// Constant PORTRAIT for PaperOrientation
///
public static readonly PaperOrientation PORTRAIT = new PaperOrientation("PORTRAIT");
///
/// 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 PaperOrientation(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 PaperOrientation 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 PaperOrientation(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PaperSize.
///
public class PaperSize : ConstantClass
{
///
/// Constant A0 for PaperSize
///
public static readonly PaperSize A0 = new PaperSize("A0");
///
/// Constant A1 for PaperSize
///
public static readonly PaperSize A1 = new PaperSize("A1");
///
/// Constant A2 for PaperSize
///
public static readonly PaperSize A2 = new PaperSize("A2");
///
/// Constant A3 for PaperSize
///
public static readonly PaperSize A3 = new PaperSize("A3");
///
/// Constant A4 for PaperSize
///
public static readonly PaperSize A4 = new PaperSize("A4");
///
/// Constant A5 for PaperSize
///
public static readonly PaperSize A5 = new PaperSize("A5");
///
/// Constant JIS_B4 for PaperSize
///
public static readonly PaperSize JIS_B4 = new PaperSize("JIS_B4");
///
/// Constant JIS_B5 for PaperSize
///
public static readonly PaperSize JIS_B5 = new PaperSize("JIS_B5");
///
/// Constant US_LEGAL for PaperSize
///
public static readonly PaperSize US_LEGAL = new PaperSize("US_LEGAL");
///
/// Constant US_LETTER for PaperSize
///
public static readonly PaperSize US_LETTER = new PaperSize("US_LETTER");
///
/// Constant US_TABLOID_LEDGER for PaperSize
///
public static readonly PaperSize US_TABLOID_LEDGER = new PaperSize("US_TABLOID_LEDGER");
///
/// 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 PaperSize(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 PaperSize 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 PaperSize(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ParameterValueType.
///
public class ParameterValueType : ConstantClass
{
///
/// Constant MULTI_VALUED for ParameterValueType
///
public static readonly ParameterValueType MULTI_VALUED = new ParameterValueType("MULTI_VALUED");
///
/// Constant SINGLE_VALUED for ParameterValueType
///
public static readonly ParameterValueType SINGLE_VALUED = new ParameterValueType("SINGLE_VALUED");
///
/// 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 ParameterValueType(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 ParameterValueType 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 ParameterValueType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PivotTableConditionalFormattingScopeRole.
///
public class PivotTableConditionalFormattingScopeRole : ConstantClass
{
///
/// Constant FIELD for PivotTableConditionalFormattingScopeRole
///
public static readonly PivotTableConditionalFormattingScopeRole FIELD = new PivotTableConditionalFormattingScopeRole("FIELD");
///
/// Constant FIELD_TOTAL for PivotTableConditionalFormattingScopeRole
///
public static readonly PivotTableConditionalFormattingScopeRole FIELD_TOTAL = new PivotTableConditionalFormattingScopeRole("FIELD_TOTAL");
///
/// Constant GRAND_TOTAL for PivotTableConditionalFormattingScopeRole
///
public static readonly PivotTableConditionalFormattingScopeRole GRAND_TOTAL = new PivotTableConditionalFormattingScopeRole("GRAND_TOTAL");
///
/// 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 PivotTableConditionalFormattingScopeRole(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 PivotTableConditionalFormattingScopeRole 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 PivotTableConditionalFormattingScopeRole(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PivotTableFieldCollapseState.
///
public class PivotTableFieldCollapseState : ConstantClass
{
///
/// Constant COLLAPSED for PivotTableFieldCollapseState
///
public static readonly PivotTableFieldCollapseState COLLAPSED = new PivotTableFieldCollapseState("COLLAPSED");
///
/// Constant EXPANDED for PivotTableFieldCollapseState
///
public static readonly PivotTableFieldCollapseState EXPANDED = new PivotTableFieldCollapseState("EXPANDED");
///
/// 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 PivotTableFieldCollapseState(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 PivotTableFieldCollapseState 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 PivotTableFieldCollapseState(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PivotTableMetricPlacement.
///
public class PivotTableMetricPlacement : ConstantClass
{
///
/// Constant COLUMN for PivotTableMetricPlacement
///
public static readonly PivotTableMetricPlacement COLUMN = new PivotTableMetricPlacement("COLUMN");
///
/// Constant ROW for PivotTableMetricPlacement
///
public static readonly PivotTableMetricPlacement ROW = new PivotTableMetricPlacement("ROW");
///
/// 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 PivotTableMetricPlacement(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 PivotTableMetricPlacement 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 PivotTableMetricPlacement(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PivotTableSubtotalLevel.
///
public class PivotTableSubtotalLevel : ConstantClass
{
///
/// Constant ALL for PivotTableSubtotalLevel
///
public static readonly PivotTableSubtotalLevel ALL = new PivotTableSubtotalLevel("ALL");
///
/// Constant CUSTOM for PivotTableSubtotalLevel
///
public static readonly PivotTableSubtotalLevel CUSTOM = new PivotTableSubtotalLevel("CUSTOM");
///
/// Constant LAST for PivotTableSubtotalLevel
///
public static readonly PivotTableSubtotalLevel LAST = new PivotTableSubtotalLevel("LAST");
///
/// 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 PivotTableSubtotalLevel(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 PivotTableSubtotalLevel 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 PivotTableSubtotalLevel(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PrimaryValueDisplayType.
///
public class PrimaryValueDisplayType : ConstantClass
{
///
/// Constant ACTUAL for PrimaryValueDisplayType
///
public static readonly PrimaryValueDisplayType ACTUAL = new PrimaryValueDisplayType("ACTUAL");
///
/// Constant COMPARISON for PrimaryValueDisplayType
///
public static readonly PrimaryValueDisplayType COMPARISON = new PrimaryValueDisplayType("COMPARISON");
///
/// Constant HIDDEN for PrimaryValueDisplayType
///
public static readonly PrimaryValueDisplayType HIDDEN = new PrimaryValueDisplayType("HIDDEN");
///
/// 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 PrimaryValueDisplayType(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 PrimaryValueDisplayType 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 PrimaryValueDisplayType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PropertyRole.
///
public class PropertyRole : ConstantClass
{
///
/// Constant ID for PropertyRole
///
public static readonly PropertyRole ID = new PropertyRole("ID");
///
/// Constant PRIMARY for PropertyRole
///
public static readonly PropertyRole PRIMARY = new PropertyRole("PRIMARY");
///
/// 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 PropertyRole(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 PropertyRole 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 PropertyRole(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PropertyUsage.
///
public class PropertyUsage : ConstantClass
{
///
/// Constant DIMENSION for PropertyUsage
///
public static readonly PropertyUsage DIMENSION = new PropertyUsage("DIMENSION");
///
/// Constant INHERIT for PropertyUsage
///
public static readonly PropertyUsage INHERIT = new PropertyUsage("INHERIT");
///
/// Constant MEASURE for PropertyUsage
///
public static readonly PropertyUsage MEASURE = new PropertyUsage("MEASURE");
///
/// 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 PropertyUsage(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 PropertyUsage 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 PropertyUsage(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RadarChartAxesRangeScale.
///
public class RadarChartAxesRangeScale : ConstantClass
{
///
/// Constant AUTO for RadarChartAxesRangeScale
///
public static readonly RadarChartAxesRangeScale AUTO = new RadarChartAxesRangeScale("AUTO");
///
/// Constant INDEPENDENT for RadarChartAxesRangeScale
///
public static readonly RadarChartAxesRangeScale INDEPENDENT = new RadarChartAxesRangeScale("INDEPENDENT");
///
/// Constant SHARED for RadarChartAxesRangeScale
///
public static readonly RadarChartAxesRangeScale SHARED = new RadarChartAxesRangeScale("SHARED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public RadarChartAxesRangeScale(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 RadarChartAxesRangeScale 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 RadarChartAxesRangeScale(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RadarChartShape.
///
public class RadarChartShape : ConstantClass
{
///
/// Constant CIRCLE for RadarChartShape
///
public static readonly RadarChartShape CIRCLE = new RadarChartShape("CIRCLE");
///
/// Constant POLYGON for RadarChartShape
///
public static readonly RadarChartShape POLYGON = new RadarChartShape("POLYGON");
///
/// 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 RadarChartShape(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 RadarChartShape 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 RadarChartShape(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ReferenceLineLabelHorizontalPosition.
///
public class ReferenceLineLabelHorizontalPosition : ConstantClass
{
///
/// Constant CENTER for ReferenceLineLabelHorizontalPosition
///
public static readonly ReferenceLineLabelHorizontalPosition CENTER = new ReferenceLineLabelHorizontalPosition("CENTER");
///
/// Constant LEFT for ReferenceLineLabelHorizontalPosition
///
public static readonly ReferenceLineLabelHorizontalPosition LEFT = new ReferenceLineLabelHorizontalPosition("LEFT");
///
/// Constant RIGHT for ReferenceLineLabelHorizontalPosition
///
public static readonly ReferenceLineLabelHorizontalPosition RIGHT = new ReferenceLineLabelHorizontalPosition("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 ReferenceLineLabelHorizontalPosition(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 ReferenceLineLabelHorizontalPosition 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 ReferenceLineLabelHorizontalPosition(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ReferenceLineLabelVerticalPosition.
///
public class ReferenceLineLabelVerticalPosition : ConstantClass
{
///
/// Constant ABOVE for ReferenceLineLabelVerticalPosition
///
public static readonly ReferenceLineLabelVerticalPosition ABOVE = new ReferenceLineLabelVerticalPosition("ABOVE");
///
/// Constant BELOW for ReferenceLineLabelVerticalPosition
///
public static readonly ReferenceLineLabelVerticalPosition BELOW = new ReferenceLineLabelVerticalPosition("BELOW");
///
/// 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 ReferenceLineLabelVerticalPosition(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 ReferenceLineLabelVerticalPosition 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 ReferenceLineLabelVerticalPosition(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ReferenceLinePatternType.
///
public class ReferenceLinePatternType : ConstantClass
{
///
/// Constant DASHED for ReferenceLinePatternType
///
public static readonly ReferenceLinePatternType DASHED = new ReferenceLinePatternType("DASHED");
///
/// Constant DOTTED for ReferenceLinePatternType
///
public static readonly ReferenceLinePatternType DOTTED = new ReferenceLinePatternType("DOTTED");
///
/// Constant SOLID for ReferenceLinePatternType
///
public static readonly ReferenceLinePatternType SOLID = new ReferenceLinePatternType("SOLID");
///
/// 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 ReferenceLinePatternType(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 ReferenceLinePatternType 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 ReferenceLinePatternType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ReferenceLineValueLabelRelativePosition.
///
public class ReferenceLineValueLabelRelativePosition : ConstantClass
{
///
/// Constant AFTER_CUSTOM_LABEL for ReferenceLineValueLabelRelativePosition
///
public static readonly ReferenceLineValueLabelRelativePosition AFTER_CUSTOM_LABEL = new ReferenceLineValueLabelRelativePosition("AFTER_CUSTOM_LABEL");
///
/// Constant BEFORE_CUSTOM_LABEL for ReferenceLineValueLabelRelativePosition
///
public static readonly ReferenceLineValueLabelRelativePosition BEFORE_CUSTOM_LABEL = new ReferenceLineValueLabelRelativePosition("BEFORE_CUSTOM_LABEL");
///
/// 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 ReferenceLineValueLabelRelativePosition(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 ReferenceLineValueLabelRelativePosition 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 ReferenceLineValueLabelRelativePosition(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RefreshInterval.
///
public class RefreshInterval : ConstantClass
{
///
/// Constant DAILY for RefreshInterval
///
public static readonly RefreshInterval DAILY = new RefreshInterval("DAILY");
///
/// Constant HOURLY for RefreshInterval
///
public static readonly RefreshInterval HOURLY = new RefreshInterval("HOURLY");
///
/// Constant MINUTE15 for RefreshInterval
///
public static readonly RefreshInterval MINUTE15 = new RefreshInterval("MINUTE15");
///
/// Constant MINUTE30 for RefreshInterval
///
public static readonly RefreshInterval MINUTE30 = new RefreshInterval("MINUTE30");
///
/// Constant MONTHLY for RefreshInterval
///
public static readonly RefreshInterval MONTHLY = new RefreshInterval("MONTHLY");
///
/// Constant WEEKLY for RefreshInterval
///
public static readonly RefreshInterval WEEKLY = new RefreshInterval("WEEKLY");
///
/// 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 RefreshInterval(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 RefreshInterval 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 RefreshInterval(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RelativeDateType.
///
public class RelativeDateType : ConstantClass
{
///
/// Constant LAST for RelativeDateType
///
public static readonly RelativeDateType LAST = new RelativeDateType("LAST");
///
/// Constant NEXT for RelativeDateType
///
public static readonly RelativeDateType NEXT = new RelativeDateType("NEXT");
///
/// Constant NOW for RelativeDateType
///
public static readonly RelativeDateType NOW = new RelativeDateType("NOW");
///
/// Constant PREVIOUS for RelativeDateType
///
public static readonly RelativeDateType PREVIOUS = new RelativeDateType("PREVIOUS");
///
/// Constant THIS for RelativeDateType
///
public static readonly RelativeDateType THIS = new RelativeDateType("THIS");
///
/// 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 RelativeDateType(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 RelativeDateType 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 RelativeDateType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RelativeFontSize.
///
public class RelativeFontSize : ConstantClass
{
///
/// Constant EXTRA_LARGE for RelativeFontSize
///
public static readonly RelativeFontSize EXTRA_LARGE = new RelativeFontSize("EXTRA_LARGE");
///
/// Constant EXTRA_SMALL for RelativeFontSize
///
public static readonly RelativeFontSize EXTRA_SMALL = new RelativeFontSize("EXTRA_SMALL");
///
/// Constant LARGE for RelativeFontSize
///
public static readonly RelativeFontSize LARGE = new RelativeFontSize("LARGE");
///
/// Constant MEDIUM for RelativeFontSize
///
public static readonly RelativeFontSize MEDIUM = new RelativeFontSize("MEDIUM");
///
/// Constant SMALL for RelativeFontSize
///
public static readonly RelativeFontSize SMALL = new RelativeFontSize("SMALL");
///
/// 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 RelativeFontSize(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 RelativeFontSize 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 RelativeFontSize(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ResizeOption.
///
public class ResizeOption : ConstantClass
{
///
/// Constant FIXED for ResizeOption
///
public static readonly ResizeOption FIXED = new ResizeOption("FIXED");
///
/// Constant RESPONSIVE for ResizeOption
///
public static readonly ResizeOption RESPONSIVE = new ResizeOption("RESPONSIVE");
///
/// 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 ResizeOption(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 ResizeOption 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 ResizeOption(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ResourceStatus.
///
public class ResourceStatus : ConstantClass
{
///
/// Constant CREATION_FAILED for ResourceStatus
///
public static readonly ResourceStatus CREATION_FAILED = new ResourceStatus("CREATION_FAILED");
///
/// Constant CREATION_IN_PROGRESS for ResourceStatus
///
public static readonly ResourceStatus CREATION_IN_PROGRESS = new ResourceStatus("CREATION_IN_PROGRESS");
///
/// Constant CREATION_SUCCESSFUL for ResourceStatus
///
public static readonly ResourceStatus CREATION_SUCCESSFUL = new ResourceStatus("CREATION_SUCCESSFUL");
///
/// Constant DELETED for ResourceStatus
///
public static readonly ResourceStatus DELETED = new ResourceStatus("DELETED");
///
/// Constant UPDATE_FAILED for ResourceStatus
///
public static readonly ResourceStatus UPDATE_FAILED = new ResourceStatus("UPDATE_FAILED");
///
/// Constant UPDATE_IN_PROGRESS for ResourceStatus
///
public static readonly ResourceStatus UPDATE_IN_PROGRESS = new ResourceStatus("UPDATE_IN_PROGRESS");
///
/// Constant UPDATE_SUCCESSFUL for ResourceStatus
///
public static readonly ResourceStatus UPDATE_SUCCESSFUL = new ResourceStatus("UPDATE_SUCCESSFUL");
///
/// 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 ResourceStatus(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 ResourceStatus 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 ResourceStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RowLevelPermissionFormatVersion.
///
public class RowLevelPermissionFormatVersion : ConstantClass
{
///
/// Constant VERSION_1 for RowLevelPermissionFormatVersion
///
public static readonly RowLevelPermissionFormatVersion VERSION_1 = new RowLevelPermissionFormatVersion("VERSION_1");
///
/// Constant VERSION_2 for RowLevelPermissionFormatVersion
///
public static readonly RowLevelPermissionFormatVersion VERSION_2 = new RowLevelPermissionFormatVersion("VERSION_2");
///
/// 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 RowLevelPermissionFormatVersion(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 RowLevelPermissionFormatVersion 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 RowLevelPermissionFormatVersion(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RowLevelPermissionPolicy.
///
public class RowLevelPermissionPolicy : ConstantClass
{
///
/// Constant DENY_ACCESS for RowLevelPermissionPolicy
///
public static readonly RowLevelPermissionPolicy DENY_ACCESS = new RowLevelPermissionPolicy("DENY_ACCESS");
///
/// Constant GRANT_ACCESS for RowLevelPermissionPolicy
///
public static readonly RowLevelPermissionPolicy GRANT_ACCESS = new RowLevelPermissionPolicy("GRANT_ACCESS");
///
/// 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 RowLevelPermissionPolicy(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 RowLevelPermissionPolicy 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 RowLevelPermissionPolicy(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SectionPageBreakStatus.
///
public class SectionPageBreakStatus : ConstantClass
{
///
/// Constant DISABLED for SectionPageBreakStatus
///
public static readonly SectionPageBreakStatus DISABLED = new SectionPageBreakStatus("DISABLED");
///
/// Constant ENABLED for SectionPageBreakStatus
///
public static readonly SectionPageBreakStatus ENABLED = new SectionPageBreakStatus("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 SectionPageBreakStatus(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 SectionPageBreakStatus 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 SectionPageBreakStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SelectAllValueOptions.
///
public class SelectAllValueOptions : ConstantClass
{
///
/// Constant ALL_VALUES for SelectAllValueOptions
///
public static readonly SelectAllValueOptions ALL_VALUES = new SelectAllValueOptions("ALL_VALUES");
///
/// 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 SelectAllValueOptions(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 SelectAllValueOptions 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 SelectAllValueOptions(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SelectedFieldOptions.
///
public class SelectedFieldOptions : ConstantClass
{
///
/// Constant ALL_FIELDS for SelectedFieldOptions
///
public static readonly SelectedFieldOptions ALL_FIELDS = new SelectedFieldOptions("ALL_FIELDS");
///
/// 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 SelectedFieldOptions(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 SelectedFieldOptions 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 SelectedFieldOptions(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SelectedTooltipType.
///
public class SelectedTooltipType : ConstantClass
{
///
/// Constant BASIC for SelectedTooltipType
///
public static readonly SelectedTooltipType BASIC = new SelectedTooltipType("BASIC");
///
/// Constant DETAILED for SelectedTooltipType
///
public static readonly SelectedTooltipType DETAILED = new SelectedTooltipType("DETAILED");
///
/// 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 SelectedTooltipType(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 SelectedTooltipType 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 SelectedTooltipType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SheetContentType.
///
public class SheetContentType : ConstantClass
{
///
/// Constant INTERACTIVE for SheetContentType
///
public static readonly SheetContentType INTERACTIVE = new SheetContentType("INTERACTIVE");
///
/// Constant PAGINATED for SheetContentType
///
public static readonly SheetContentType PAGINATED = new SheetContentType("PAGINATED");
///
/// 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 SheetContentType(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 SheetContentType 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 SheetContentType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SheetControlDateTimePickerType.
///
public class SheetControlDateTimePickerType : ConstantClass
{
///
/// Constant DATE_RANGE for SheetControlDateTimePickerType
///
public static readonly SheetControlDateTimePickerType DATE_RANGE = new SheetControlDateTimePickerType("DATE_RANGE");
///
/// Constant SINGLE_VALUED for SheetControlDateTimePickerType
///
public static readonly SheetControlDateTimePickerType SINGLE_VALUED = new SheetControlDateTimePickerType("SINGLE_VALUED");
///
/// 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 SheetControlDateTimePickerType(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 SheetControlDateTimePickerType 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 SheetControlDateTimePickerType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SheetControlListType.
///
public class SheetControlListType : ConstantClass
{
///
/// Constant MULTI_SELECT for SheetControlListType
///
public static readonly SheetControlListType MULTI_SELECT = new SheetControlListType("MULTI_SELECT");
///
/// Constant SINGLE_SELECT for SheetControlListType
///
public static readonly SheetControlListType SINGLE_SELECT = new SheetControlListType("SINGLE_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 SheetControlListType(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 SheetControlListType 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 SheetControlListType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SheetControlSliderType.
///
public class SheetControlSliderType : ConstantClass
{
///
/// Constant RANGE for SheetControlSliderType
///
public static readonly SheetControlSliderType RANGE = new SheetControlSliderType("RANGE");
///
/// Constant SINGLE_POINT for SheetControlSliderType
///
public static readonly SheetControlSliderType SINGLE_POINT = new SheetControlSliderType("SINGLE_POINT");
///
/// 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 SheetControlSliderType(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 SheetControlSliderType 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 SheetControlSliderType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SimpleAttributeAggregationFunction.
///
public class SimpleAttributeAggregationFunction : ConstantClass
{
///
/// Constant UNIQUE_VALUE for SimpleAttributeAggregationFunction
///
public static readonly SimpleAttributeAggregationFunction UNIQUE_VALUE = new SimpleAttributeAggregationFunction("UNIQUE_VALUE");
///
/// 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 SimpleAttributeAggregationFunction(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 SimpleAttributeAggregationFunction 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 SimpleAttributeAggregationFunction(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SimpleNumericalAggregationFunction.
///
public class SimpleNumericalAggregationFunction : ConstantClass
{
///
/// Constant AVERAGE for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction AVERAGE = new SimpleNumericalAggregationFunction("AVERAGE");
///
/// Constant COUNT for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction COUNT = new SimpleNumericalAggregationFunction("COUNT");
///
/// Constant DISTINCT_COUNT for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction DISTINCT_COUNT = new SimpleNumericalAggregationFunction("DISTINCT_COUNT");
///
/// Constant MAX for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction MAX = new SimpleNumericalAggregationFunction("MAX");
///
/// Constant MEDIAN for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction MEDIAN = new SimpleNumericalAggregationFunction("MEDIAN");
///
/// Constant MIN for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction MIN = new SimpleNumericalAggregationFunction("MIN");
///
/// Constant STDEV for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction STDEV = new SimpleNumericalAggregationFunction("STDEV");
///
/// Constant STDEVP for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction STDEVP = new SimpleNumericalAggregationFunction("STDEVP");
///
/// Constant SUM for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction SUM = new SimpleNumericalAggregationFunction("SUM");
///
/// Constant VAR for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction VAR = new SimpleNumericalAggregationFunction("VAR");
///
/// Constant VARP for SimpleNumericalAggregationFunction
///
public static readonly SimpleNumericalAggregationFunction VARP = new SimpleNumericalAggregationFunction("VARP");
///
/// 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 SimpleNumericalAggregationFunction(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 SimpleNumericalAggregationFunction 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 SimpleNumericalAggregationFunction(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SmallMultiplesAxisPlacement.
///
public class SmallMultiplesAxisPlacement : ConstantClass
{
///
/// Constant INSIDE for SmallMultiplesAxisPlacement
///
public static readonly SmallMultiplesAxisPlacement INSIDE = new SmallMultiplesAxisPlacement("INSIDE");
///
/// Constant OUTSIDE for SmallMultiplesAxisPlacement
///
public static readonly SmallMultiplesAxisPlacement OUTSIDE = new SmallMultiplesAxisPlacement("OUTSIDE");
///
/// 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 SmallMultiplesAxisPlacement(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 SmallMultiplesAxisPlacement 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 SmallMultiplesAxisPlacement(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SmallMultiplesAxisScale.
///
public class SmallMultiplesAxisScale : ConstantClass
{
///
/// Constant INDEPENDENT for SmallMultiplesAxisScale
///
public static readonly SmallMultiplesAxisScale INDEPENDENT = new SmallMultiplesAxisScale("INDEPENDENT");
///
/// Constant SHARED for SmallMultiplesAxisScale
///
public static readonly SmallMultiplesAxisScale SHARED = new SmallMultiplesAxisScale("SHARED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public SmallMultiplesAxisScale(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 SmallMultiplesAxisScale 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 SmallMultiplesAxisScale(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SnapshotFileFormatType.
///
public class SnapshotFileFormatType : ConstantClass
{
///
/// Constant CSV for SnapshotFileFormatType
///
public static readonly SnapshotFileFormatType CSV = new SnapshotFileFormatType("CSV");
///
/// Constant PDF for SnapshotFileFormatType
///
public static readonly SnapshotFileFormatType PDF = new SnapshotFileFormatType("PDF");
///
/// 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 SnapshotFileFormatType(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 SnapshotFileFormatType 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 SnapshotFileFormatType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SnapshotFileSheetSelectionScope.
///
public class SnapshotFileSheetSelectionScope : ConstantClass
{
///
/// Constant ALL_VISUALS for SnapshotFileSheetSelectionScope
///
public static readonly SnapshotFileSheetSelectionScope ALL_VISUALS = new SnapshotFileSheetSelectionScope("ALL_VISUALS");
///
/// Constant SELECTED_VISUALS for SnapshotFileSheetSelectionScope
///
public static readonly SnapshotFileSheetSelectionScope SELECTED_VISUALS = new SnapshotFileSheetSelectionScope("SELECTED_VISUALS");
///
/// 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 SnapshotFileSheetSelectionScope(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 SnapshotFileSheetSelectionScope 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 SnapshotFileSheetSelectionScope(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SnapshotJobStatus.
///
public class SnapshotJobStatus : ConstantClass
{
///
/// Constant COMPLETED for SnapshotJobStatus
///
public static readonly SnapshotJobStatus COMPLETED = new SnapshotJobStatus("COMPLETED");
///
/// Constant FAILED for SnapshotJobStatus
///
public static readonly SnapshotJobStatus FAILED = new SnapshotJobStatus("FAILED");
///
/// Constant QUEUED for SnapshotJobStatus
///
public static readonly SnapshotJobStatus QUEUED = new SnapshotJobStatus("QUEUED");
///
/// Constant RUNNING for SnapshotJobStatus
///
public static readonly SnapshotJobStatus RUNNING = new SnapshotJobStatus("RUNNING");
///
/// 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 SnapshotJobStatus(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 SnapshotJobStatus 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 SnapshotJobStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SortDirection.
///
public class SortDirection : ConstantClass
{
///
/// Constant ASC for SortDirection
///
public static readonly SortDirection ASC = new SortDirection("ASC");
///
/// Constant DESC for SortDirection
///
public static readonly SortDirection DESC = new SortDirection("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 SortDirection(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 SortDirection 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 SortDirection(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SpecialValue.
///
public class SpecialValue : ConstantClass
{
///
/// Constant EMPTY for SpecialValue
///
public static readonly SpecialValue EMPTY = new SpecialValue("EMPTY");
///
/// Constant NULL for SpecialValue
///
public static readonly SpecialValue NULL = new SpecialValue("NULL");
///
/// Constant OTHER for SpecialValue
///
public static readonly SpecialValue OTHER = new SpecialValue("OTHER");
///
/// 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 SpecialValue(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 SpecialValue 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 SpecialValue(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Status.
///
public class Status : ConstantClass
{
///
/// Constant DISABLED for Status
///
public static readonly Status DISABLED = new Status("DISABLED");
///
/// Constant ENABLED for Status
///
public static readonly Status ENABLED = new Status("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 Status(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 Status 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 Status(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TableBorderStyle.
///
public class TableBorderStyle : ConstantClass
{
///
/// Constant NONE for TableBorderStyle
///
public static readonly TableBorderStyle NONE = new TableBorderStyle("NONE");
///
/// Constant SOLID for TableBorderStyle
///
public static readonly TableBorderStyle SOLID = new TableBorderStyle("SOLID");
///
/// 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 TableBorderStyle(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 TableBorderStyle 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 TableBorderStyle(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TableCellImageScalingConfiguration.
///
public class TableCellImageScalingConfiguration : ConstantClass
{
///
/// Constant DO_NOT_SCALE for TableCellImageScalingConfiguration
///
public static readonly TableCellImageScalingConfiguration DO_NOT_SCALE = new TableCellImageScalingConfiguration("DO_NOT_SCALE");
///
/// Constant FIT_TO_CELL_HEIGHT for TableCellImageScalingConfiguration
///
public static readonly TableCellImageScalingConfiguration FIT_TO_CELL_HEIGHT = new TableCellImageScalingConfiguration("FIT_TO_CELL_HEIGHT");
///
/// Constant FIT_TO_CELL_WIDTH for TableCellImageScalingConfiguration
///
public static readonly TableCellImageScalingConfiguration FIT_TO_CELL_WIDTH = new TableCellImageScalingConfiguration("FIT_TO_CELL_WIDTH");
///
/// 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 TableCellImageScalingConfiguration(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 TableCellImageScalingConfiguration 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 TableCellImageScalingConfiguration(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TableFieldIconSetType.
///
public class TableFieldIconSetType : ConstantClass
{
///
/// Constant LINK for TableFieldIconSetType
///
public static readonly TableFieldIconSetType LINK = new TableFieldIconSetType("LINK");
///
/// 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 TableFieldIconSetType(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 TableFieldIconSetType 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 TableFieldIconSetType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TableOrientation.
///
public class TableOrientation : ConstantClass
{
///
/// Constant HORIZONTAL for TableOrientation
///
public static readonly TableOrientation HORIZONTAL = new TableOrientation("HORIZONTAL");
///
/// Constant VERTICAL for TableOrientation
///
public static readonly TableOrientation VERTICAL = new TableOrientation("VERTICAL");
///
/// 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 TableOrientation(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 TableOrientation 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 TableOrientation(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TableTotalsPlacement.
///
public class TableTotalsPlacement : ConstantClass
{
///
/// Constant END for TableTotalsPlacement
///
public static readonly TableTotalsPlacement END = new TableTotalsPlacement("END");
///
/// Constant START for TableTotalsPlacement
///
public static readonly TableTotalsPlacement START = new TableTotalsPlacement("START");
///
/// 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 TableTotalsPlacement(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 TableTotalsPlacement 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 TableTotalsPlacement(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TableTotalsScrollStatus.
///
public class TableTotalsScrollStatus : ConstantClass
{
///
/// Constant PINNED for TableTotalsScrollStatus
///
public static readonly TableTotalsScrollStatus PINNED = new TableTotalsScrollStatus("PINNED");
///
/// Constant SCROLLED for TableTotalsScrollStatus
///
public static readonly TableTotalsScrollStatus SCROLLED = new TableTotalsScrollStatus("SCROLLED");
///
/// 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 TableTotalsScrollStatus(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 TableTotalsScrollStatus 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 TableTotalsScrollStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TargetVisualOptions.
///
public class TargetVisualOptions : ConstantClass
{
///
/// Constant ALL_VISUALS for TargetVisualOptions
///
public static readonly TargetVisualOptions ALL_VISUALS = new TargetVisualOptions("ALL_VISUALS");
///
/// 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 TargetVisualOptions(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 TargetVisualOptions 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 TargetVisualOptions(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TemplateErrorType.
///
public class TemplateErrorType : ConstantClass
{
///
/// Constant ACCESS_DENIED for TemplateErrorType
///
public static readonly TemplateErrorType ACCESS_DENIED = new TemplateErrorType("ACCESS_DENIED");
///
/// Constant DATA_SET_NOT_FOUND for TemplateErrorType
///
public static readonly TemplateErrorType DATA_SET_NOT_FOUND = new TemplateErrorType("DATA_SET_NOT_FOUND");
///
/// Constant INTERNAL_FAILURE for TemplateErrorType
///
public static readonly TemplateErrorType INTERNAL_FAILURE = new TemplateErrorType("INTERNAL_FAILURE");
///
/// Constant SOURCE_NOT_FOUND for TemplateErrorType
///
public static readonly TemplateErrorType SOURCE_NOT_FOUND = new TemplateErrorType("SOURCE_NOT_FOUND");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public TemplateErrorType(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 TemplateErrorType 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 TemplateErrorType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TextQualifier.
///
public class TextQualifier : ConstantClass
{
///
/// Constant DOUBLE_QUOTE for TextQualifier
///
public static readonly TextQualifier DOUBLE_QUOTE = new TextQualifier("DOUBLE_QUOTE");
///
/// Constant SINGLE_QUOTE for TextQualifier
///
public static readonly TextQualifier SINGLE_QUOTE = new TextQualifier("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 TextQualifier(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 TextQualifier 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 TextQualifier(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TextWrap.
///
public class TextWrap : ConstantClass
{
///
/// Constant NONE for TextWrap
///
public static readonly TextWrap NONE = new TextWrap("NONE");
///
/// Constant WRAP for TextWrap
///
public static readonly TextWrap WRAP = new TextWrap("WRAP");
///
/// 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 TextWrap(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 TextWrap 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 TextWrap(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ThemeErrorType.
///
public class ThemeErrorType : ConstantClass
{
///
/// Constant INTERNAL_FAILURE for ThemeErrorType
///
public static readonly ThemeErrorType INTERNAL_FAILURE = new ThemeErrorType("INTERNAL_FAILURE");
///
/// 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 ThemeErrorType(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 ThemeErrorType 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 ThemeErrorType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ThemeType.
///
public class ThemeType : ConstantClass
{
///
/// Constant ALL for ThemeType
///
public static readonly ThemeType ALL = new ThemeType("ALL");
///
/// Constant CUSTOM for ThemeType
///
public static readonly ThemeType CUSTOM = new ThemeType("CUSTOM");
///
/// Constant QUICKSIGHT for ThemeType
///
public static readonly ThemeType QUICKSIGHT = new ThemeType("QUICKSIGHT");
///
/// 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 ThemeType(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 ThemeType 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 ThemeType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TimeGranularity.
///
public class TimeGranularity : ConstantClass
{
///
/// Constant DAY for TimeGranularity
///
public static readonly TimeGranularity DAY = new TimeGranularity("DAY");
///
/// Constant HOUR for TimeGranularity
///
public static readonly TimeGranularity HOUR = new TimeGranularity("HOUR");
///
/// Constant MILLISECOND for TimeGranularity
///
public static readonly TimeGranularity MILLISECOND = new TimeGranularity("MILLISECOND");
///
/// Constant MINUTE for TimeGranularity
///
public static readonly TimeGranularity MINUTE = new TimeGranularity("MINUTE");
///
/// Constant MONTH for TimeGranularity
///
public static readonly TimeGranularity MONTH = new TimeGranularity("MONTH");
///
/// Constant QUARTER for TimeGranularity
///
public static readonly TimeGranularity QUARTER = new TimeGranularity("QUARTER");
///
/// Constant SECOND for TimeGranularity
///
public static readonly TimeGranularity SECOND = new TimeGranularity("SECOND");
///
/// Constant WEEK for TimeGranularity
///
public static readonly TimeGranularity WEEK = new TimeGranularity("WEEK");
///
/// Constant YEAR for TimeGranularity
///
public static readonly TimeGranularity YEAR = new TimeGranularity("YEAR");
///
/// 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 TimeGranularity(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 TimeGranularity 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 TimeGranularity(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TooltipTitleType.
///
public class TooltipTitleType : ConstantClass
{
///
/// Constant NONE for TooltipTitleType
///
public static readonly TooltipTitleType NONE = new TooltipTitleType("NONE");
///
/// Constant PRIMARY_VALUE for TooltipTitleType
///
public static readonly TooltipTitleType PRIMARY_VALUE = new TooltipTitleType("PRIMARY_VALUE");
///
/// 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 TooltipTitleType(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 TooltipTitleType 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 TooltipTitleType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TopBottomComputationType.
///
public class TopBottomComputationType : ConstantClass
{
///
/// Constant BOTTOM for TopBottomComputationType
///
public static readonly TopBottomComputationType BOTTOM = new TopBottomComputationType("BOTTOM");
///
/// Constant TOP for TopBottomComputationType
///
public static readonly TopBottomComputationType TOP = new TopBottomComputationType("TOP");
///
/// 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 TopBottomComputationType(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 TopBottomComputationType 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 TopBottomComputationType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TopBottomSortOrder.
///
public class TopBottomSortOrder : ConstantClass
{
///
/// Constant ABSOLUTE_DIFFERENCE for TopBottomSortOrder
///
public static readonly TopBottomSortOrder ABSOLUTE_DIFFERENCE = new TopBottomSortOrder("ABSOLUTE_DIFFERENCE");
///
/// Constant PERCENT_DIFFERENCE for TopBottomSortOrder
///
public static readonly TopBottomSortOrder PERCENT_DIFFERENCE = new TopBottomSortOrder("PERCENT_DIFFERENCE");
///
/// 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 TopBottomSortOrder(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 TopBottomSortOrder 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 TopBottomSortOrder(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TopicNumericSeparatorSymbol.
///
public class TopicNumericSeparatorSymbol : ConstantClass
{
///
/// Constant COMMA for TopicNumericSeparatorSymbol
///
public static readonly TopicNumericSeparatorSymbol COMMA = new TopicNumericSeparatorSymbol("COMMA");
///
/// Constant DOT for TopicNumericSeparatorSymbol
///
public static readonly TopicNumericSeparatorSymbol DOT = new TopicNumericSeparatorSymbol("DOT");
///
/// 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 TopicNumericSeparatorSymbol(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 TopicNumericSeparatorSymbol 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 TopicNumericSeparatorSymbol(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TopicRefreshStatus.
///
public class TopicRefreshStatus : ConstantClass
{
///
/// Constant CANCELLED for TopicRefreshStatus
///
public static readonly TopicRefreshStatus CANCELLED = new TopicRefreshStatus("CANCELLED");
///
/// Constant COMPLETED for TopicRefreshStatus
///
public static readonly TopicRefreshStatus COMPLETED = new TopicRefreshStatus("COMPLETED");
///
/// Constant FAILED for TopicRefreshStatus
///
public static readonly TopicRefreshStatus FAILED = new TopicRefreshStatus("FAILED");
///
/// Constant INITIALIZED for TopicRefreshStatus
///
public static readonly TopicRefreshStatus INITIALIZED = new TopicRefreshStatus("INITIALIZED");
///
/// Constant RUNNING for TopicRefreshStatus
///
public static readonly TopicRefreshStatus RUNNING = new TopicRefreshStatus("RUNNING");
///
/// 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 TopicRefreshStatus(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 TopicRefreshStatus 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 TopicRefreshStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TopicRelativeDateFilterFunction.
///
public class TopicRelativeDateFilterFunction : ConstantClass
{
///
/// Constant LAST for TopicRelativeDateFilterFunction
///
public static readonly TopicRelativeDateFilterFunction LAST = new TopicRelativeDateFilterFunction("LAST");
///
/// Constant NEXT for TopicRelativeDateFilterFunction
///
public static readonly TopicRelativeDateFilterFunction NEXT = new TopicRelativeDateFilterFunction("NEXT");
///
/// Constant NOW for TopicRelativeDateFilterFunction
///
public static readonly TopicRelativeDateFilterFunction NOW = new TopicRelativeDateFilterFunction("NOW");
///
/// Constant PREVIOUS for TopicRelativeDateFilterFunction
///
public static readonly TopicRelativeDateFilterFunction PREVIOUS = new TopicRelativeDateFilterFunction("PREVIOUS");
///
/// Constant THIS for TopicRelativeDateFilterFunction
///
public static readonly TopicRelativeDateFilterFunction THIS = new TopicRelativeDateFilterFunction("THIS");
///
/// 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 TopicRelativeDateFilterFunction(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 TopicRelativeDateFilterFunction 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 TopicRelativeDateFilterFunction(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TopicScheduleType.
///
public class TopicScheduleType : ConstantClass
{
///
/// Constant DAILY for TopicScheduleType
///
public static readonly TopicScheduleType DAILY = new TopicScheduleType("DAILY");
///
/// Constant HOURLY for TopicScheduleType
///
public static readonly TopicScheduleType HOURLY = new TopicScheduleType("HOURLY");
///
/// Constant MONTHLY for TopicScheduleType
///
public static readonly TopicScheduleType MONTHLY = new TopicScheduleType("MONTHLY");
///
/// Constant WEEKLY for TopicScheduleType
///
public static readonly TopicScheduleType WEEKLY = new TopicScheduleType("WEEKLY");
///
/// 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 TopicScheduleType(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 TopicScheduleType 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 TopicScheduleType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TopicTimeGranularity.
///
public class TopicTimeGranularity : ConstantClass
{
///
/// Constant DAY for TopicTimeGranularity
///
public static readonly TopicTimeGranularity DAY = new TopicTimeGranularity("DAY");
///
/// Constant HOUR for TopicTimeGranularity
///
public static readonly TopicTimeGranularity HOUR = new TopicTimeGranularity("HOUR");
///
/// Constant MINUTE for TopicTimeGranularity
///
public static readonly TopicTimeGranularity MINUTE = new TopicTimeGranularity("MINUTE");
///
/// Constant MONTH for TopicTimeGranularity
///
public static readonly TopicTimeGranularity MONTH = new TopicTimeGranularity("MONTH");
///
/// Constant QUARTER for TopicTimeGranularity
///
public static readonly TopicTimeGranularity QUARTER = new TopicTimeGranularity("QUARTER");
///
/// Constant SECOND for TopicTimeGranularity
///
public static readonly TopicTimeGranularity SECOND = new TopicTimeGranularity("SECOND");
///
/// Constant WEEK for TopicTimeGranularity
///
public static readonly TopicTimeGranularity WEEK = new TopicTimeGranularity("WEEK");
///
/// Constant YEAR for TopicTimeGranularity
///
public static readonly TopicTimeGranularity YEAR = new TopicTimeGranularity("YEAR");
///
/// 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 TopicTimeGranularity(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 TopicTimeGranularity 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 TopicTimeGranularity(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type UndefinedSpecifiedValueType.
///
public class UndefinedSpecifiedValueType : ConstantClass
{
///
/// Constant LEAST for UndefinedSpecifiedValueType
///
public static readonly UndefinedSpecifiedValueType LEAST = new UndefinedSpecifiedValueType("LEAST");
///
/// Constant MOST for UndefinedSpecifiedValueType
///
public static readonly UndefinedSpecifiedValueType MOST = new UndefinedSpecifiedValueType("MOST");
///
/// 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 UndefinedSpecifiedValueType(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 UndefinedSpecifiedValueType 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 UndefinedSpecifiedValueType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type URLTargetConfiguration.
///
public class URLTargetConfiguration : ConstantClass
{
///
/// Constant NEW_TAB for URLTargetConfiguration
///
public static readonly URLTargetConfiguration NEW_TAB = new URLTargetConfiguration("NEW_TAB");
///
/// Constant NEW_WINDOW for URLTargetConfiguration
///
public static readonly URLTargetConfiguration NEW_WINDOW = new URLTargetConfiguration("NEW_WINDOW");
///
/// Constant SAME_TAB for URLTargetConfiguration
///
public static readonly URLTargetConfiguration SAME_TAB = new URLTargetConfiguration("SAME_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 URLTargetConfiguration(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 URLTargetConfiguration 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 URLTargetConfiguration(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type UserRole.
///
public class UserRole : ConstantClass
{
///
/// Constant ADMIN for UserRole
///
public static readonly UserRole ADMIN = new UserRole("ADMIN");
///
/// Constant AUTHOR for UserRole
///
public static readonly UserRole AUTHOR = new UserRole("AUTHOR");
///
/// Constant READER for UserRole
///
public static readonly UserRole READER = new UserRole("READER");
///
/// Constant RESTRICTED_AUTHOR for UserRole
///
public static readonly UserRole RESTRICTED_AUTHOR = new UserRole("RESTRICTED_AUTHOR");
///
/// Constant RESTRICTED_READER for UserRole
///
public static readonly UserRole RESTRICTED_READER = new UserRole("RESTRICTED_READER");
///
/// 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 UserRole(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 UserRole 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 UserRole(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ValueWhenUnsetOption.
///
public class ValueWhenUnsetOption : ConstantClass
{
///
/// Constant NULL for ValueWhenUnsetOption
///
public static readonly ValueWhenUnsetOption NULL = new ValueWhenUnsetOption("NULL");
///
/// Constant RECOMMENDED_VALUE for ValueWhenUnsetOption
///
public static readonly ValueWhenUnsetOption RECOMMENDED_VALUE = new ValueWhenUnsetOption("RECOMMENDED_VALUE");
///
/// 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 ValueWhenUnsetOption(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 ValueWhenUnsetOption 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 ValueWhenUnsetOption(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type VerticalTextAlignment.
///
public class VerticalTextAlignment : ConstantClass
{
///
/// Constant BOTTOM for VerticalTextAlignment
///
public static readonly VerticalTextAlignment BOTTOM = new VerticalTextAlignment("BOTTOM");
///
/// Constant MIDDLE for VerticalTextAlignment
///
public static readonly VerticalTextAlignment MIDDLE = new VerticalTextAlignment("MIDDLE");
///
/// Constant TOP for VerticalTextAlignment
///
public static readonly VerticalTextAlignment TOP = new VerticalTextAlignment("TOP");
///
/// 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 VerticalTextAlignment(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 VerticalTextAlignment 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 VerticalTextAlignment(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Visibility.
///
public class Visibility : ConstantClass
{
///
/// Constant HIDDEN for Visibility
///
public static readonly Visibility HIDDEN = new Visibility("HIDDEN");
///
/// Constant VISIBLE for Visibility
///
public static readonly Visibility VISIBLE = new Visibility("VISIBLE");
///
/// 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 Visibility(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 Visibility 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 Visibility(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type VisualCustomActionTrigger.
///
public class VisualCustomActionTrigger : ConstantClass
{
///
/// Constant DATA_POINT_CLICK for VisualCustomActionTrigger
///
public static readonly VisualCustomActionTrigger DATA_POINT_CLICK = new VisualCustomActionTrigger("DATA_POINT_CLICK");
///
/// Constant DATA_POINT_MENU for VisualCustomActionTrigger
///
public static readonly VisualCustomActionTrigger DATA_POINT_MENU = new VisualCustomActionTrigger("DATA_POINT_MENU");
///
/// 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 VisualCustomActionTrigger(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 VisualCustomActionTrigger 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 VisualCustomActionTrigger(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type VPCConnectionAvailabilityStatus.
///
public class VPCConnectionAvailabilityStatus : ConstantClass
{
///
/// Constant AVAILABLE for VPCConnectionAvailabilityStatus
///
public static readonly VPCConnectionAvailabilityStatus AVAILABLE = new VPCConnectionAvailabilityStatus("AVAILABLE");
///
/// Constant PARTIALLY_AVAILABLE for VPCConnectionAvailabilityStatus
///
public static readonly VPCConnectionAvailabilityStatus PARTIALLY_AVAILABLE = new VPCConnectionAvailabilityStatus("PARTIALLY_AVAILABLE");
///
/// Constant UNAVAILABLE for VPCConnectionAvailabilityStatus
///
public static readonly VPCConnectionAvailabilityStatus UNAVAILABLE = new VPCConnectionAvailabilityStatus("UNAVAILABLE");
///
/// 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 VPCConnectionAvailabilityStatus(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 VPCConnectionAvailabilityStatus 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 VPCConnectionAvailabilityStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type VPCConnectionResourceStatus.
///
public class VPCConnectionResourceStatus : ConstantClass
{
///
/// Constant CREATION_FAILED for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus CREATION_FAILED = new VPCConnectionResourceStatus("CREATION_FAILED");
///
/// Constant CREATION_IN_PROGRESS for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus CREATION_IN_PROGRESS = new VPCConnectionResourceStatus("CREATION_IN_PROGRESS");
///
/// Constant CREATION_SUCCESSFUL for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus CREATION_SUCCESSFUL = new VPCConnectionResourceStatus("CREATION_SUCCESSFUL");
///
/// Constant DELETED for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus DELETED = new VPCConnectionResourceStatus("DELETED");
///
/// Constant DELETION_FAILED for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus DELETION_FAILED = new VPCConnectionResourceStatus("DELETION_FAILED");
///
/// Constant DELETION_IN_PROGRESS for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus DELETION_IN_PROGRESS = new VPCConnectionResourceStatus("DELETION_IN_PROGRESS");
///
/// Constant UPDATE_FAILED for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus UPDATE_FAILED = new VPCConnectionResourceStatus("UPDATE_FAILED");
///
/// Constant UPDATE_IN_PROGRESS for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus UPDATE_IN_PROGRESS = new VPCConnectionResourceStatus("UPDATE_IN_PROGRESS");
///
/// Constant UPDATE_SUCCESSFUL for VPCConnectionResourceStatus
///
public static readonly VPCConnectionResourceStatus UPDATE_SUCCESSFUL = new VPCConnectionResourceStatus("UPDATE_SUCCESSFUL");
///
/// 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 VPCConnectionResourceStatus(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 VPCConnectionResourceStatus 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 VPCConnectionResourceStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type WidgetStatus.
///
public class WidgetStatus : ConstantClass
{
///
/// Constant DISABLED for WidgetStatus
///
public static readonly WidgetStatus DISABLED = new WidgetStatus("DISABLED");
///
/// Constant ENABLED for WidgetStatus
///
public static readonly WidgetStatus ENABLED = new WidgetStatus("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 WidgetStatus(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 WidgetStatus 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 WidgetStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type WordCloudCloudLayout.
///
public class WordCloudCloudLayout : ConstantClass
{
///
/// Constant FLUID for WordCloudCloudLayout
///
public static readonly WordCloudCloudLayout FLUID = new WordCloudCloudLayout("FLUID");
///
/// Constant NORMAL for WordCloudCloudLayout
///
public static readonly WordCloudCloudLayout NORMAL = new WordCloudCloudLayout("NORMAL");
///
/// 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 WordCloudCloudLayout(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 WordCloudCloudLayout 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 WordCloudCloudLayout(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type WordCloudWordCasing.
///
public class WordCloudWordCasing : ConstantClass
{
///
/// Constant EXISTING_CASE for WordCloudWordCasing
///
public static readonly WordCloudWordCasing EXISTING_CASE = new WordCloudWordCasing("EXISTING_CASE");
///
/// Constant LOWER_CASE for WordCloudWordCasing
///
public static readonly WordCloudWordCasing LOWER_CASE = new WordCloudWordCasing("LOWER_CASE");
///
/// 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 WordCloudWordCasing(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 WordCloudWordCasing 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 WordCloudWordCasing(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type WordCloudWordOrientation.
///
public class WordCloudWordOrientation : ConstantClass
{
///
/// Constant HORIZONTAL for WordCloudWordOrientation
///
public static readonly WordCloudWordOrientation HORIZONTAL = new WordCloudWordOrientation("HORIZONTAL");
///
/// Constant HORIZONTAL_AND_VERTICAL for WordCloudWordOrientation
///
public static readonly WordCloudWordOrientation HORIZONTAL_AND_VERTICAL = new WordCloudWordOrientation("HORIZONTAL_AND_VERTICAL");
///
/// 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 WordCloudWordOrientation(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 WordCloudWordOrientation 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 WordCloudWordOrientation(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type WordCloudWordPadding.
///
public class WordCloudWordPadding : ConstantClass
{
///
/// Constant LARGE for WordCloudWordPadding
///
public static readonly WordCloudWordPadding LARGE = new WordCloudWordPadding("LARGE");
///
/// Constant MEDIUM for WordCloudWordPadding
///
public static readonly WordCloudWordPadding MEDIUM = new WordCloudWordPadding("MEDIUM");
///
/// Constant NONE for WordCloudWordPadding
///
public static readonly WordCloudWordPadding NONE = new WordCloudWordPadding("NONE");
///
/// Constant SMALL for WordCloudWordPadding
///
public static readonly WordCloudWordPadding SMALL = new WordCloudWordPadding("SMALL");
///
/// 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 WordCloudWordPadding(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 WordCloudWordPadding 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 WordCloudWordPadding(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type WordCloudWordScaling.
///
public class WordCloudWordScaling : ConstantClass
{
///
/// Constant EMPHASIZE for WordCloudWordScaling
///
public static readonly WordCloudWordScaling EMPHASIZE = new WordCloudWordScaling("EMPHASIZE");
///
/// Constant NORMAL for WordCloudWordScaling
///
public static readonly WordCloudWordScaling NORMAL = new WordCloudWordScaling("NORMAL");
///
/// 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 WordCloudWordScaling(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 WordCloudWordScaling 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 WordCloudWordScaling(string value)
{
return FindValue(value);
}
}
}