Show / Hide Table of Contents

Class ProjectsResource.ListRequest

Lists all projects to which you have been granted any project role.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ProjectList>
BigqueryBaseServiceRequest<ProjectList>
ProjectsResource.ListRequest
Implements
IClientServiceRequest<ProjectList>
IClientServiceRequest
Inherited Members
BigqueryBaseServiceRequest<ProjectList>.Alt
BigqueryBaseServiceRequest<ProjectList>.Fields
BigqueryBaseServiceRequest<ProjectList>.Key
BigqueryBaseServiceRequest<ProjectList>.OauthToken
BigqueryBaseServiceRequest<ProjectList>.PrettyPrint
BigqueryBaseServiceRequest<ProjectList>.QuotaUser
BigqueryBaseServiceRequest<ProjectList>.UserIp
ClientServiceRequest<ProjectList>.Execute()
ClientServiceRequest<ProjectList>.ExecuteAsStream()
ClientServiceRequest<ProjectList>.ExecuteAsync()
ClientServiceRequest<ProjectList>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ProjectList>.ExecuteAsStreamAsync()
ClientServiceRequest<ProjectList>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ProjectList>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ProjectList>.GenerateRequestUri()
ClientServiceRequest<ProjectList>.GetBody()
ClientServiceRequest<ProjectList>.GetDefaultETagAction(String)
ClientServiceRequest<ProjectList>.ETagAction
ClientServiceRequest<ProjectList>.ModifyRequest
ClientServiceRequest<ProjectList>.ValidateParameters
ClientServiceRequest<ProjectList>.RequestParameters
ClientServiceRequest<ProjectList>.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.Bigquery.v2
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ListRequest : BigqueryBaseServiceRequest<ProjectList>, IClientServiceRequest<ProjectList>, 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.Bigquery.v2.Data.ProjectList>.HttpMethod

MaxResults

Maximum number of results to return

Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual long? MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MethodName

Gets the method name.

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

PageToken

Page token, returned by a previous call, to request the next page of results

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { 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.Bigquery.v2.Data.ProjectList>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Bigquery.v2.BigqueryBaseServiceRequest<Google.Apis.Bigquery.v2.Data.ProjectList>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top