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.



22221
22222
22223
# File 'lib/google/apis/compute_alpha/classes.rb', line 22221

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

Instance Attribute Details

#cidrString

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

Returns:

  • (String)


22199
22200
22201
# File 'lib/google/apis/compute_alpha/classes.rb', line 22199

def cidr
  @cidr
end

#ownerString

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

Returns:

  • (String)


22204
22205
22206
# File 'lib/google/apis/compute_alpha/classes.rb', line 22204

def owner
  @owner
end

#purposeString

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

Returns:

  • (String)


22209
22210
22211
# File 'lib/google/apis/compute_alpha/classes.rb', line 22209

def purpose
  @purpose
end

#regionString

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

Returns:

  • (String)


22214
22215
22216
# File 'lib/google/apis/compute_alpha/classes.rb', line 22214

def region
  @region
end

#typeString

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

Returns:

  • (String)


22219
22220
22221
# File 'lib/google/apis/compute_alpha/classes.rb', line 22219

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22226
22227
22228
22229
22230
22231
22232
# File 'lib/google/apis/compute_alpha/classes.rb', line 22226

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