Class: Azure::Network::Mgmt::V2015_05_01_preview::Models::NetworkInterfaceIpConfiguration

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb

Overview

IPConfiguration in a NetworkInterface

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#etagString

resource is updated

Returns:

  • (String)

    A unique read-only string that changes whenever the



48
49
50
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 48

def etag
  @etag
end

#load_balancer_backend_address_poolsArray<SubResource>

LoadBalancerBackendAddressPool resource

Returns:

  • (Array<SubResource>)

    Gets or sets the reference of



32
33
34
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 32

def load_balancer_backend_address_pools
  @load_balancer_backend_address_pools
end

#load_balancer_inbound_nat_rulesArray<SubResource>

LoadBalancerInboundNatRules

Returns:

  • (Array<SubResource>)

    Gets or sets list of references of



36
37
38
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 36

def load_balancer_inbound_nat_rules
  @load_balancer_inbound_nat_rules
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



44
45
46
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 44

def name
  @name
end

#private_ipaddressString

Interface IP Configuration

Returns:

  • (String)

    Gets or sets the privateIPAddress of the Network



17
18
19
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 17

def private_ipaddress
  @private_ipaddress
end

#private_ipallocation_methodIpAllocationMethod

(Static/Dynamic). Possible values include: ‘Static’, ‘Dynamic’

Returns:



21
22
23
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 21

def private_ipallocation_method
  @private_ipallocation_method
end

#provisioning_stateString

resource Updating/Deleting/Failed

Returns:

  • (String)

    Gets or sets Provisioning state of the PublicIP



40
41
42
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 40

def provisioning_state
  @provisioning_state
end

#public_ipaddressSubResource

resource

Returns:

  • (SubResource)

    Gets or sets the reference of the PublicIP



28
29
30
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 28

def public_ipaddress
  @public_ipaddress
end

#subnetSubResource

Returns Gets or sets the reference of the subnet resource.

Returns:

  • (SubResource)

    Gets or sets the reference of the subnet resource



24
25
26
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 24

def subnet
  @subnet
end

Class Method Details

.mapperObject

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



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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/2015-05-01-preview/generated/azure_mgmt_network/models/network_interface_ip_configuration.rb', line 55

def self.mapper()
  {
    required: false,
    serialized_name: 'NetworkInterfaceIpConfiguration',
    type: {
      name: 'Composite',
      class_name: 'NetworkInterfaceIpConfiguration',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        private_ipaddress: {
          required: false,
          serialized_name: 'properties.privateIPAddress',
          type: {
            name: 'String'
          }
        },
        private_ipallocation_method: {
          required: false,
          serialized_name: 'properties.privateIPAllocationMethod',
          type: {
            name: 'String'
          }
        },
        subnet: {
          required: false,
          serialized_name: 'properties.subnet',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        public_ipaddress: {
          required: false,
          serialized_name: 'properties.publicIPAddress',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        load_balancer_backend_address_pools: {
          required: false,
          serialized_name: 'properties.loadBalancerBackendAddressPools',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'SubResourceElementType',
                type: {
                  name: 'Composite',
                  class_name: 'SubResource'
                }
            }
          }
        },
        load_balancer_inbound_nat_rules: {
          required: false,
          serialized_name: 'properties.loadBalancerInboundNatRules',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'SubResourceElementType',
                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