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.



21084
21085
21086
# File 'lib/google/apis/compute_alpha/classes.rb', line 21084

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

Instance Attribute Details

#cidrString

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

Returns:

  • (String)


21062
21063
21064
# File 'lib/google/apis/compute_alpha/classes.rb', line 21062

def cidr
  @cidr
end

#ownerString

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

Returns:

  • (String)


21067
21068
21069
# File 'lib/google/apis/compute_alpha/classes.rb', line 21067

def owner
  @owner
end

#purposeString

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

Returns:

  • (String)


21072
21073
21074
# File 'lib/google/apis/compute_alpha/classes.rb', line 21072

def purpose
  @purpose
end

#regionString

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

Returns:

  • (String)


21077
21078
21079
# File 'lib/google/apis/compute_alpha/classes.rb', line 21077

def region
  @region
end

#typeString

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

Returns:

  • (String)


21082
21083
21084
# File 'lib/google/apis/compute_alpha/classes.rb', line 21082

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21089
21090
21091
21092
21093
21094
21095
# File 'lib/google/apis/compute_alpha/classes.rb', line 21089

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