Class: Google::Apis::ServicenetworkingV1::GoogleCloudServicenetworkingV1betaConnection

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 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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudServicenetworkingV1betaConnection

Returns a new instance of GoogleCloudServicenetworkingV1betaConnection.



1693
1694
1695
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1693

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

Instance Attribute Details

#networkString

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 propertynetwork`

Returns:

  • (String)


1671
1672
1673
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1671

def network
  @network
end

#peeringString

Output only. The name of the VPC Network Peering connection that was created by the service producer. Corresponds to the JSON property peering

Returns:

  • (String)


1677
1678
1679
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1677

def peering
  @peering
end

#reserved_peering_rangesArray<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

Returns:

  • (Array<String>)


1685
1686
1687
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1685

def reserved_peering_ranges
  @reserved_peering_ranges
end

#serviceString

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 propertyservice`

Returns:

  • (String)


1691
1692
1693
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1691

def service
  @service
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1698
1699
1700
1701
1702
1703
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1698

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