Class: Azure::Network::Mgmt::V2020_05_01::Models::IpAllocation

Inherits:
Resource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-05-01/generated/azure_mgmt_network/models/ip_allocation.rb

Overview

IpAllocation resource.

Instance Attribute Summary collapse

Attributes inherited from Resource

#id, #location, #name, #tags, #type

Class Method Summary collapse

Methods inherited from Resource

#resource_group

Instance Attribute Details

#allocation_tagsHash{String => String}

Returns IpAllocation tags.

Returns:

  • (Hash{String => String})

    IpAllocation tags.



42
43
44
# File 'lib/2020-05-01/generated/azure_mgmt_network/models/ip_allocation.rb', line 42

def allocation_tags
  @allocation_tags
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



46
47
48
# File 'lib/2020-05-01/generated/azure_mgmt_network/models/ip_allocation.rb', line 46

def etag
  @etag
end

#ip_allocation_typeIpAllocationType

values include: ‘Undefined’, ‘Hypernet’

Returns:



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

def ip_allocation_type
  @ip_allocation_type
end

#ipam_allocation_idString

Returns The IPAM allocation ID.

Returns:

  • (String)

    The IPAM allocation ID.



39
40
41
# File 'lib/2020-05-01/generated/azure_mgmt_network/models/ip_allocation.rb', line 39

def ipam_allocation_id
  @ipam_allocation_id
end

#prefixString

Returns The address prefix for the IpAllocation.

Returns:

  • (String)

    The address prefix for the IpAllocation.



28
29
30
# File 'lib/2020-05-01/generated/azure_mgmt_network/models/ip_allocation.rb', line 28

def prefix
  @prefix
end

#prefix_lengthInteger

Default value: 0 .

Returns:

  • (Integer)

    The address prefix length for the IpAllocation.



32
33
34
# File 'lib/2020-05-01/generated/azure_mgmt_network/models/ip_allocation.rb', line 32

def prefix_length
  @prefix_length
end

#prefix_typeIPVersion

Possible values include: ‘IPv4’, ‘IPv6’

Returns:

  • (IPVersion)

    The address prefix Type for the IpAllocation.



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

def prefix_type
  @prefix_type
end

#subnetSubResource

IpAllocation resource.

Returns:

  • (SubResource)

    The Subnet that using the prefix of this



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

def subnet
  @subnet
end

#virtual_networkSubResource

IpAllocation resource.

Returns:

  • (SubResource)

    The VirtualNetwork that using the prefix of this



21
22
23
# File 'lib/2020-05-01/generated/azure_mgmt_network/models/ip_allocation.rb', line 21

def virtual_network
  @virtual_network
end

Class Method Details

.mapperObject

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



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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/2020-05-01/generated/azure_mgmt_network/models/ip_allocation.rb', line 53

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IpAllocation',
    type: {
      name: 'Composite',
      class_name: 'IpAllocation',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        subnet: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.subnet',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        virtual_network: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.virtualNetwork',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        ip_allocation_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.type',
          type: {
            name: 'String'
          }
        },
        prefix: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.prefix',
          type: {
            name: 'String'
          }
        },
        prefix_length: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.prefixLength',
          default_value: 0,
          type: {
            name: 'Number'
          }
        },
        prefix_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.prefixType',
          type: {
            name: 'String'
          }
        },
        ipam_allocation_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.ipamAllocationId',
          type: {
            name: 'String'
          }
        },
        allocation_tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.allocationTags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end