Sha256: 5ba47351355da1dfa9c96105886ade9e2b0fd899ebd7dc48fb3a3ab0410cc183
Contents?: true
Size: 1.27 KB
Versions: 5
Compression:
Stored size: 1.27 KB
Contents
# 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::ServiceFabric::V6_4_0_36 module Models # # Describes the partition scheme of a singleton-partitioned, or # non-partitioned service. # class SingletonPartitionSchemeDescription < PartitionSchemeDescription include MsRestAzure def initialize @PartitionScheme = "Singleton" end attr_accessor :PartitionScheme # # Mapper for SingletonPartitionSchemeDescription class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Singleton', type: { name: 'Composite', class_name: 'SingletonPartitionSchemeDescription', model_properties: { PartitionScheme: { client_side_validation: true, required: true, serialized_name: 'PartitionScheme', type: { name: 'String' } } } } } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems