class Azure::Network::Mgmt::V2018_01_01::Models::ApplicationGatewayBackendAddressPool
Backend Address Pool of an application gateway.
Attributes
backend_addresses[RW]
@return [Array<ApplicationGatewayBackendAddress>] Backend addresses
backend_ipconfigurations[RW]
@return [Array<NetworkInterfaceIPConfiguration>] Collection of references to IPs defined in network interfaces.
etag[RW]
@return [String] A unique read-only string that changes whenever the resource is updated.
name[RW]
@return [String] Resource
that is unique within a resource group. This name can be used to access the resource.
provisioning_state[RW]
@return [String] Provisioning state of the backend address pool resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
type[RW]
@return [String] Type of the resource.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationGatewayBackendAddressPool
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-01-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb, line 42 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' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } } } } } end