Show / Hide Table of Contents

Class ServicesResource.ConnectionsResource.ListRequest

List the private connections that are configured in a service consumer's VPC network.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListConnectionsResponse>
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>
ServicesResource.ConnectionsResource.ListRequest
Implements
IClientServiceRequest<ListConnectionsResponse>
IClientServiceRequest
Inherited Members
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.Xgafv
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.AccessToken
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.Alt
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.Callback
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.Fields
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.Key
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.OauthToken
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.PrettyPrint
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.QuotaUser
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.UploadType
ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>.UploadProtocol
ClientServiceRequest<ListConnectionsResponse>.Execute()
ClientServiceRequest<ListConnectionsResponse>.ExecuteAsStream()
ClientServiceRequest<ListConnectionsResponse>.ExecuteAsync()
ClientServiceRequest<ListConnectionsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListConnectionsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListConnectionsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListConnectionsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListConnectionsResponse>.GenerateRequestUri()
ClientServiceRequest<ListConnectionsResponse>.GetBody()
ClientServiceRequest<ListConnectionsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListConnectionsResponse>.ETagAction
ClientServiceRequest<ListConnectionsResponse>.ModifyRequest
ClientServiceRequest<ListConnectionsResponse>.RequestParameters
ClientServiceRequest<ListConnectionsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
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
Assembly: Google.Apis.ServiceNetworking.v1beta.dll
Syntax
public class ListRequest : ServiceNetworkingBaseServiceRequest<ListConnectionsResponse>, IClientServiceRequest<ListConnectionsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
System.String parent

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ServiceNetworking.v1beta.Data.ListConnectionsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ServiceNetworking.v1beta.Data.ListConnectionsResponse>.MethodName

Network

The name of service consumer's VPC network that's connected with service producer network through a private connection. The network name must be 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
[RequestParameter("network", RequestParameterType.Query)]
public virtual string Network { get; set; }
Property Value
Type Description
System.String

Parent

The service that is managing peering connectivity for a service producer's organization. For Google services that support this functionality, this value is services/servicenetworking.googleapis.com. If you specify - as the parameter value, all configured public peering services are listed.

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ServiceNetworking.v1beta.Data.ListConnectionsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.ServiceNetworking.v1beta.ServiceNetworkingBaseServiceRequest<Google.Apis.ServiceNetworking.v1beta.Data.ListConnectionsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top