Sha256: bd017b4f7c8e5b95209c23a007028688f2ad63d0fd3ced9073f22f885cd0d2ec
Contents?: true
Size: 1.83 KB
Versions: 2
Compression:
Stored size: 1.83 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 # # Describes destination endpoint for routing traffic. # class GatewayDestination include MsRestAzure # @return [String] Name of the service fabric Mesh application. attr_accessor :application_name # @return [String] service that contains the endpoint. attr_accessor :service_name # @return [String] name of the endpoint in the service. attr_accessor :endpoint_name # # Mapper for GatewayDestination class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end
Version data entries
2 entries across 2 versions & 1 rubygems