class Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetHttpsEndpoint

Gets the application HTTP endpoints.

Attributes

access_modes[RW]

@return [Array<String>] The list of access modes for the application.

destination_port[RW]

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

disable_gateway_auth[RW]

@return [Boolean] The value indicates whether to disable GatewayAuth.

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.

sub_domain_suffix[RW]

@return [String] The subdomain suffix of the application.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb, line 41
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGetHttpsEndpoint',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGetHttpsEndpoint',
      model_properties: {
        access_modes: {
          client_side_validation: true,
          required: false,
          serialized_name: 'accessModes',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        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'
          }
        },
        sub_domain_suffix: {
          client_side_validation: true,
          required: false,
          serialized_name: 'subDomainSuffix',
          type: {
            name: 'String'
          }
        },
        disable_gateway_auth: {
          client_side_validation: true,
          required: false,
          serialized_name: 'disableGatewayAuth',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end