Class: Azure::ARM::Network::Models::OutboundNatRule

Inherits:
MsRestAzure::SubResource
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb

Overview

Outbound NAT pool of the load balancer.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#allocated_outbound_portsInteger

Returns The number of outbound ports to be used for NAT.

Returns:

  • (Integer)

    The number of outbound ports to be used for NAT.



17
18
19
# File 'lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 17

def allocated_outbound_ports
  @allocated_outbound_ports
end

#backend_address_poolSubResource

is randomly load balanced across IPs in the backend IPs.

Returns:

  • (SubResource)

    A reference to a pool of DIPs. Outbound traffic



25
26
27
# File 'lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 25

def backend_address_pool
  @backend_address_pool
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



37
38
39
# File 'lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 37

def etag
  @etag
end

#frontend_ipconfigurationsArray<SubResource>

balancer.

Returns:

  • (Array<SubResource>)

    The Frontend IP addresses of the load



21
22
23
# File 'lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 21

def frontend_ipconfigurations
  @frontend_ipconfigurations
end

#nameString

resource group. This name can be used to access the resource.

Returns:

  • (String)

    The name of the resource that is unique within a



33
34
35
# File 'lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 33

def name
  @name
end

#provisioning_stateString

Possible values are: ‘Updating’, ‘Deleting’, and ‘Failed’.

Returns:

  • (String)

    Gets the provisioning state of the PublicIP resource.



29
30
31
# File 'lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 29

def provisioning_state
  @provisioning_state
end

Class Method Details

.mapperObject

Mapper for OutboundNatRule class as Ruby Hash. This will be used for serialization/deserialization.



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
# File 'lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 44

def self.mapper()
  {
    required: false,
    serialized_name: 'OutboundNatRule',
    type: {
      name: 'Composite',
      class_name: 'OutboundNatRule',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        allocated_outbound_ports: {
          required: false,
          serialized_name: 'properties.allocatedOutboundPorts',
          type: {
            name: 'Number'
          }
        },
        frontend_ipconfigurations: {
          required: false,
          serialized_name: 'properties.frontendIPConfigurations',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'SubResourceElementType',
                type: {
                  name: 'Composite',
                  class_name: 'SubResource'
                }
            }
          }
        },
        backend_address_pool: {
          required: true,
          serialized_name: 'properties.backendAddressPool',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        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'
          }
        }
      }
    }
  }
end