Class: Azure::Cosmosdb::Mgmt::V2019_08_01::Models::CompositePath
- Inherits:
-
Object
- Object
- Azure::Cosmosdb::Mgmt::V2019_08_01::Models::CompositePath
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/composite_path.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#order ⇒ CompositePathSortOrder
Possible values include: ‘Ascending’, ‘Descending’.
-
#path ⇒ String
Index paths typically start with root and end with wildcard (/path/*).
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CompositePath class as Ruby Hash.
Instance Attribute Details
#order ⇒ CompositePathSortOrder
Possible values include: ‘Ascending’, ‘Descending’
22 23 24 |
# File 'lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/composite_path.rb', line 22 def order @order end |
#path ⇒ String
Index paths typically start with root and end with wildcard (/path/*)
18 19 20 |
# File 'lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/composite_path.rb', line 18 def path @path end |
Class Method Details
.mapper ⇒ Object
Mapper for CompositePath class as Ruby Hash. This will be used for serialization/deserialization.
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/composite_path.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CompositePath', type: { name: 'Composite', class_name: 'CompositePath', model_properties: { path: { client_side_validation: true, required: false, serialized_name: 'path', type: { name: 'String' } }, order: { client_side_validation: true, required: false, serialized_name: 'order', type: { name: 'String' } } } } } end |