Class: OCI::Core::Models::Vnic

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/core/models/vnic.rb

Overview

A virtual network interface card. Each VNIC resides in a subnet in a VCN. An instance attaches to a VNIC to obtain a network connection into the VCN through that subnet. Each instance has a *primary VNIC* that is automatically created and attached during launch. You can add *secondary VNICs* to an instance after it’s launched. For more information, see [Virtual Network Interface Cards (VNICs)](docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingVNICs.htm).

Each VNIC has a *primary private IP* that is automatically assigned during launch. You can add *secondary private IPs* to a VNIC after it’s created. For more information, see create_private_ip and [IP Addresses](docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingIPaddresses.htm).

To use any of the API operations, you must be authorized in an IAM policy. If you’re not authorized, talk to an administrator. If you’re an administrator who needs to write policies to give users access, see [Getting Started with Policies](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).

Constant Summary collapse

LIFECYCLE_STATE_ENUM =
[LIFECYCLE_STATE_PROVISIONING = 'PROVISIONING',
LIFECYCLE_STATE_AVAILABLE = 'AVAILABLE',
LIFECYCLE_STATE_TERMINATING = 'TERMINATING',
LIFECYCLE_STATE_TERMINATED = 'TERMINATED',
LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE']

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Vnic

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :availability_domain (String)

    The value to assign to the #availability_domain property

  • :compartment_id (String)

    The value to assign to the #compartment_id property

  • :display_name (String)

    The value to assign to the #display_name property

  • :hostname_label (String)

    The value to assign to the #hostname_label property

  • :id (String)

    The value to assign to the #id property

  • :is_primary (BOOLEAN)

    The value to assign to the #is_primary property

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property

  • :mac_address (String)

    The value to assign to the #mac_address property

  • :private_ip (String)

    The value to assign to the #private_ip property

  • :public_ip (String)

    The value to assign to the #public_ip property

  • :skip_source_dest_check (BOOLEAN)

    The value to assign to the #skip_source_dest_check property

  • :subnet_id (String)

    The value to assign to the #subnet_id property

  • :time_created (DateTime)

    The value to assign to the #time_created property



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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/oci/core/models/vnic.rb', line 133

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}

  if attributes[:'availabilityDomain']
    self.availability_domain = attributes[:'availabilityDomain']
  end

  raise 'You cannot provide both :availabilityDomain and :availability_domain' if attributes.key?(:'availabilityDomain') && attributes.key?(:'availability_domain')

  if attributes[:'availability_domain']
    self.availability_domain = attributes[:'availability_domain']
  end

  if attributes[:'compartmentId']
    self.compartment_id = attributes[:'compartmentId']
  end

  raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id')

  if attributes[:'compartment_id']
    self.compartment_id = attributes[:'compartment_id']
  end

  if attributes[:'displayName']
    self.display_name = attributes[:'displayName']
  end

  raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name')

  if attributes[:'display_name']
    self.display_name = attributes[:'display_name']
  end

  if attributes[:'hostnameLabel']
    self.hostname_label = attributes[:'hostnameLabel']
  end

  raise 'You cannot provide both :hostnameLabel and :hostname_label' if attributes.key?(:'hostnameLabel') && attributes.key?(:'hostname_label')

  if attributes[:'hostname_label']
    self.hostname_label = attributes[:'hostname_label']
  end

  if attributes[:'id']
    self.id = attributes[:'id']
  end

  unless attributes[:'isPrimary'].nil?
    self.is_primary = attributes[:'isPrimary']
  end

  raise 'You cannot provide both :isPrimary and :is_primary' if attributes.key?(:'isPrimary') && attributes.key?(:'is_primary')

  unless attributes[:'is_primary'].nil?
    self.is_primary = attributes[:'is_primary']
  end

  if attributes[:'lifecycleState']
    self.lifecycle_state = attributes[:'lifecycleState']
  end

  raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state')

  if attributes[:'lifecycle_state']
    self.lifecycle_state = attributes[:'lifecycle_state']
  end

  if attributes[:'macAddress']
    self.mac_address = attributes[:'macAddress']
  end

  raise 'You cannot provide both :macAddress and :mac_address' if attributes.key?(:'macAddress') && attributes.key?(:'mac_address')

  if attributes[:'mac_address']
    self.mac_address = attributes[:'mac_address']
  end

  if attributes[:'privateIp']
    self.private_ip = attributes[:'privateIp']
  end

  raise 'You cannot provide both :privateIp and :private_ip' if attributes.key?(:'privateIp') && attributes.key?(:'private_ip')

  if attributes[:'private_ip']
    self.private_ip = attributes[:'private_ip']
  end

  if attributes[:'publicIp']
    self.public_ip = attributes[:'publicIp']
  end

  raise 'You cannot provide both :publicIp and :public_ip' if attributes.key?(:'publicIp') && attributes.key?(:'public_ip')

  if attributes[:'public_ip']
    self.public_ip = attributes[:'public_ip']
  end

  unless attributes[:'skipSourceDestCheck'].nil?
    self.skip_source_dest_check = attributes[:'skipSourceDestCheck']
  end

  raise 'You cannot provide both :skipSourceDestCheck and :skip_source_dest_check' if attributes.key?(:'skipSourceDestCheck') && attributes.key?(:'skip_source_dest_check')

  unless attributes[:'skip_source_dest_check'].nil?
    self.skip_source_dest_check = attributes[:'skip_source_dest_check']
  end

  if attributes[:'subnetId']
    self.subnet_id = attributes[:'subnetId']
  end

  raise 'You cannot provide both :subnetId and :subnet_id' if attributes.key?(:'subnetId') && attributes.key?(:'subnet_id')

  if attributes[:'subnet_id']
    self.subnet_id = attributes[:'subnet_id']
  end

  if attributes[:'timeCreated']
    self.time_created = attributes[:'timeCreated']
  end

  raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created')

  if attributes[:'time_created']
    self.time_created = attributes[:'time_created']
  end

