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>



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



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



34
35
36
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb', line 34

def disable_gateway_auth
  @disable_gateway_auth
end

#locationString



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

#private_ipaddressString



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

def private_ipaddress
  @private_ipaddress
end

#public_portInteger



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



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

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.



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
107
108
109
110
111
112
113
114
115
116
117
# 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