Class: Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange

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

Overview

Allocated IP address ranges for this private service access connection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudServicenetworkingV1ConsumerConfigReservedRange

Returns a new instance of GoogleCloudServicenetworkingV1ConsumerConfigReservedRange.

[View source]

1765
1766
1767
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1765

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

Instance Attribute Details

#addressString

The starting address of the reserved range. The address must be a valid IPv4 address in the x.x.x.x format. This value combined with the IP prefix length is the CIDR range for the reserved range. Corresponds to the JSON property address

Returns:

  • (String)

1753
1754
1755
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1753

def address
  @address
end

#ip_prefix_lengthFixnum

The prefix length of the reserved range. Corresponds to the JSON property ipPrefixLength

Returns:

  • (Fixnum)

1758
1759
1760
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1758

def ip_prefix_length
  @ip_prefix_length
end

#nameString

The name of the reserved range. Corresponds to the JSON property name

Returns:

  • (String)

1763
1764
1765
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1763

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1770
1771
1772
1773
1774
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1770

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @ip_prefix_length = args[:ip_prefix_length] if args.key?(:ip_prefix_length)
  @name = args[:name] if args.key?(:name)
end