Class: Azure::ARM::Network::Models::VirtualNetworkGatewayIPConfiguration

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

Overview

IP configuration for virtual network gateway

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#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/virtual_network_gateway_ipconfiguration.rb', line 37

def etag
  @etag
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/virtual_network_gateway_ipconfiguration.rb', line 33

def name
  @name
end

#private_ipallocation_methodIPAllocationMethod

values are: ‘Static’ and ‘Dynamic’. Possible values include: ‘Static’, ‘Dynamic’

Returns:



19
20
21
# File 'lib/generated/azure_mgmt_network/models/virtual_network_gateway_ipconfiguration.rb', line 19

def private_ipallocation_method
  @private_ipallocation_method
end

#provisioning_stateString

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

Returns:

  • (String)

    The provisioning state of the public IP resource.



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

def provisioning_state
  @provisioning_state
end

#public_ipaddressSubResource

Returns The reference of the public IP resource.

Returns:

  • (SubResource)

    The reference of the public IP resource.



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

def public_ipaddress
  @public_ipaddress
end

#subnetSubResource

Returns The reference of the subnet resource.

Returns:

  • (SubResource)

    The reference of the subnet resource.



22
23
24
# File 'lib/generated/azure_mgmt_network/models/virtual_network_gateway_ipconfiguration.rb', line 22

def subnet
  @subnet
end

Class Method Details

.mapperObject

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

def self.mapper()
  {
    required: false,
    serialized_name: 'VirtualNetworkGatewayIPConfiguration',
    type: {
      name: 'Composite',
      class_name: 'VirtualNetworkGatewayIPConfiguration',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          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'
          }
        },
        provisioning_state: {
          required: false,
          read_only: true,
          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