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.



20703
20704
20705
# File 'lib/google/apis/compute_alpha/classes.rb', line 20703

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

Instance Attribute Details

#cidrString

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

Returns:

  • (String)


20681
20682
20683
# File 'lib/google/apis/compute_alpha/classes.rb', line 20681

def cidr
  @cidr
end

#ownerString

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

Returns:

  • (String)


20686
20687
20688
# File 'lib/google/apis/compute_alpha/classes.rb', line 20686

def owner
  @owner
end

#purposeString

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

Returns:

  • (String)


20691
20692
20693
# File 'lib/google/apis/compute_alpha/classes.rb', line 20691

def purpose
  @purpose
end

#regionString

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

Returns:

  • (String)


20696
20697
20698
# File 'lib/google/apis/compute_alpha/classes.rb', line 20696

def region
  @region
end

#typeString

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

Returns:

  • (String)


20701
20702
20703
# File 'lib/google/apis/compute_alpha/classes.rb', line 20701

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20708
20709
20710
20711
20712
20713
20714
# File 'lib/google/apis/compute_alpha/classes.rb', line 20708

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