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.



23171
23172
23173
# File 'lib/google/apis/compute_alpha/classes.rb', line 23171

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

Instance Attribute Details

#cidrString

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

Returns:

  • (String)


23149
23150
23151
# File 'lib/google/apis/compute_alpha/classes.rb', line 23149

def cidr
  @cidr
end

#ownerString

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

Returns:

  • (String)


23154
23155
23156
# File 'lib/google/apis/compute_alpha/classes.rb', line 23154

def owner
  @owner
end

#purposeString

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

Returns:

  • (String)


23159
23160
23161
# File 'lib/google/apis/compute_alpha/classes.rb', line 23159

def purpose
  @purpose
end

#regionString

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

Returns:

  • (String)


23164
23165
23166
# File 'lib/google/apis/compute_alpha/classes.rb', line 23164

def region
  @region
end

#typeString

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

Returns:

  • (String)


23169
23170
23171
# File 'lib/google/apis/compute_alpha/classes.rb', line 23169

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



23176
23177
23178
23179
23180
23181
23182
# File 'lib/google/apis/compute_alpha/classes.rb', line 23176

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