Class: Google::Apis::ComputeAlpha::InternalIpAddress

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InternalIpAddress

Returns a new instance of InternalIpAddress.



24317
24318
24319
# File 'lib/google/apis/compute_alpha/classes.rb', line 24317

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

Instance Attribute Details

#cidrString

IP CIDR address or range. Corresponds to the JSON property cidr

Returns:

  • (String)


24295
24296
24297
# File 'lib/google/apis/compute_alpha/classes.rb', line 24295

def cidr
  @cidr
end

#ownerString

The owner of the internal IP address. Corresponds to the JSON property owner

Returns:

  • (String)


24300
24301
24302
# File 'lib/google/apis/compute_alpha/classes.rb', line 24300

def owner
  @owner
end

#purposeString

The purpose of the internal IP address if applicable. Corresponds to the JSON property purpose

Returns:

  • (String)


24305
24306
24307
# File 'lib/google/apis/compute_alpha/classes.rb', line 24305

def purpose
  @purpose
end

#regionString

The region of the internal IP address if applicable. Corresponds to the JSON property region

Returns:

  • (String)


24310
24311
24312
# File 'lib/google/apis/compute_alpha/classes.rb', line 24310

def region
  @region
end

#typeString

The type of the internal IP address. Corresponds to the JSON property type

Returns:

  • (String)


24315
24316
24317
# File 'lib/google/apis/compute_alpha/classes.rb', line 24315

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



24322
24323
24324
24325
24326
24327
24328
# File 'lib/google/apis/compute_alpha/classes.rb', line 24322

def update!(**args)
  @cidr = args[:cidr] if args.key?(:cidr)
  @owner = args[:owner] if args.key?(:owner)
  @purpose = args[:purpose] if args.key?(:purpose)
  @region = args[:region] if args.key?(:region)
  @type = args[:type] if args.key?(:type)
end