class Azure::Web::Mgmt::V2020_09_01::Models::EndpointDetail

Current TCP connectivity information from the App Service Environment to a single endpoint.

Attributes

ip_address[RW]

@return [String] An IP Address that Domain Name currently resolves to.

is_accessible[RW]

@return [Boolean] Whether it is possible to create a TCP connection from the App Service Environment to this IpAddress at this Port.

latency[RW]

@return [Float] The time in milliseconds it takes for a TCP connection to be created from the App Service Environment to this IpAddress at this Port.

port[RW]

@return [Integer] The port an endpoint is connected to.

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-09-01/generated/azure_mgmt_web/models/endpoint_detail.rb, line 36
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'EndpointDetail',
    type: {
      name: 'Composite',
      class_name: 'EndpointDetail',
      model_properties: {
        ip_address: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ipAddress',
          type: {
            name: 'String'
          }
        },
        port: {
          client_side_validation: true,
          required: false,
          serialized_name: 'port',
          type: {
            name: 'Number'
          }
        },
        latency: {
          client_side_validation: true,
          required: false,
          serialized_name: 'latency',
          type: {
            name: 'Double'
          }
        },
        is_accessible: {
          client_side_validation: true,
          required: false,
          serialized_name: 'isAccessible',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end