Class: Azure::Cosmosdb::Mgmt::V2019_08_01::Models::MongoIndex
- Inherits:
-
Object
- Object
- Azure::Cosmosdb::Mgmt::V2019_08_01::Models::MongoIndex
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/mongo_index.rb
Overview
Cosmos DB MongoDB collection index key
Instance Attribute Summary collapse
-
#key ⇒ MongoIndexKeys
Cosmos DB MongoDB collection index keys.
-
#options ⇒ MongoIndexOptions
options.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MongoIndex class as Ruby Hash.
Instance Attribute Details
#key ⇒ MongoIndexKeys
Returns Cosmos DB MongoDB collection index keys.
16 17 18 |
# File 'lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/mongo_index.rb', line 16 def key @key end |
#options ⇒ MongoIndexOptions
options
20 21 22 |
# File 'lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/mongo_index.rb', line 20 def @options end |
Class Method Details
.mapper ⇒ Object
Mapper for MongoIndex class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/mongo_index.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MongoIndex', type: { name: 'Composite', class_name: 'MongoIndex', model_properties: { key: { client_side_validation: true, required: false, serialized_name: 'key', type: { name: 'Composite', class_name: 'MongoIndexKeys' } }, options: { client_side_validation: true, required: false, serialized_name: 'options', type: { name: 'Composite', class_name: 'MongoIndexOptions' } } } } } end |