Sha256: aacac07e6bf6e8451e67f01e1b7807c0153da9eef5c334aca3111167f4c71977
Contents?: true
Size: 1.74 KB
Versions: 3
Compression:
Stored size: 1.74 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_5_0_36 module Models # # Endpoint of a resolved service partition. # class ResolvedServiceEndpoint include MsRestAzure # @return [ServiceEndpointRole] The role of the replica where the # endpoint is reported. Possible values include: 'Invalid', 'Stateless', # 'StatefulPrimary', 'StatefulSecondary' attr_accessor :kind # @return [String] The address of the endpoint. If the endpoint has # multiple listeners the address is a JSON object with one property per # listener with the value as the address of that listener. attr_accessor :address # # Mapper for ResolvedServiceEndpoint class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ResolvedServiceEndpoint', type: { name: 'Composite', class_name: 'ResolvedServiceEndpoint', model_properties: { kind: { client_side_validation: true, required: false, serialized_name: 'Kind', type: { name: 'String' } }, address: { client_side_validation: true, required: false, serialized_name: 'Address', type: { name: 'String' } } } } } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems