Show / Hide Table of Contents

Class TagBindingsResource.ListRequest

Lists the TagBindings for the given cloud resource, as specified with parent. NOTE: The parent field is expected to be a full resource name: https://cloud.google.com/apis/design/resource_names#full_resource_name

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListTagBindingsResponse>
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>
TagBindingsResource.ListRequest
Implements
IClientServiceRequest<ListTagBindingsResponse>
IClientServiceRequest
Inherited Members
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.Xgafv
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.AccessToken
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.Alt
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.Callback
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.Fields
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.Key
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.OauthToken
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.PrettyPrint
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.QuotaUser
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.UploadType
CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>.UploadProtocol
ClientServiceRequest<ListTagBindingsResponse>.Execute()
ClientServiceRequest<ListTagBindingsResponse>.ExecuteAsStream()
ClientServiceRequest<ListTagBindingsResponse>.ExecuteAsync()
ClientServiceRequest<ListTagBindingsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListTagBindingsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListTagBindingsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListTagBindingsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListTagBindingsResponse>.GenerateRequestUri()
ClientServiceRequest<ListTagBindingsResponse>.GetBody()
ClientServiceRequest<ListTagBindingsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListTagBindingsResponse>.ETagAction
ClientServiceRequest<ListTagBindingsResponse>.ModifyRequest
ClientServiceRequest<ListTagBindingsResponse>.ValidateParameters
ClientServiceRequest<ListTagBindingsResponse>.RequestParameters
ClientServiceRequest<ListTagBindingsResponse>.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.CloudResourceManager.v3
Assembly: Google.Apis.CloudResourceManager.v3.dll
Syntax
public class ListRequest : CloudResourceManagerBaseServiceRequest<ListTagBindingsResponse>, IClientServiceRequest<ListTagBindingsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService)

Constructs a new List request.

Declaration
public ListRequest(IClientService service)
Parameters
Type Name Description
IClientService service

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.CloudResourceManager.v3.Data.ListTagBindingsResponse>.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.CloudResourceManager.v3.Data.ListTagBindingsResponse>.MethodName

PageSize

Optional. The maximum number of TagBindings to return in the response. The server allows a maximum of 300 TagBindings to return. If unspecified, the server will use 100 as the default.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

Optional. A pagination token returned from a previous call to ListTagBindings that indicates where this listing should continue from.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Parent

Required. The full resource name of a resource for which you want to list existing TagBindings. E.g. "//cloudresourcemanager.googleapis.com/projects/123"

Declaration
[RequestParameter("parent", RequestParameterType.Query)]
public virtual string Parent { get; set; }
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.CloudResourceManager.v3.Data.ListTagBindingsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.CloudResourceManager.v3.CloudResourceManagerBaseServiceRequest<Google.Apis.CloudResourceManager.v3.Data.ListTagBindingsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top