end

Instance Attribute Details

#availability_domainString

[Required] The VNIC’s Availability Domain.

Example: ‘Uocm:PHX-AD-1`

Returns:

  • (String)


35
36
37
# File 'lib/oci/core/models/vnic.rb', line 35

def availability_domain
  @availability_domain
end

#compartment_idString

[Required] The OCID of the compartment containing the VNIC.

Returns:

  • (String)


39
40
41
# File 'lib/oci/core/models/vnic.rb', line 39

def compartment_id
  @compartment_id
end

#display_nameString

A user-friendly name. Does not have to be unique. Avoid entering confidential information.

Returns:

  • (String)


45
46
47
# File 'lib/oci/core/models/vnic.rb', line 45

def display_name
  @display_name
end

#hostname_labelString

The hostname for the VNIC’s primary private IP. Used for DNS. The value is the hostname portion of the primary private IP’s fully qualified domain name (FQDN) (for example, ‘bminstance-1` in FQDN `bminstance-1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](tools.ietf.org/html/rfc952) and [RFC 1123](tools.ietf.org/html/rfc1123).

For more information, see [DNS in Your Virtual Cloud Network](docs.us-phoenix-1.oraclecloud.com/Content/Network/Concepts/dns.htm).

Example: ‘bminstance-1`

Returns:

  • (String)


60
61
62
# File 'lib/oci/core/models/vnic.rb', line 60

def hostname_label
  @hostname_label
end

#idString

[Required] The OCID of the VNIC.

Returns:

  • (String)


64
65
66
# File 'lib/oci/core/models/vnic.rb', line 64

def id
  @id
end

#is_primaryBOOLEAN

Whether the VNIC is the primary VNIC (the VNIC that is automatically created and attached during instance launch).

Returns:

  • (BOOLEAN)


