class Azure::Hdinsight::Mgmt::V2015_03_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] Disable gateway authentication.
location[RW]
@return [String] The location 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.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationGetHttpsEndpoint
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb, line 38 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' } }, 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