Class: Azure::Hanaonazure::Mgmt::V2017_11_03_preview::Models::NetworkProfile
- Inherits:
-
Object
- Object
- Azure::Hanaonazure::Mgmt::V2017_11_03_preview::Models::NetworkProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/network_profile.rb
Overview
Specifies the network settings for the HANA instance disks.
Instance Attribute Summary collapse
-
#circuit_id ⇒ String
route.
-
#network_interfaces ⇒ Array<IpAddress>
HANA instance.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for NetworkProfile class as Ruby Hash.
Instance Attribute Details
#circuit_id ⇒ String
route.
21 22 23 |
# File 'lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/network_profile.rb', line 21 def circuit_id @circuit_id end |
#network_interfaces ⇒ Array<IpAddress>
HANA instance.
17 18 19 |
# File 'lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/network_profile.rb', line 17 def network_interfaces @network_interfaces end |
Class Method Details
.mapper ⇒ Object
Mapper for NetworkProfile 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 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/network_profile.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NetworkProfile', type: { name: 'Composite', class_name: 'NetworkProfile', model_properties: { network_interfaces: { client_side_validation: true, required: false, serialized_name: 'networkInterfaces', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'IpAddressElementType', type: { name: 'Composite', class_name: 'IpAddress' } } } }, circuit_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'circuitId', type: { name: 'String' } } } } } end |