Class: Azure::ServiceFabric::V6_5_0_36::Models::ResolvedServiceEndpoint

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/resolved_service_endpoint.rb

Overview

Endpoint of a resolved service partition.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#addressString

multiple listeners the address is a JSON object with one property per listener with the value as the address of that listener.

Returns:

  • (String)

    The address of the endpoint. If the endpoint has



23
24
25
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/resolved_service_endpoint.rb', line 23

def address
  @address
end

#kindServiceEndpointRole

endpoint is reported. Possible values include: ‘Invalid’, ‘Stateless’, ‘StatefulPrimary’, ‘StatefulSecondary’

Returns:



18
19
20
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/resolved_service_endpoint.rb', line 18

def kind
  @kind
end

Class Method Details

.mapperObject

Mapper for ResolvedServiceEndpoint class as Ruby Hash. This will be used for serialization/deserialization.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/resolved_service_endpoint.rb', line 30

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