Class: Google::Apis::ServicenetworkingV1::Range

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/servicenetworking_v1/classes.rb,
lib/google/apis/servicenetworking_v1/representations.rb,
lib/google/apis/servicenetworking_v1/representations.rb

Overview

Represents a found unused range.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Range

Returns a new instance of Range.



3679
3680
3681
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3679

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

Instance Attribute Details

#ip_cidr_rangeString

CIDR range in "10.x.x.x/y" format that is within the allocated ranges and currently unused. Corresponds to the JSON property ipCidrRange

Returns:

  • (String)


3671
3672
3673
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3671

def ip_cidr_range
  @ip_cidr_range
end

#networkString

In the Shared VPC host project, the VPC network that's peered with the consumer network. For example: projects/1234321/global/networks/host-network Corresponds to the JSON property network

Returns:

  • (String)


3677
3678
3679
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3677

def network
  @network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3684
3685
3686
3687
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3684

def update!(**args)
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
  @network = args[:network] if args.key?(:network)
end