Class: Azure::ARM::Network::Models::NetworkInterfaceIpConfigurationPropertiesFormat
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::NetworkInterfaceIpConfigurationPropertiesFormat
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb
Overview
Properties of IPConfiguration
Instance Attribute Summary collapse
-
#load_balancer_backend_address_pools ⇒ Array<SubResource>
LoadBalancerBackendAddressPool resource.
-
#load_balancer_inbound_nat_rules ⇒ Array<SubResource>
LoadBalancerInboundNatRules.
-
#private_ipaddress ⇒ String
Interface IP Configuration.
-
#private_ipallocation_method ⇒ IpAllocationMethod
(Static/Dynamic).
-
#provisioning_state ⇒ String
resource Updating/Deleting/Failed.
-
#public_ipaddress ⇒ SubResource
resource.
-
#subnet ⇒ SubResource
Gets or sets the reference of the subnet resource.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ NetworkInterfaceIpConfigurationPropertiesFormat
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#load_balancer_backend_address_pools ⇒ Array<SubResource>
LoadBalancerBackendAddressPool resource
33 34 35 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 33 def load_balancer_backend_address_pools @load_balancer_backend_address_pools end |
#load_balancer_inbound_nat_rules ⇒ Array<SubResource>
LoadBalancerInboundNatRules
37 38 39 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 37 def load_balancer_inbound_nat_rules @load_balancer_inbound_nat_rules end |
#private_ipaddress ⇒ String
Interface IP Configuration
17 18 19 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 17 def private_ipaddress @private_ipaddress end |
#private_ipallocation_method ⇒ IpAllocationMethod
(Static/Dynamic). Possible values for this property include: ‘Static’, ‘Dynamic’.
22 23 24 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 22 def private_ipallocation_method @private_ipallocation_method end |
#provisioning_state ⇒ String
resource Updating/Deleting/Failed
41 42 43 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 41 def provisioning_state @provisioning_state end |
#public_ipaddress ⇒ SubResource
resource
29 30 31 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 29 def public_ipaddress @public_ipaddress end |
#subnet ⇒ SubResource
Returns Gets or sets the reference of the subnet resource.
25 26 27 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 25 def subnet @subnet end |
Class Method Details
.deserialize_object(object) ⇒ NetworkInterfaceIpConfigurationPropertiesFormat
Deserializes given Ruby Hash into Model object. object.
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 118 def self.deserialize_object(object) return if object.nil? output_object = NetworkInterfaceIpConfigurationPropertiesFormat.new deserialized_property = object['privateIPAddress'] output_object.private_ipaddress = deserialized_property deserialized_property = object['privateIPAllocationMethod'] if (!deserialized_property.nil? && !deserialized_property.empty?) enum_is_valid = IpAllocationMethod.constants.any? { |e| IpAllocationMethod.const_get(e).to_s.downcase == deserialized_property.downcase } fail MsRest::DeserializationError.new('Error occured while deserializing the enum', nil, nil, nil) unless enum_is_valid end output_object.private_ipallocation_method = deserialized_property deserialized_property = object['subnet'] unless deserialized_property.nil? deserialized_property = SubResource.deserialize_object(deserialized_property) end output_object.subnet = deserialized_property deserialized_property = object['publicIPAddress'] unless deserialized_property.nil? deserialized_property = SubResource.deserialize_object(deserialized_property) end output_object.public_ipaddress = deserialized_property deserialized_property = object['loadBalancerBackendAddressPools'] unless deserialized_property.nil? deserializedArray = []; deserialized_property.each do |element2| unless element2.nil? element2 = SubResource.deserialize_object(element2) end deserializedArray.push(element2); end deserialized_property = deserializedArray; end output_object.load_balancer_backend_address_pools = deserialized_property deserialized_property = object['loadBalancerInboundNatRules'] unless deserialized_property.nil? deserializedArray = []; deserialized_property.each do |element3| unless element3.nil? element3 = SubResource.deserialize_object(element3) end deserializedArray.push(element3); end deserialized_property = deserializedArray; end output_object.load_balancer_inbound_nat_rules = deserialized_property deserialized_property = object['provisioningState'] output_object.provisioning_state = deserialized_property output_object.validate output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
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 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 58 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.private_ipaddress output_object['privateIPAddress'] = serialized_property unless serialized_property.nil? serialized_property = object.private_ipallocation_method output_object['privateIPAllocationMethod'] = serialized_property unless serialized_property.nil? serialized_property = object.subnet unless serialized_property.nil? serialized_property = SubResource.serialize_object(serialized_property) end output_object['subnet'] = serialized_property unless serialized_property.nil? serialized_property = object.public_ipaddress unless serialized_property.nil? serialized_property = SubResource.serialize_object(serialized_property) end output_object['publicIPAddress'] = serialized_property unless serialized_property.nil? serialized_property = object.load_balancer_backend_address_pools unless serialized_property.nil? serializedArray = [] serialized_property.each do |element| unless element.nil? element = SubResource.serialize_object(element) end serializedArray.push(element) end serialized_property = serializedArray end output_object['loadBalancerBackendAddressPools'] = serialized_property unless serialized_property.nil? serialized_property = object.load_balancer_inbound_nat_rules unless serialized_property.nil? serializedArray = [] serialized_property.each do |element1| unless element1.nil? element1 = SubResource.serialize_object(element1) end serializedArray.push(element1) end serialized_property = serializedArray end output_object['loadBalancerInboundNatRules'] = serialized_property unless serialized_property.nil? serialized_property = object.provisioning_state output_object['provisioningState'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
46 47 48 49 50 51 |
# File 'lib/azure_mgmt_network/models/network_interface_ip_configuration_properties_format.rb', line 46 def validate @subnet.validate unless @subnet.nil? @public_ipaddress.validate unless @public_ipaddress.nil? @load_balancer_backend_address_pools.each{ |e| e.validate if e.respond_to?(:validate) } unless @load_balancer_backend_address_pools.nil? @load_balancer_inbound_nat_rules.each{ |e| e.validate if e.respond_to?(:validate) } unless @load_balancer_inbound_nat_rules.nil? end |