Sha256: fec9352254a088b9947eb183a13d382ff717a35d2c4d43d0cbc09d4da1774d54
Contents?: true
Size: 1.82 KB
Versions: 2
Compression:
Stored size: 1.82 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::V7_0_0_42 module Models # # This class returns information about the partition that the user-induced # operation acted upon. # class SelectedPartition include MsRestAzure # @return [String] The name of the service the partition belongs to. attr_accessor :service_name # @return An internal ID used by Service Fabric to uniquely identify a # partition. This is a randomly generated GUID when the service was # created. The partition ID is unique and does not change for the # lifetime of the service. If the same service was deleted and recreated # the IDs of its partitions would be different. attr_accessor :partition_id # # Mapper for SelectedPartition class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SelectedPartition', type: { name: 'Composite', class_name: 'SelectedPartition', model_properties: { service_name: { client_side_validation: true, required: false, serialized_name: 'ServiceName', type: { name: 'String' } }, partition_id: { client_side_validation: true, required: false, serialized_name: 'PartitionId', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems