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.



19667
19668
19669
# File 'lib/google/apis/compute_alpha/classes.rb', line 19667

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

Instance Attribute Details

#cidrString

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

Returns:

  • (String)


19645
19646
19647
# File 'lib/google/apis/compute_alpha/classes.rb', line 19645

def cidr
  @cidr
end

#ownerString

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

Returns:

  • (String)


19650
19651
19652
# File 'lib/google/apis/compute_alpha/classes.rb', line 19650

def owner
  @owner
end

#purposeString

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

Returns:

  • (String)


19655
19656
19657
# File 'lib/google/apis/compute_alpha/classes.rb', line 19655

def purpose
  @purpose
end

#regionString

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

Returns:

  • (String)


19660
19661
19662
# File 'lib/google/apis/compute_alpha/classes.rb', line 19660

def region
  @region
end

#typeString

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

Returns:

  • (String)


19665
19666
19667
# File 'lib/google/apis/compute_alpha/classes.rb', line 19665

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



19672
19673
19674
19675
19676
19677
19678
# File 'lib/google/apis/compute_alpha/classes.rb', line 19672

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