Class: Azure::Network::Mgmt::V2016_06_01::Models::OutboundNatRule

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-06-01/generated/azure_mgmt_network/models/outbound_nat_rule.rb

Overview

Outbound NAT pool of the load balancer

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#allocated_outbound_portsInteger

for SNAT

Returns:

  • (Integer)

    Gets or sets the number of outbound ports to be used



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

def allocated_outbound_ports
  @allocated_outbound_ports
end

#backend_address_poolSubResource

Outbound traffic is randomly load balanced across IPs in the backend IPs

Returns:

  • (SubResource)

    Gets or sets a reference to a pool of DIPs.



26
27
28
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 26

def backend_address_pool
  @backend_address_pool
end

#etagString

resource is updated

Returns:

  • (String)

    A unique read-only string that changes whenever the



38
39
40
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 38

def etag
  @etag
end

#frontend_ipconfigurationsArray<SubResource>

load balancer

Returns:

  • (Array<SubResource>)

    Gets or sets Frontend IP addresses of the



21
22
23
# File 'lib/2016-06-01/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)

    Gets name of the resource that is unique within a



34
35
36
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 34

def name
  @name
end

#provisioning_stateString

Updating/Deleting/Failed

Returns:

  • (String)

    Gets provisioning state of the PublicIP resource



30
31
32
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/outbound_nat_rule.rb', line 30

def provisioning_state
  @provisioning_state
end

Class Method Details

.mapperObject

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



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

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