Class: Azure::Network::Mgmt::V2020_04_01::Models::LoadBalancerBackendAddress
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2020_04_01::Models::LoadBalancerBackendAddress
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-04-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb
Overview
Load balancer backend addresses.
Instance Attribute Summary collapse
-
#ip_address ⇒ String
network.
-
#name ⇒ String
Name of the backend address.
-
#network_interface_ipconfiguration ⇒ SubResource
interfaces.
-
#virtual_network ⇒ SubResource
Reference to an existing virtual network.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for LoadBalancerBackendAddress class as Ruby Hash.
Instance Attribute Details
#ip_address ⇒ String
network.
20 21 22 |
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 20 def ip_address @ip_address end |
#name ⇒ String
Returns Name of the backend address.
27 28 29 |
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 27 def name @name end |
#network_interface_ipconfiguration ⇒ SubResource
interfaces.
24 25 26 |
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 24 def network_interface_ipconfiguration @network_interface_ipconfiguration end |
#virtual_network ⇒ SubResource
Returns Reference to an existing virtual network.
16 17 18 |
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 16 def virtual_network @virtual_network end |
Class Method Details
.mapper ⇒ Object
Mapper for LoadBalancerBackendAddress class as Ruby Hash. This will be used for serialization/deserialization.
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'LoadBalancerBackendAddress', type: { name: 'Composite', class_name: 'LoadBalancerBackendAddress', model_properties: { virtual_network: { client_side_validation: true, required: false, serialized_name: 'properties.virtualNetwork', type: { name: 'Composite', class_name: 'SubResource' } }, ip_address: { client_side_validation: true, required: false, serialized_name: 'properties.ipAddress', type: { name: 'String' } }, network_interface_ipconfiguration: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.networkInterfaceIPConfiguration', type: { name: 'Composite', class_name: 'SubResource' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } } } } } end |