class Azure::Hdinsight::Mgmt::V2015_03_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.

public_port[RW]

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

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/application_get_endpoint.rb, line 29
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'
          }
        }
      }
    }
  }
end