class Azure::Network::Mgmt::V2016_03_30::Models::ApplicationGatewayBackendAddressPool
Backend Address Pool of application gateway
Attributes
backend_addresses[RW]
@return [Array<ApplicationGatewayBackendAddress>] Gets or sets the backend addresses
backend_ipconfigurations[RW]
@return [Array<NetworkInterfaceIPConfiguration>] Gets collection of references to IPs defined in NICs
etag[RW]
@return [String] A unique read-only string that changes whenever the resource is updated
name[RW]
@return [String] Gets name of the resource that is unique within a resource group. This name can be used to access the resource
provisioning_state[RW]
@return [String] Gets or sets Provisioning state of the backend address pool resource Updating/Deleting/Failed
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationGatewayBackendAddressPool
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb, line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayBackendAddressPool', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendAddressPool', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, backend_ipconfigurations: { client_side_validation: true, required: false, serialized_name: 'properties.backendIPConfigurations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'NetworkInterfaceIPConfigurationElementType', type: { name: 'Composite', class_name: 'NetworkInterfaceIPConfiguration' } } } }, backend_addresses: { client_side_validation: true, required: false, serialized_name: 'properties.backendAddresses', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayBackendAddressElementType', type: { name: 'Composite', class_name: 'ApplicationGatewayBackendAddress' } } } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, etag: { client_side_validation: true, required: false, serialized_name: 'etag', type: { name: 'String' } } } } } end