Class: Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1betaConnection
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1betaConnection
- 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
Represents a private connection resource. A private connection is implemented as a VPC Network Peering connection between a service producer's VPC network and a service consumer's VPC network.
Instance Attribute Summary collapse
-
#network ⇒ String
The name of service consumer's VPC network that's connected with service producer network, in the following format:
projects/
project/global/networks/
network``. -
#peering ⇒ String
Output only.
-
#reserved_peering_ranges ⇒ Array<String>
The name of one or more allocated IP address ranges for this service producer of type
PEERING
. -
#service ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudServicenetworkingV1betaConnection
constructor
A new instance of GoogleCloudServicenetworkingV1betaConnection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudServicenetworkingV1betaConnection
Returns a new instance of GoogleCloudServicenetworkingV1betaConnection.
1812 1813 1814 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1812 def initialize(**args) update!(**args) end |
Instance Attribute Details
#network ⇒ String
The name of service consumer's VPC network that's connected with service
producer network, in the following format: projects/
project/global/networks/
network.
projectis a project number, such as in `12345` that includes
the VPC service consumer's VPC network.
network`is the name of the service
consumer's VPC network.
Corresponds to the JSON property
network`
1790 1791 1792 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1790 def network @network end |
#peering ⇒ String
Output only. The name of the VPC Network Peering connection that was created
by the service producer.
Corresponds to the JSON property peering
1796 1797 1798 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1796 def peering @peering end |
#reserved_peering_ranges ⇒ Array<String>
The name of one or more allocated IP address ranges for this service producer
of type PEERING
. Note that invoking this method with a different range when
connection is already established will not modify already provisioned service
producer subnetworks.
Corresponds to the JSON property reservedPeeringRanges
1804 1805 1806 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1804 def reserved_peering_ranges @reserved_peering_ranges end |
#service ⇒ String
Output only. The name of the peering service that's associated with this
connection, in the following format: services/
service name`.
Corresponds to the JSON property
service`
1810 1811 1812 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1810 def service @service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1817 1818 1819 1820 1821 1822 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 1817 def update!(**args) @network = args[:network] if args.key?(:network) @peering = args[:peering] if args.key?(:peering) @reserved_peering_ranges = args[:reserved_peering_ranges] if args.key?(:reserved_peering_ranges) @service = args[:service] if args.key?(:service) end |