Class: Azure::ARM::Network::Models::PublicIPAddress

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

Overview

Public IP address resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#dns_settingsPublicIPAddressDnsSettings

associated with the public IP address.



34
35
36
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 34

def dns_settings
  @dns_settings
end

#etagString

resource is updated.



52
53
54
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 52

def etag
  @etag
end

#idle_timeout_in_minutesInteger



41
42
43
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 41

def idle_timeout_in_minutes
  @idle_timeout_in_minutes
end

#ip_addressString

resource.



38
39
40
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 38

def ip_address
  @ip_address
end

#ip_configurationIPConfiguration

public IP address.



30
31
32
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 30

def ip_configuration
  @ip_configuration
end

#provisioning_stateString

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



48
49
50
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 48

def provisioning_state
  @provisioning_state
end

#public_ipaddress_versionIPVersion

‘IPv4’ and ‘IPv6’. Possible values include: ‘IPv4’, ‘IPv6’



26
27
28
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 26

def public_ipaddress_version
  @public_ipaddress_version
end

#public_ipallocation_methodIPAllocationMethod

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



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

def public_ipallocation_method
  @public_ipallocation_method
end

#resource_guidString



44
45
46
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 44

def resource_guid
  @resource_guid
end

#skuPublicIPAddressSku



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

def sku
  @sku
end

#zonesArray<String>

allocated for the resource needs to come from.



56
57
58
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 56

def zones
  @zones
end

Class Method Details

.mapperObject

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



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
202
203
204
205
206
# File 'lib/generated/azure_mgmt_network/models/public_ipaddress.rb', line 63

def self.mapper()
  {
    required: false,
    serialized_name: 'PublicIPAddress',
    type: {
      name: 'Composite',
      class_name: 'PublicIPAddress',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        location: {
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        tags: {
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        sku: {
          required: false,
          serialized_name: 'sku',
          type: {
            name: 'Composite',
            class_name: 'PublicIPAddressSku'
          }
        },
        public_ipallocation_method: {
          required: false,
          serialized_name: 'properties.publicIPAllocationMethod',
          type: {
            name: 'String'
          }
        },
        public_ipaddress_version: {
          required: false,
          serialized_name: 'properties.publicIPAddressVersion',
          type: {
            name: 'String'
          }
        },
        ip_configuration: {
          required: false,
          read_only: true,
          serialized_name: 'properties.ipConfiguration',
          type: {
            name: 'Composite',
            class_name: 'IPConfiguration'
          }
        },
        dns_settings: {
          required: false,
          serialized_name: 'properties.dnsSettings',
          type: {
            name: 'Composite',
            class_name: 'PublicIPAddressDnsSettings'
          }
        },
        ip_address: {
          required: false,
          serialized_name: 'properties.ipAddress',
          type: {
            name: 'String'
          }
        },
        idle_timeout_in_minutes: {
          required: false,
          serialized_name: 'properties.idleTimeoutInMinutes',
          type: {
            name: 'Number'
          }
        },
        resource_guid: {
          required: false,
          serialized_name: 'properties.resourceGuid',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        etag: {
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        zones: {
          required: false,
          serialized_name: 'zones',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end