/* * 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 sagemaker-geospatial-2020-05-27.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.SageMakerGeospatial { /// /// Constants used for properties of type AlgorithmNameCloudRemoval. /// public class AlgorithmNameCloudRemoval : ConstantClass { /// /// Constant INTERPOLATION for AlgorithmNameCloudRemoval /// public static readonly AlgorithmNameCloudRemoval INTERPOLATION = new AlgorithmNameCloudRemoval("INTERPOLATION"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public AlgorithmNameCloudRemoval(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static AlgorithmNameCloudRemoval FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator AlgorithmNameCloudRemoval(string value) { return FindValue(value); } } /// /// Constants used for properties of type AlgorithmNameGeoMosaic. /// public class AlgorithmNameGeoMosaic : ConstantClass { /// /// Constant AVERAGE for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic AVERAGE = new AlgorithmNameGeoMosaic("AVERAGE"); /// /// Constant BILINEAR for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic BILINEAR = new AlgorithmNameGeoMosaic("BILINEAR"); /// /// Constant CUBIC for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic CUBIC = new AlgorithmNameGeoMosaic("CUBIC"); /// /// Constant CUBICSPLINE for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic CUBICSPLINE = new AlgorithmNameGeoMosaic("CUBICSPLINE"); /// /// Constant LANCZOS for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic LANCZOS = new AlgorithmNameGeoMosaic("LANCZOS"); /// /// Constant MAX for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic MAX = new AlgorithmNameGeoMosaic("MAX"); /// /// Constant MED for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic MED = new AlgorithmNameGeoMosaic("MED"); /// /// Constant MIN for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic MIN = new AlgorithmNameGeoMosaic("MIN"); /// /// Constant MODE for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic MODE = new AlgorithmNameGeoMosaic("MODE"); /// /// Constant NEAR for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic NEAR = new AlgorithmNameGeoMosaic("NEAR"); /// /// Constant Q1 for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic Q1 = new AlgorithmNameGeoMosaic("Q1"); /// /// Constant Q3 for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic Q3 = new AlgorithmNameGeoMosaic("Q3"); /// /// Constant RMS for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic RMS = new AlgorithmNameGeoMosaic("RMS"); /// /// Constant SUM for AlgorithmNameGeoMosaic /// public static readonly AlgorithmNameGeoMosaic SUM = new AlgorithmNameGeoMosaic("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 AlgorithmNameGeoMosaic(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static AlgorithmNameGeoMosaic FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator AlgorithmNameGeoMosaic(string value) { return FindValue(value); } } /// /// Constants used for properties of type AlgorithmNameResampling. /// public class AlgorithmNameResampling : ConstantClass { /// /// Constant AVERAGE for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling AVERAGE = new AlgorithmNameResampling("AVERAGE"); /// /// Constant BILINEAR for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling BILINEAR = new AlgorithmNameResampling("BILINEAR"); /// /// Constant CUBIC for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling CUBIC = new AlgorithmNameResampling("CUBIC"); /// /// Constant CUBICSPLINE for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling CUBICSPLINE = new AlgorithmNameResampling("CUBICSPLINE"); /// /// Constant LANCZOS for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling LANCZOS = new AlgorithmNameResampling("LANCZOS"); /// /// Constant MAX for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling MAX = new AlgorithmNameResampling("MAX"); /// /// Constant MED for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling MED = new AlgorithmNameResampling("MED"); /// /// Constant MIN for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling MIN = new AlgorithmNameResampling("MIN"); /// /// Constant MODE for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling MODE = new AlgorithmNameResampling("MODE"); /// /// Constant NEAR for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling NEAR = new AlgorithmNameResampling("NEAR"); /// /// Constant Q1 for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling Q1 = new AlgorithmNameResampling("Q1"); /// /// Constant Q3 for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling Q3 = new AlgorithmNameResampling("Q3"); /// /// Constant RMS for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling RMS = new AlgorithmNameResampling("RMS"); /// /// Constant SUM for AlgorithmNameResampling /// public static readonly AlgorithmNameResampling SUM = new AlgorithmNameResampling("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 AlgorithmNameResampling(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static AlgorithmNameResampling FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator AlgorithmNameResampling(string value) { return FindValue(value); } } /// /// Constants used for properties of type ComparisonOperator. /// public class ComparisonOperator : ConstantClass { /// /// Constant EQUALS for ComparisonOperator /// public static readonly ComparisonOperator EQUALS = new ComparisonOperator("EQUALS"); /// /// Constant NOT_EQUALS for ComparisonOperator /// public static readonly ComparisonOperator NOT_EQUALS = new ComparisonOperator("NOT_EQUALS"); /// /// Constant STARTS_WITH for ComparisonOperator /// public static readonly ComparisonOperator STARTS_WITH = new ComparisonOperator("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 ComparisonOperator(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static ComparisonOperator FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator ComparisonOperator(string value) { return FindValue(value); } } /// /// Constants used for properties of type DataCollectionType. /// public class DataCollectionType : ConstantClass { /// /// Constant PREMIUM for DataCollectionType /// public static readonly DataCollectionType PREMIUM = new DataCollectionType("PREMIUM"); /// /// Constant PUBLIC for DataCollectionType /// public static readonly DataCollectionType PUBLIC = new DataCollectionType("PUBLIC"); /// /// Constant USER for DataCollectionType /// public static readonly DataCollectionType USER = new DataCollectionType("USER"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public DataCollectionType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static DataCollectionType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator DataCollectionType(string value) { return FindValue(value); } } /// /// Constants used for properties of type EarthObservationJobErrorType. /// public class EarthObservationJobErrorType : ConstantClass { /// /// Constant CLIENT_ERROR for EarthObservationJobErrorType /// public static readonly EarthObservationJobErrorType CLIENT_ERROR = new EarthObservationJobErrorType("CLIENT_ERROR"); /// /// Constant SERVER_ERROR for EarthObservationJobErrorType /// public static readonly EarthObservationJobErrorType SERVER_ERROR = new EarthObservationJobErrorType("SERVER_ERROR"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public EarthObservationJobErrorType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static EarthObservationJobErrorType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator EarthObservationJobErrorType(string value) { return FindValue(value); } } /// /// Constants used for properties of type EarthObservationJobExportStatus. /// public class EarthObservationJobExportStatus : ConstantClass { /// /// Constant FAILED for EarthObservationJobExportStatus /// public static readonly EarthObservationJobExportStatus FAILED = new EarthObservationJobExportStatus("FAILED"); /// /// Constant IN_PROGRESS for EarthObservationJobExportStatus /// public static readonly EarthObservationJobExportStatus IN_PROGRESS = new EarthObservationJobExportStatus("IN_PROGRESS"); /// /// Constant SUCCEEDED for EarthObservationJobExportStatus /// public static readonly EarthObservationJobExportStatus SUCCEEDED = new EarthObservationJobExportStatus("SUCCEEDED"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public EarthObservationJobExportStatus(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static EarthObservationJobExportStatus FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator EarthObservationJobExportStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type EarthObservationJobStatus. /// public class EarthObservationJobStatus : ConstantClass { /// /// Constant COMPLETED for EarthObservationJobStatus /// public static readonly EarthObservationJobStatus COMPLETED = new EarthObservationJobStatus("COMPLETED"); /// /// Constant DELETED for EarthObservationJobStatus /// public static readonly EarthObservationJobStatus DELETED = new EarthObservationJobStatus("DELETED"); /// /// Constant DELETING for EarthObservationJobStatus /// public static readonly EarthObservationJobStatus DELETING = new EarthObservationJobStatus("DELETING"); /// /// Constant FAILED for EarthObservationJobStatus /// public static readonly EarthObservationJobStatus FAILED = new EarthObservationJobStatus("FAILED"); /// /// Constant IN_PROGRESS for EarthObservationJobStatus /// public static readonly EarthObservationJobStatus IN_PROGRESS = new EarthObservationJobStatus("IN_PROGRESS"); /// /// Constant INITIALIZING for EarthObservationJobStatus /// public static readonly EarthObservationJobStatus INITIALIZING = new EarthObservationJobStatus("INITIALIZING"); /// /// Constant STOPPED for EarthObservationJobStatus /// public static readonly EarthObservationJobStatus STOPPED = new EarthObservationJobStatus("STOPPED"); /// /// Constant STOPPING for EarthObservationJobStatus /// public static readonly EarthObservationJobStatus STOPPING = new EarthObservationJobStatus("STOPPING"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public EarthObservationJobStatus(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static EarthObservationJobStatus FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator EarthObservationJobStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type ExportErrorType. /// public class ExportErrorType : ConstantClass { /// /// Constant CLIENT_ERROR for ExportErrorType /// public static readonly ExportErrorType CLIENT_ERROR = new ExportErrorType("CLIENT_ERROR"); /// /// Constant SERVER_ERROR for ExportErrorType /// public static readonly ExportErrorType SERVER_ERROR = new ExportErrorType("SERVER_ERROR"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public ExportErrorType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static ExportErrorType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator ExportErrorType(string value) { return FindValue(value); } } /// /// Constants used for properties of type GroupBy. /// public class GroupBy : ConstantClass { /// /// Constant ALL for GroupBy /// public static readonly GroupBy ALL = new GroupBy("ALL"); /// /// Constant YEARLY for GroupBy /// public static readonly GroupBy YEARLY = new GroupBy("YEARLY"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public GroupBy(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static GroupBy FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator GroupBy(string value) { return FindValue(value); } } /// /// Constants used for properties of type LogicalOperator. /// public class LogicalOperator : ConstantClass { /// /// Constant AND for LogicalOperator /// public static readonly LogicalOperator AND = new LogicalOperator("AND"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public LogicalOperator(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static LogicalOperator FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator LogicalOperator(string value) { return FindValue(value); } } /// /// Constants used for properties of type OutputType. /// public class OutputType : ConstantClass { /// /// Constant FLOAT32 for OutputType /// public static readonly OutputType FLOAT32 = new OutputType("FLOAT32"); /// /// Constant FLOAT64 for OutputType /// public static readonly OutputType FLOAT64 = new OutputType("FLOAT64"); /// /// Constant INT16 for OutputType /// public static readonly OutputType INT16 = new OutputType("INT16"); /// /// Constant INT32 for OutputType /// public static readonly OutputType INT32 = new OutputType("INT32"); /// /// Constant UINT16 for OutputType /// public static readonly OutputType UINT16 = new OutputType("UINT16"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public OutputType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static OutputType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator OutputType(string value) { return FindValue(value); } } /// /// Constants used for properties of type PredefinedResolution. /// public class PredefinedResolution : ConstantClass { /// /// Constant AVERAGE for PredefinedResolution /// public static readonly PredefinedResolution AVERAGE = new PredefinedResolution("AVERAGE"); /// /// Constant HIGHEST for PredefinedResolution /// public static readonly PredefinedResolution HIGHEST = new PredefinedResolution("HIGHEST"); /// /// Constant LOWEST for PredefinedResolution /// public static readonly PredefinedResolution LOWEST = new PredefinedResolution("LOWEST"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public PredefinedResolution(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static PredefinedResolution FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator PredefinedResolution(string value) { return FindValue(value); } } /// /// Constants used for properties of type SortOrder. /// public class SortOrder : ConstantClass { /// /// Constant ASCENDING for SortOrder /// public static readonly SortOrder ASCENDING = new SortOrder("ASCENDING"); /// /// Constant DESCENDING for SortOrder /// public static readonly SortOrder DESCENDING = new SortOrder("DESCENDING"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public SortOrder(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static SortOrder FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator SortOrder(string value) { return FindValue(value); } } /// /// Constants used for properties of type TargetOptions. /// public class TargetOptions : ConstantClass { /// /// Constant INPUT for TargetOptions /// public static readonly TargetOptions INPUT = new TargetOptions("INPUT"); /// /// Constant OUTPUT for TargetOptions /// public static readonly TargetOptions OUTPUT = new TargetOptions("OUTPUT"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public TargetOptions(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static TargetOptions FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator TargetOptions(string value) { return FindValue(value); } } /// /// Constants used for properties of type TemporalStatistics. /// public class TemporalStatistics : ConstantClass { /// /// Constant MEAN for TemporalStatistics /// public static readonly TemporalStatistics MEAN = new TemporalStatistics("MEAN"); /// /// Constant MEDIAN for TemporalStatistics /// public static readonly TemporalStatistics MEDIAN = new TemporalStatistics("MEDIAN"); /// /// Constant STANDARD_DEVIATION for TemporalStatistics /// public static readonly TemporalStatistics STANDARD_DEVIATION = new TemporalStatistics("STANDARD_DEVIATION"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public TemporalStatistics(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static TemporalStatistics FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator TemporalStatistics(string value) { return FindValue(value); } } /// /// Constants used for properties of type Unit. /// public class Unit : ConstantClass { /// /// Constant METERS for Unit /// public static readonly Unit METERS = new Unit("METERS"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public Unit(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static Unit FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator Unit(string value) { return FindValue(value); } } /// /// Constants used for properties of type VectorEnrichmentJobDocumentType. /// public class VectorEnrichmentJobDocumentType : ConstantClass { /// /// Constant CSV for VectorEnrichmentJobDocumentType /// public static readonly VectorEnrichmentJobDocumentType CSV = new VectorEnrichmentJobDocumentType("CSV"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public VectorEnrichmentJobDocumentType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static VectorEnrichmentJobDocumentType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator VectorEnrichmentJobDocumentType(string value) { return FindValue(value); } } /// /// Constants used for properties of type VectorEnrichmentJobErrorType. /// public class VectorEnrichmentJobErrorType : ConstantClass { /// /// Constant CLIENT_ERROR for VectorEnrichmentJobErrorType /// public static readonly VectorEnrichmentJobErrorType CLIENT_ERROR = new VectorEnrichmentJobErrorType("CLIENT_ERROR"); /// /// Constant SERVER_ERROR for VectorEnrichmentJobErrorType /// public static readonly VectorEnrichmentJobErrorType SERVER_ERROR = new VectorEnrichmentJobErrorType("SERVER_ERROR"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public VectorEnrichmentJobErrorType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static VectorEnrichmentJobErrorType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator VectorEnrichmentJobErrorType(string value) { return FindValue(value); } } /// /// Constants used for properties of type VectorEnrichmentJobExportErrorType. /// public class VectorEnrichmentJobExportErrorType : ConstantClass { /// /// Constant CLIENT_ERROR for VectorEnrichmentJobExportErrorType /// public static readonly VectorEnrichmentJobExportErrorType CLIENT_ERROR = new VectorEnrichmentJobExportErrorType("CLIENT_ERROR"); /// /// Constant SERVER_ERROR for VectorEnrichmentJobExportErrorType /// public static readonly VectorEnrichmentJobExportErrorType SERVER_ERROR = new VectorEnrichmentJobExportErrorType("SERVER_ERROR"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public VectorEnrichmentJobExportErrorType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static VectorEnrichmentJobExportErrorType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator VectorEnrichmentJobExportErrorType(string value) { return FindValue(value); } } /// /// Constants used for properties of type VectorEnrichmentJobExportStatus. /// public class VectorEnrichmentJobExportStatus : ConstantClass { /// /// Constant FAILED for VectorEnrichmentJobExportStatus /// public static readonly VectorEnrichmentJobExportStatus FAILED = new VectorEnrichmentJobExportStatus("FAILED"); /// /// Constant IN_PROGRESS for VectorEnrichmentJobExportStatus /// public static readonly VectorEnrichmentJobExportStatus IN_PROGRESS = new VectorEnrichmentJobExportStatus("IN_PROGRESS"); /// /// Constant SUCCEEDED for VectorEnrichmentJobExportStatus /// public static readonly VectorEnrichmentJobExportStatus SUCCEEDED = new VectorEnrichmentJobExportStatus("SUCCEEDED"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public VectorEnrichmentJobExportStatus(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static VectorEnrichmentJobExportStatus FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator VectorEnrichmentJobExportStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type VectorEnrichmentJobStatus. /// public class VectorEnrichmentJobStatus : ConstantClass { /// /// Constant COMPLETED for VectorEnrichmentJobStatus /// public static readonly VectorEnrichmentJobStatus COMPLETED = new VectorEnrichmentJobStatus("COMPLETED"); /// /// Constant DELETED for VectorEnrichmentJobStatus /// public static readonly VectorEnrichmentJobStatus DELETED = new VectorEnrichmentJobStatus("DELETED"); /// /// Constant DELETING for VectorEnrichmentJobStatus /// public static readonly VectorEnrichmentJobStatus DELETING = new VectorEnrichmentJobStatus("DELETING"); /// /// Constant FAILED for VectorEnrichmentJobStatus /// public static readonly VectorEnrichmentJobStatus FAILED = new VectorEnrichmentJobStatus("FAILED"); /// /// Constant IN_PROGRESS for VectorEnrichmentJobStatus /// public static readonly VectorEnrichmentJobStatus IN_PROGRESS = new VectorEnrichmentJobStatus("IN_PROGRESS"); /// /// Constant INITIALIZING for VectorEnrichmentJobStatus /// public static readonly VectorEnrichmentJobStatus INITIALIZING = new VectorEnrichmentJobStatus("INITIALIZING"); /// /// Constant STOPPED for VectorEnrichmentJobStatus /// public static readonly VectorEnrichmentJobStatus STOPPED = new VectorEnrichmentJobStatus("STOPPED"); /// /// Constant STOPPING for VectorEnrichmentJobStatus /// public static readonly VectorEnrichmentJobStatus STOPPING = new VectorEnrichmentJobStatus("STOPPING"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public VectorEnrichmentJobStatus(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static VectorEnrichmentJobStatus FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator VectorEnrichmentJobStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type VectorEnrichmentJobType. /// public class VectorEnrichmentJobType : ConstantClass { /// /// Constant MAP_MATCHING for VectorEnrichmentJobType /// public static readonly VectorEnrichmentJobType MAP_MATCHING = new VectorEnrichmentJobType("MAP_MATCHING"); /// /// Constant REVERSE_GEOCODING for VectorEnrichmentJobType /// public static readonly VectorEnrichmentJobType REVERSE_GEOCODING = new VectorEnrichmentJobType("REVERSE_GEOCODING"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public VectorEnrichmentJobType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static VectorEnrichmentJobType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator VectorEnrichmentJobType(string value) { return FindValue(value); } } /// /// Constants used for properties of type ZonalStatistics. /// public class ZonalStatistics : ConstantClass { /// /// Constant MAX for ZonalStatistics /// public static readonly ZonalStatistics MAX = new ZonalStatistics("MAX"); /// /// Constant MEAN for ZonalStatistics /// public static readonly ZonalStatistics MEAN = new ZonalStatistics("MEAN"); /// /// Constant MEDIAN for ZonalStatistics /// public static readonly ZonalStatistics MEDIAN = new ZonalStatistics("MEDIAN"); /// /// Constant MIN for ZonalStatistics /// public static readonly ZonalStatistics MIN = new ZonalStatistics("MIN"); /// /// Constant STANDARD_DEVIATION for ZonalStatistics /// public static readonly ZonalStatistics STANDARD_DEVIATION = new ZonalStatistics("STANDARD_DEVIATION"); /// /// Constant SUM for ZonalStatistics /// public static readonly ZonalStatistics SUM = new ZonalStatistics("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 ZonalStatistics(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static ZonalStatistics FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator ZonalStatistics(string value) { return FindValue(value); } } }