Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::NetworkProperties
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::NetworkProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/network_properties.rb
Overview
The network properties.
Instance Attribute Summary collapse
-
#private_link ⇒ PrivateLink
Possible values include: ‘Disabled’, ‘Enabled’.
-
#resource_provider_connection ⇒ ResourceProviderConnection
provider connection.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for NetworkProperties class as Ruby Hash.
Instance Attribute Details
#private_link ⇒ PrivateLink
Possible values include: ‘Disabled’, ‘Enabled’
21 22 23 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/network_properties.rb', line 21 def private_link @private_link end |
#resource_provider_connection ⇒ ResourceProviderConnection
provider connection. Possible values include: ‘Inbound’, ‘Outbound’
17 18 19 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/network_properties.rb', line 17 def resource_provider_connection @resource_provider_connection end |
Class Method Details
.mapper ⇒ Object
Mapper for NetworkProperties class as Ruby Hash. This will be used for serialization/deserialization.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/network_properties.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NetworkProperties', type: { name: 'Composite', class_name: 'NetworkProperties', model_properties: { resource_provider_connection: { client_side_validation: true, required: false, serialized_name: 'resourceProviderConnection', type: { name: 'String' } }, private_link: { client_side_validation: true, required: false, serialized_name: 'privateLink', type: { name: 'String' } } } } } end |