class Azure::ServiceFabric::V6_5_0_36::Models::GatewayDestination
Describes destination endpoint for routing traffic.
Attributes
application_name[RW]
@return [String] Name of the service fabric Mesh application.
endpoint_name[RW]
@return [String] name of the endpoint in the service.
service_name[RW]
@return [String] service that contains the endpoint.
Public Class Methods
mapper()
click to toggle source
Mapper for GatewayDestination
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.5.0.36/generated/azure_service_fabric/models/gateway_destination.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GatewayDestination', type: { name: 'Composite', class_name: 'GatewayDestination', model_properties: { application_name: { client_side_validation: true, required: true, serialized_name: 'applicationName', type: { name: 'String' } }, service_name: { client_side_validation: true, required: true, serialized_name: 'serviceName', type: { name: 'String' } }, endpoint_name: { client_side_validation: true, required: true, serialized_name: 'endpointName', type: { name: 'String' } } } } } end