70
71
72
# File 'lib/oci/core/models/vnic.rb', line 70

def is_primary
  @is_primary
end

#lifecycle_stateString

[Required] The current state of the VNIC.

Returns:

  • (String)


74
75
76
# File 'lib/oci/core/models/vnic.rb', line 74

def lifecycle_state
  @lifecycle_state
end

#mac_addressString

The MAC address of the VNIC.

Example: ‘00:00:17:B6:4D:DD`

Returns:

  • (String)


81
82
83
# File 'lib/oci/core/models/vnic.rb', line 81

def mac_address
  @mac_address
end

#private_ipString

[Required] The private IP address of the primary ‘privateIp` object on the VNIC. The address is within the CIDR of the VNIC’s subnet.

Example: ‘10.0.3.3`

Returns:

  • (String)


89
90
91
# File 'lib/oci/core/models/vnic.rb', line 89

def private_ip
  @private_ip
end

#public_ipString

The public IP address of the VNIC, if one is assigned.

Returns:

  • (String)


94
95
96
# File 'lib/oci/core/models/vnic.rb', line 94

def public_ip
  @public_ip
end

#skip_source_dest_checkBOOLEAN

Whether the source/destination check is disabled on the VNIC. Defaults to ‘false`, which means the check is performed. For information about why you would skip the source/destination check, see [Using a Private IP as a Route Target](docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingroutetables.htm#privateip).

Example: ‘true`

Returns:

  • (BOOLEAN)


104
105
106
# File 'lib/oci/core/models/vnic.rb', line 104

def skip_source_dest_check
  @skip_source_dest_check
end

#subnet_idString

[Required] The OCID of the subnet the VNIC is in.

Returns:

  • (String)


108
109
110
# File 'lib/oci/core/models/vnic.rb', line 108

def subnet_id
  @subnet_id
end

#time_createdDateTime

[Required] The date and time the VNIC was created, in the format defined by RFC3339.

Example: ‘2016-08-25T21:10:29.600Z`

Returns:

  • (DateTime)


115
116
117
# File 'lib/oci/core/models/vnic.rb', line 115

def time_created
  @time_created
end

Instance Method Details

#==(other_object) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other_object (Object)

    to be compared



277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
# File 'lib/oci/core/models/vnic.rb', line 277

def ==(other_object)
  return true if self.equal?(other_object)
  self.class == other_object.class &&
      availability_domain == other_object.availability_domain &&
      compartment_id == other_object.compartment_id &&
      display_name == other_object.display_name &&
      hostname_label == other_object.hostname_label &&
      id == other_object.id &&
      is_primary == other_object.is_primary &&
      lifecycle_state == other_object.lifecycle_state &&
      mac_address == other_object.mac_address &&
      private_ip == other_object.private_ip &&
      public_ip == other_object.public_ip &&
      skip_source_dest_check == other_object.skip_source_dest_check &&
      subnet_id == other_object.subnet_id &&
      time_created == other_object.time_created
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
# File 'lib/oci/core/models/vnic.rb', line 310

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.public_method("#{key}=").call(attributes[self.class.attribute_map[key]].map{ |v| OCI::Internal::Util.convert_to_type($1, v) } )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.public_method("#{key}=").call(OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other_object) ⇒ Boolean

Parameters:

  • other_object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


297
298
299
# File 'lib/oci/core/models/vnic.rb', line 297

def eql?(other_object)
  self == other_object
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



303
304
305
# File 'lib/oci/core/models/vnic.rb', line 303

def hash
  [availability_domain, compartment_id, display_name, hostname_label, id, is_primary, lifecycle_state, mac_address, private_ip, public_ip, skip_source_dest_check, subnet_id, time_created].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



335
336
337
338
339
340
341
342
343
# File 'lib/oci/core/models/vnic.rb', line 335

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



329
330
331
# File 'lib/oci/core/models/vnic.rb', line 329

def to_s
  to_hash.to_s
end