# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Cosmosdb::Mgmt::V2019_12_12 module Models # # The configuration of the partition key to be used for partitioning data # into multiple partitions # class ContainerPartitionKey include MsRestAzure # @return [Array] List of paths using which data within the # container can be partitioned attr_accessor :paths # @return [PartitionKind] Indicates the kind of algorithm used for # partitioning. Possible values include: 'Hash', 'Range'. Default value: # 'Hash' . attr_accessor :kind # @return [Integer] Indicates the version of the partition key definition attr_accessor :version # # Mapper for ContainerPartitionKey class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerPartitionKey', type: { name: 'Composite', class_name: 'ContainerPartitionKey', model_properties: { paths: { client_side_validation: true, required: false, serialized_name: 'paths', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', default_value: 'Hash', type: { name: 'String' } }, version: { client_side_validation: true, required: false, serialized_name: 'version', constraints: { InclusiveMaximum: 2, InclusiveMinimum: 1 }, type: { name: 'Number' } } } } } end end end end