Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetHttpsEndpoint

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb

Overview

Gets the application HTTP endpoints.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#access_modesArray<String>

Returns The list of access modes for the application.

Returns:

  • (Array<String>)

    The list of access modes for the application.



16
17
18
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb', line 16

def access_modes
  @access_modes
end

#destination_portInteger

Returns The destination port to connect to.

Returns:

  • (Integer)

    The destination port to connect to.



22
23
24
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb', line 22

def destination_port
  @destination_port
end

#disable_gateway_authBoolean

Returns The value indicates whether to disable GatewayAuth.

Returns:

  • (Boolean)

    The value indicates whether to disable GatewayAuth.



31
32
33
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb', line 31

def disable_gateway_auth
  @disable_gateway_auth
end

#locationString

Returns The location of the endpoint.

Returns:

  • (String)

    The location of the endpoint.



19
20
21
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb', line 19

def location
  @location
end

#public_portInteger

Returns The public port to connect to.

Returns:

  • (Integer)

    The public port to connect to.



25
26
27
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb', line 25

def public_port
  @public_port
end

#sub_domain_suffixString

Returns The subdomain suffix of the application.

Returns:

  • (String)

    The subdomain suffix of the application.



28
29
30
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb', line 28

def sub_domain_suffix
  @sub_domain_suffix
end

Class Method Details

.mapperObject

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



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/2018-06-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