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

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

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) ⇒ InternalIpAddress

Returns a new instance of InternalIpAddress.



16605
16606
16607
# File 'generated/google/apis/compute_alpha/classes.rb', line 16605

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

Instance Attribute Details

#cidrString

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

Returns:

  • (String)


16583
16584
16585
# File 'generated/google/apis/compute_alpha/classes.rb', line 16583

def cidr
  @cidr
end

#ownerString

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

Returns:

  • (String)


16588
16589
16590
# File 'generated/google/apis/compute_alpha/classes.rb', line 16588

def owner
  @owner
end

#purposeString

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

Returns:

  • (String)


16593
16594
16595
# File 'generated/google/apis/compute_alpha/classes.rb', line 16593

def purpose
  @purpose
end

#regionString

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

Returns:

  • (String)


16598
16599
16600
# File 'generated/google/apis/compute_alpha/classes.rb', line 16598

def region
  @region
end

#typeString

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

Returns:

  • (String)


16603
16604
16605
# File 'generated/google/apis/compute_alpha/classes.rb', line 16603

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16610
16611
16612
16613
16614
16615
16616
# File 'generated/google/apis/compute_alpha/classes.rb', line 16610

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