class Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetEndpoint

Gets the application SSH endpoint

Attributes

destination_port[RW]

@return [Integer] The destination port to connect to.

location[RW]

@return [String] The location of the endpoint.

private_ipaddress[RW]

@return [String] The private ip address of the endpoint.

public_port[RW]

@return [Integer] The public port to connect to.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_endpoint.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGetEndpoint',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGetEndpoint',
      model_properties: {
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        destination_port: {
          client_side_validation: true,
          required: false,
          serialized_name: 'destinationPort',
          type: {
            name: 'Number'
          }
        },
        public_port: {
          client_side_validation: true,
          required: false,
          serialized_name: 'publicPort',
          type: {
            name: 'Number'
          }
        },
        private_ipaddress: {
          client_side_validation: true,
          required: false,
          serialized_name: 'privateIPAddress',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end