Class: Azure::Network::Mgmt::V2020_04_01::Models::ApplicationGatewayBackendAddressPool

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb

Overview

Backend Address Pool of an application gateway.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#backend_addressesArray<ApplicationGatewayBackendAddress>

Returns Backend addresses.

Returns:



20
21
22
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 20

def backend_addresses
  @backend_addresses
end

#backend_ipconfigurationsArray<NetworkInterfaceIPConfiguration>

references to IPs defined in network interfaces.

Returns:



17
18
19
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 17

def backend_ipconfigurations
  @backend_ipconfigurations
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



33
34
35
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 33

def etag
  @etag
end

#nameString

an Application Gateway.

Returns:

  • (String)

    Name of the backend address pool that is unique within



29
30
31
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 29

def name
  @name
end

#provisioning_stateProvisioningState

address pool resource. Possible values include: ‘Succeeded’, ‘Updating’, ‘Deleting’, ‘Failed’

Returns:



25
26
27
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 25

def provisioning_state
  @provisioning_state
end

#typeString

Returns Type of the resource.

Returns:

  • (String)

    Type of the resource.



36
37
38
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 36

def type
  @type
end

Class Method Details

.mapperObject

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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb', line 43

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,
          read_only: true,
          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,
          read_only: true,
          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,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end