Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetHttpsEndpoint
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ApplicationGetHttpsEndpoint
- 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
-
#access_modes ⇒ Array<String>
The list of access modes for the application.
-
#destination_port ⇒ Integer
The destination port to connect to.
-
#disable_gateway_auth ⇒ Boolean
The value indicates whether to disable GatewayAuth.
-
#location ⇒ String
The location of the endpoint.
-
#private_ipaddress ⇒ String
The private ip address of the endpoint.
-
#public_port ⇒ Integer
The public port to connect to.
-
#sub_domain_suffix ⇒ String
The subdomain suffix of the application.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGetHttpsEndpoint class as Ruby Hash.
Instance Attribute Details
#access_modes ⇒ Array<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_port ⇒ Integer
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_auth ⇒ Boolean
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 |
#location ⇒ String
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_ipaddress ⇒ String
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_port ⇒ Integer
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_suffix ⇒ String
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
.mapper ⇒ Object
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 |