# 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::Web::Mgmt::V2020_09_01 module Models # # A domain name that a service is reached at, including details of the # current connection status. # class EndpointDependency include MsRestAzure # @return [String] The domain name of the dependency. attr_accessor :domain_name # @return [Array] The IP Addresses and Ports used when # connecting to DomainName. attr_accessor :endpoint_details # # Mapper for EndpointDependency class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EndpointDependency', type: { name: 'Composite', class_name: 'EndpointDependency', model_properties: { domain_name: { client_side_validation: true, required: false, serialized_name: 'domainName', type: { name: 'String' } }, endpoint_details: { client_side_validation: true, required: false, serialized_name: 'endpointDetails', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'EndpointDetailElementType', type: { name: 'Composite', class_name: 'EndpointDetail' } } } } } } } end end end end