Class: Azure::Web::Mgmt::V2018_02_01::Models::NetworkFeatures
- Inherits:
-
ProxyOnlyResource
- Object
- ProxyOnlyResource
- Azure::Web::Mgmt::V2018_02_01::Models::NetworkFeatures
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/network_features.rb
Overview
Full view of network features for an app (presently VNET integration and Hybrid Connections).
Instance Attribute Summary collapse
-
#hybrid_connections ⇒ Array<RelayServiceConnectionEntity>
summary view.
-
#hybrid_connections_v2 ⇒ Array<HybridConnection>
Bus) view.
-
#virtual_network_connection ⇒ VnetInfo
The Virtual Network summary view.
-
#virtual_network_name ⇒ String
The Virtual Network name.
Attributes inherited from ProxyOnlyResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for NetworkFeatures class as Ruby Hash.
Instance Attribute Details
#hybrid_connections ⇒ Array<RelayServiceConnectionEntity>
summary view.
24 25 26 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/network_features.rb', line 24 def hybrid_connections @hybrid_connections end |
#hybrid_connections_v2 ⇒ Array<HybridConnection>
Bus) view.
28 29 30 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/network_features.rb', line 28 def hybrid_connections_v2 @hybrid_connections_v2 end |
#virtual_network_connection ⇒ VnetInfo
20 21 22 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/network_features.rb', line 20 def virtual_network_connection @virtual_network_connection end |
#virtual_network_name ⇒ String
17 18 19 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/network_features.rb', line 17 def virtual_network_name @virtual_network_name end |
Class Method Details
.mapper ⇒ Object
Mapper for NetworkFeatures class as Ruby Hash. This will be used for serialization/deserialization.
35 36 37 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/network_features.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NetworkFeatures', type: { name: 'Composite', class_name: 'NetworkFeatures', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, virtual_network_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.virtualNetworkName', type: { name: 'String' } }, virtual_network_connection: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.virtualNetworkConnection', type: { name: 'Composite', class_name: 'VnetInfo' } }, hybrid_connections: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.hybridConnections', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'RelayServiceConnectionEntityElementType', type: { name: 'Composite', class_name: 'RelayServiceConnectionEntity' } } } }, hybrid_connections_v2: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.hybridConnectionsV2', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'HybridConnectionElementType', type: { name: 'Composite', class_name: 'HybridConnection' } } } } } } } end |