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.



20592
20593
20594
# File 'lib/google/apis/compute_alpha/classes.rb', line 20592

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

Instance Attribute Details

#cidrString

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

Returns:

  • (String)


20570
20571
20572
# File 'lib/google/apis/compute_alpha/classes.rb', line 20570

def cidr
  @cidr
end

#ownerString

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

Returns:

  • (String)


20575
20576
20577
# File 'lib/google/apis/compute_alpha/classes.rb', line 20575

def owner
  @owner
end

#purposeString

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

Returns:

  • (String)


20580
20581
20582
# File 'lib/google/apis/compute_alpha/classes.rb', line 20580

def purpose
  @purpose
end

#regionString

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

Returns:

  • (String)


20585
20586
20587
# File 'lib/google/apis/compute_alpha/classes.rb', line 20585

def region
  @region
end

#typeString

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

Returns:

  • (String)


20590
20591
20592
# File 'lib/google/apis/compute_alpha/classes.rb', line 20590

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20597
20598
20599
20600
20601
20602
20603
# File 'lib/google/apis/compute_alpha/classes.rb', line 20597

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