Class: Google::Apis::ComputeBeta::AccessConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb

Overview

An access configuration attached to an instance's network interface. Only one access config per instance is supported.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AccessConfig

Returns a new instance of AccessConfig



338
339
340
# File 'generated/google/apis/compute_beta/classes.rb', line 338

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

[Output Only] Type of the resource. Always compute#accessConfig for access configs. Corresponds to the JSON property kind

Returns:

  • (String)


315
316
317
# File 'generated/google/apis/compute_beta/classes.rb', line 315

def kind
  @kind
end

#nameString

The name of this access configuration. The default and recommended name is External NAT but you can use any arbitrary string you would like. For example, My external IP or Network Access. Corresponds to the JSON property name

Returns:

  • (String)


322
323
324
# File 'generated/google/apis/compute_beta/classes.rb', line 322

def name
  @name
end

#nat_ipString

An external IP address associated with this instance. Specify an unused static external IP address available to the project or leave this field undefined to use an IP from a shared ephemeral IP address pool. If you specify a static external IP address, it must live in the same region as the zone of the instance. Corresponds to the JSON property natIP

Returns:

  • (String)


331
332
333
# File 'generated/google/apis/compute_beta/classes.rb', line 331

def nat_ip
  @nat_ip
end

#typeString

The type of configuration. The default and only option is ONE_TO_ONE_NAT. Corresponds to the JSON property type

Returns:

  • (String)


336
337
338
# File 'generated/google/apis/compute_beta/classes.rb', line 336

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



343
344
345
346
347
348
# File 'generated/google/apis/compute_beta/classes.rb', line 343

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @nat_ip = args[:nat_ip] if args.key?(:nat_ip)
  @type = args[:type] if args.key?(:type)
end