Class: Azure::ARM::Network::Models::ApplicationGatewayBackendAddressPool
- Inherits:
-
MsRestAzure::SubResource
- Object
- MsRestAzure::SubResource
- Azure::ARM::Network::Models::ApplicationGatewayBackendAddressPool
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb
Overview
Backend Address Pool of an application gateway.
Instance Attribute Summary collapse
-
#backend_addresses ⇒ Array<ApplicationGatewayBackendAddress>
Backend addresses.
-
#backend_ipconfigurations ⇒ Array<NetworkInterfaceIPConfiguration>
references to IPs defined in network interfaces.
-
#etag ⇒ String
resource is updated.
-
#name ⇒ String
name can be used to access the resource.
-
#provisioning_state ⇒ String
resource.
-
#type ⇒ String
Type of the resource.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayBackendAddressPool class as Ruby Hash.
Instance Attribute Details
#backend_addresses ⇒ Array<ApplicationGatewayBackendAddress>
Returns Backend addresses.
21 22 23 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 21 def backend_addresses @backend_addresses end |
#backend_ipconfigurations ⇒ Array<NetworkInterfaceIPConfiguration>
references to IPs defined in network interfaces.
18 19 20 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 18 def backend_ipconfigurations @backend_ipconfigurations end |
#etag ⇒ String
resource is updated.
33 34 35 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 33 def etag @etag end |
#name ⇒ String
name can be used to access the resource.
29 30 31 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 29 def name @name end |
#provisioning_state ⇒ String
resource. Possible values are: ‘Updating’, ‘Deleting’, and ‘Failed’.
25 26 27 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 25 def provisioning_state @provisioning_state end |
#type ⇒ String
Returns Type of the resource.
36 37 38 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 36 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayBackendAddressPool class as Ruby Hash. This will be used for serialization/deserialization.
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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 43 def self.mapper() { required: false, serialized_name: 'ApplicationGatewayBackendAddressPool', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendAddressPool', model_properties: { id: { required: false, serialized_name: 'id', type: { name: 'String' } }, backend_ipconfigurations: { required: false, serialized_name: 'properties.backendIPConfigurations', type: { name: 'Sequence', element: { required: false, serialized_name: 'NetworkInterfaceIPConfigurationElementType', type: { name: 'Composite', class_name: 'NetworkInterfaceIPConfiguration' } } } }, backend_addresses: { required: false, serialized_name: 'properties.backendAddresses', type: { name: 'Sequence', element: { required: false, serialized_name: 'ApplicationGatewayBackendAddressElementType', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendAddress' } } } }, provisioning_state: { required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, name: { required: false, serialized_name: 'name', type: { name: 'String' } }, etag: { required: false, serialized_name: 'etag', type: { name: 'String' } }, type: { required: false, serialized_name: 'type', type: { name: 'String' } } } } } end |