class Azure::Cosmosdb::Mgmt::V2015_04_08::Models::IncludedPath
The paths that are included in indexing
Attributes
indexes[RW]
@return [Array<Indexes>] List of indexes for this path
path[RW]
@return [String] The path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)
Public Class Methods
mapper()
click to toggle source
Mapper for IncludedPath
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-04-08/generated/azure_mgmt_cosmosdb/models/included_path.rb, line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IncludedPath', type: { name: 'Composite', class_name: 'IncludedPath', model_properties: { path: { client_side_validation: true, required: false, serialized_name: 'path', type: { name: 'String' } }, indexes: { client_side_validation: true, required: false, serialized_name: 'indexes', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'IndexesElementType', type: { name: 'Composite', class_name: 'Indexes' } } } } } } } end