Class: Azure::Network::Mgmt::V2018_08_01::Models::IPConfigurationProfile
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Network::Mgmt::V2018_08_01::Models::IPConfigurationProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-08-01/generated/azure_mgmt_network/models/ipconfiguration_profile.rb
Overview
IP configuration profile child resource.
Instance Attribute Summary collapse
-
#etag ⇒ String
resource is updated.
-
#name ⇒ String
access the resource.
-
#provisioning_state ⇒ String
The provisioning state of the resource.
-
#subnet ⇒ Subnet
container network interface ip configuration.
-
#type ⇒ String
Sub Resource type.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for IPConfigurationProfile class as Ruby Hash.
Instance Attribute Details
#etag ⇒ String
resource is updated.
31 32 33 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/ipconfiguration_profile.rb', line 31 def etag @etag end |
#name ⇒ String
access the resource.
24 25 26 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/ipconfiguration_profile.rb', line 24 def name @name end |
#provisioning_state ⇒ String
Returns The provisioning state of the resource.
20 21 22 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/ipconfiguration_profile.rb', line 20 def provisioning_state @provisioning_state end |
#subnet ⇒ Subnet
container network interface ip configuration.
17 18 19 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/ipconfiguration_profile.rb', line 17 def subnet @subnet end |
#type ⇒ String
Returns Sub Resource type.
27 28 29 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/ipconfiguration_profile.rb', line 27 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for IPConfigurationProfile class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/ipconfiguration_profile.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IPConfigurationProfile', type: { name: 'Composite', class_name: 'IPConfigurationProfile', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, subnet: { client_side_validation: true, required: false, serialized_name: 'properties.subnet', type: { name: 'Composite', class_name: 'Subnet' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, etag: { client_side_validation: true, required: false, serialized_name: 'etag', type: { name: 'String' } } } } } end |