Show / Hide Table of Contents

Class ProjectsResource.ListRequest

Lists each FirebaseProject accessible to the caller. The elements are returned in no particular order, but they will be a consistent view of the Projects when additional requests are made with a pageToken. This method is eventually consistent with Project mutations, which means newly provisioned Projects and recent modifications to existing Projects might not be reflected in the set of Projects. The list will include only ACTIVE Projects. Use GetFirebaseProject for consistent reads as well as for additional Project details.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<ListFirebaseProjectsResponse>
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>
ProjectsResource.ListRequest
Implements
IClientServiceRequest<ListFirebaseProjectsResponse>
IClientServiceRequest
Inherited Members
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.Xgafv
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.AccessToken
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.Alt
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.Callback
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.Fields
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.Key
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.OauthToken
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.PrettyPrint
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.QuotaUser
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.UploadType
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.UploadProtocol
ClientServiceRequest<ListFirebaseProjectsResponse>.Execute()
ClientServiceRequest<ListFirebaseProjectsResponse>.ExecuteAsStream()
ClientServiceRequest<ListFirebaseProjectsResponse>.ExecuteAsync()
ClientServiceRequest<ListFirebaseProjectsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListFirebaseProjectsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListFirebaseProjectsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListFirebaseProjectsResponse>.CreateRequest(bool?)
ClientServiceRequest<ListFirebaseProjectsResponse>.GenerateRequestUri()
ClientServiceRequest<ListFirebaseProjectsResponse>.GetBody()
ClientServiceRequest<ListFirebaseProjectsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<ListFirebaseProjectsResponse>.ETagAction
ClientServiceRequest<ListFirebaseProjectsResponse>.ModifyRequest
ClientServiceRequest<ListFirebaseProjectsResponse>.ValidateParameters
ClientServiceRequest<ListFirebaseProjectsResponse>.ApiVersion
ClientServiceRequest<ListFirebaseProjectsResponse>.RequestParameters
ClientServiceRequest<ListFirebaseProjectsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.FirebaseManagement.v1beta1
Assembly: Google.Apis.FirebaseManagement.v1beta1.dll
Syntax
public class ProjectsResource.ListRequest : FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>, IClientServiceRequest<ListFirebaseProjectsResponse>, 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
string
Overrides
ClientServiceRequest<ListFirebaseProjectsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListFirebaseProjectsResponse>.MethodName

PageSize

The maximum number of Projects to return in the response. The server may return fewer than this at its discretion. If no value is specified (or too large a value is specified), the server will impose its own limit. This value cannot be negative.

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

PageToken

Token returned from a previous call to ListFirebaseProjects indicating where in the set of Projects to resume listing.

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

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListFirebaseProjectsResponse>.RestPath

ShowDeleted

Optional. Controls whether Projects in the DELETED state should be returned in the response. If not specified, only ACTIVE Projects will be returned.

Declaration
[RequestParameter("showDeleted", RequestParameterType.Query)]
public virtual bool? ShowDeleted { get; set; }
Property Value
Type Description
bool?

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
FirebaseManagementBaseServiceRequest<ListFirebaseProjectsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX