Class: Azure::ServiceFabric::V6_4_0_36::Models::ResolvedServiceEndpoint
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_4_0_36::Models::ResolvedServiceEndpoint
- Includes:
- MsRestAzure
- Defined in:
- lib/6.4.0.36/generated/azure_service_fabric/models/resolved_service_endpoint.rb
Overview
Endpoint of a resolved service partition.
Instance Attribute Summary collapse
-
#address ⇒ String
multiple listeners the address is a JSON object with one property per listener with the value as the address of that listener.
-
#kind ⇒ ServiceEndpointRole
endpoint is reported.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ResolvedServiceEndpoint class as Ruby Hash.
Instance Attribute Details
#address ⇒ String
multiple listeners the address is a JSON object with one property per listener with the value as the address of that listener.
23 24 25 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/resolved_service_endpoint.rb', line 23 def address @address end |
#kind ⇒ ServiceEndpointRole
endpoint is reported. Possible values include: ‘Invalid’, ‘Stateless’, ‘StatefulPrimary’, ‘StatefulSecondary’
18 19 20 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/resolved_service_endpoint.rb', line 18 def kind @kind end |
Class Method Details
.mapper ⇒ Object
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.4.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 |