Show / Hide Table of Contents

Class Connection

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.

Inheritance
System.Object
Connection
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ServiceNetworking.v1beta.Data
Assembly: Google.Apis.ServiceNetworking.v1beta.dll
Syntax
public class Connection : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Network

The name of service consumer's VPC network that's connected with service producer network, in the following format: projects/{project}/global/networks/{network}. {project} is 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.

Declaration
[JsonProperty("network")]
public virtual string Network { get; set; }
Property Value
Type Description
System.String

Peering

Output only. The name of the VPC Network Peering connection that was created by the service producer.

Declaration
[JsonProperty("peering")]
public virtual string Peering { get; set; }
Property Value
Type Description
System.String

ReservedPeeringRanges

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.

Declaration
[JsonProperty("reservedPeeringRanges")]
public virtual IList<string> ReservedPeeringRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Service

Output only. The name of the peering service that's associated with this connection, in the following format: services/{service name}.

Declaration
[JsonProperty("service")]
public virtual string Service { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top