Class: Azure::Hanaonazure::Mgmt::V2017_11_03_preview::Models::IpAddress
- Inherits:
-
Object
- Object
- Azure::Hanaonazure::Mgmt::V2017_11_03_preview::Models::IpAddress
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/ip_address.rb
Overview
Specifies the IP address of the network interface.
Instance Attribute Summary collapse
-
#ip_address ⇒ String
Specifies the IP address of the network interface.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for IpAddress class as Ruby Hash.
Instance Attribute Details
#ip_address ⇒ String
Returns Specifies the IP address of the network interface.
16 17 18 |
# File 'lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/ip_address.rb', line 16 def ip_address @ip_address end |
Class Method Details
.mapper ⇒ Object
Mapper for IpAddress class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/ip_address.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IpAddress', type: { name: 'Composite', class_name: 'IpAddress', model_properties: { ip_address: { client_side_validation: true, required: false, serialized_name: 'ipAddress', type: { name: 'String' } } } } } end |