Class: Azure::Network::Mgmt::V2020_07_01::Models::LoadBalancerBackendAddress
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2020_07_01::Models::LoadBalancerBackendAddress
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-07-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb
Overview
Load balancer backend addresses.
Instance Attribute Summary collapse
-
#ip_address ⇒ String
network.
-
#load_balancer_frontend_ipconfiguration ⇒ SubResource
configuration defined in regional loadbalancer.
-
#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-07-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 20 def ip_address @ip_address end |
#load_balancer_frontend_ipconfiguration ⇒ SubResource
configuration defined in regional loadbalancer.
28 29 30 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 28 def load_balancer_frontend_ipconfiguration @load_balancer_frontend_ipconfiguration end |
#name ⇒ String
Returns Name of the backend address.
31 32 33 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 31 def name @name end |
#network_interface_ipconfiguration ⇒ SubResource
interfaces.
24 25 26 |
# File 'lib/2020-07-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-07-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.
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 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/load_balancer_backend_address.rb', line 38 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' } }, load_balancer_frontend_ipconfiguration: { client_side_validation: true, required: false, serialized_name: 'properties.loadBalancerFrontendIPConfiguration', type: { name: 'Composite', class_name: 'SubResource' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } } } } } end |