package documentdb // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. // ConflictResolutionMode enumerates the values for conflict resolution mode. type ConflictResolutionMode string const ( // Custom ... Custom ConflictResolutionMode = "Custom" // LastWriterWins ... LastWriterWins ConflictResolutionMode = "LastWriterWins" ) // PossibleConflictResolutionModeValues returns an array of possible values for the ConflictResolutionMode const type. func PossibleConflictResolutionModeValues() []ConflictResolutionMode { return []ConflictResolutionMode{Custom, LastWriterWins} } // ConnectorOffer enumerates the values for connector offer. type ConnectorOffer string const ( // Small ... Small ConnectorOffer = "Small" ) // PossibleConnectorOfferValues returns an array of possible values for the ConnectorOffer const type. func PossibleConnectorOfferValues() []ConnectorOffer { return []ConnectorOffer{Small} } // DatabaseAccountKind enumerates the values for database account kind. type DatabaseAccountKind string const ( // GlobalDocumentDB ... GlobalDocumentDB DatabaseAccountKind = "GlobalDocumentDB" // MongoDB ... MongoDB DatabaseAccountKind = "MongoDB" // Parse ... Parse DatabaseAccountKind = "Parse" ) // PossibleDatabaseAccountKindValues returns an array of possible values for the DatabaseAccountKind const type. func PossibleDatabaseAccountKindValues() []DatabaseAccountKind { return []DatabaseAccountKind{GlobalDocumentDB, MongoDB, Parse} } // DatabaseAccountOfferType enumerates the values for database account offer type. type DatabaseAccountOfferType string const ( // Standard ... Standard DatabaseAccountOfferType = "Standard" ) // PossibleDatabaseAccountOfferTypeValues returns an array of possible values for the DatabaseAccountOfferType const type. func PossibleDatabaseAccountOfferTypeValues() []DatabaseAccountOfferType { return []DatabaseAccountOfferType{Standard} } // DataType enumerates the values for data type. type DataType string const ( // LineString ... LineString DataType = "LineString" // MultiPolygon ... MultiPolygon DataType = "MultiPolygon" // Number ... Number DataType = "Number" // Point ... Point DataType = "Point" // Polygon ... Polygon DataType = "Polygon" // String ... String DataType = "String" ) // PossibleDataTypeValues returns an array of possible values for the DataType const type. func PossibleDataTypeValues() []DataType { return []DataType{LineString, MultiPolygon, Number, Point, Polygon, String} } // DefaultConsistencyLevel enumerates the values for default consistency level. type DefaultConsistencyLevel string const ( // BoundedStaleness ... BoundedStaleness DefaultConsistencyLevel = "BoundedStaleness" // ConsistentPrefix ... ConsistentPrefix DefaultConsistencyLevel = "ConsistentPrefix" // Eventual ... Eventual DefaultConsistencyLevel = "Eventual" // Session ... Session DefaultConsistencyLevel = "Session" // Strong ... Strong DefaultConsistencyLevel = "Strong" ) // PossibleDefaultConsistencyLevelValues returns an array of possible values for the DefaultConsistencyLevel const type. func PossibleDefaultConsistencyLevelValues() []DefaultConsistencyLevel { return []DefaultConsistencyLevel{BoundedStaleness, ConsistentPrefix, Eventual, Session, Strong} } // IndexingMode enumerates the values for indexing mode. type IndexingMode string const ( // Consistent ... Consistent IndexingMode = "Consistent" // Lazy ... Lazy IndexingMode = "Lazy" // None ... None IndexingMode = "None" ) // PossibleIndexingModeValues returns an array of possible values for the IndexingMode const type. func PossibleIndexingModeValues() []IndexingMode { return []IndexingMode{Consistent, Lazy, None} } // IndexKind enumerates the values for index kind. type IndexKind string const ( // Hash ... Hash IndexKind = "Hash" // Range ... Range IndexKind = "Range" // Spatial ... Spatial IndexKind = "Spatial" ) // PossibleIndexKindValues returns an array of possible values for the IndexKind const type. func PossibleIndexKindValues() []IndexKind { return []IndexKind{Hash, Range, Spatial} } // KeyKind enumerates the values for key kind. type KeyKind string const ( // Primary ... Primary KeyKind = "primary" // PrimaryReadonly ... PrimaryReadonly KeyKind = "primaryReadonly" // Secondary ... Secondary KeyKind = "secondary" // SecondaryReadonly ... SecondaryReadonly KeyKind = "secondaryReadonly" ) // PossibleKeyKindValues returns an array of possible values for the KeyKind const type. func PossibleKeyKindValues() []KeyKind { return []KeyKind{Primary, PrimaryReadonly, Secondary, SecondaryReadonly} } // PartitionKind enumerates the values for partition kind. type PartitionKind string const ( // PartitionKindHash ... PartitionKindHash PartitionKind = "Hash" // PartitionKindRange ... PartitionKindRange PartitionKind = "Range" ) // PossiblePartitionKindValues returns an array of possible values for the PartitionKind const type. func PossiblePartitionKindValues() []PartitionKind { return []PartitionKind{PartitionKindHash, PartitionKindRange} } // PrimaryAggregationType enumerates the values for primary aggregation type. type PrimaryAggregationType string const ( // PrimaryAggregationTypeAverage ... PrimaryAggregationTypeAverage PrimaryAggregationType = "Average" // PrimaryAggregationTypeLast ... PrimaryAggregationTypeLast PrimaryAggregationType = "Last" // PrimaryAggregationTypeMaximum ... PrimaryAggregationTypeMaximum PrimaryAggregationType = "Maximum" // PrimaryAggregationTypeMinimum ... PrimaryAggregationTypeMinimum PrimaryAggregationType = "Minimum" // PrimaryAggregationTypeNone ... PrimaryAggregationTypeNone PrimaryAggregationType = "None" // PrimaryAggregationTypeTotal ... PrimaryAggregationTypeTotal PrimaryAggregationType = "Total" ) // PossiblePrimaryAggregationTypeValues returns an array of possible values for the PrimaryAggregationType const type. func PossiblePrimaryAggregationTypeValues() []PrimaryAggregationType { return []PrimaryAggregationType{PrimaryAggregationTypeAverage, PrimaryAggregationTypeLast, PrimaryAggregationTypeMaximum, PrimaryAggregationTypeMinimum, PrimaryAggregationTypeNone, PrimaryAggregationTypeTotal} } // UnitType enumerates the values for unit type. type UnitType string const ( // Bytes ... Bytes UnitType = "Bytes" // BytesPerSecond ... BytesPerSecond UnitType = "BytesPerSecond" // Count ... Count UnitType = "Count" // CountPerSecond ... CountPerSecond UnitType = "CountPerSecond" // Milliseconds ... Milliseconds UnitType = "Milliseconds" // Percent ... Percent UnitType = "Percent" // Seconds ... Seconds UnitType = "Seconds" ) // PossibleUnitTypeValues returns an array of possible values for the UnitType const type. func PossibleUnitTypeValues() []UnitType { return []UnitType{Bytes, BytesPerSecond, Count, CountPerSecond, Milliseconds, Percent, Seconds} }