Class ProjectsResource.WebAppsResource.ListRequest
Lists each WebApp associated with the specified FirebaseProject. The elements are returned in no
particular order, but will be a consistent view of the Apps when additional requests are made with a
pageToken.
Inheritance
Inherited Members
Namespace: Google.Apis.FirebaseManagement.v1beta1
Assembly: Google.Apis.FirebaseManagement.v1beta1.dll
Syntax
public class ProjectsResource.WebAppsResource.ListRequest : FirebaseManagementBaseServiceRequest<ListWebAppsResponse>, IClientServiceRequest<ListWebAppsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
| Type | Name | Description |
|---|---|---|
| IClientService | service | |
| string | parent |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
PageSize
The maximum number of Apps to return in the response. The server may return fewer than this value at its discretion. If no value is specified (or too large a value is specified), then the server will impose its own limit.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
PageToken
Token returned from a previous call to ListWebApps indicating where in the set of Apps to resume
listing.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Parent
The resource name of the parent FirebaseProject for which to list each associated WebApp, in the
format: projects/PROJECT_IDENTIFIER/webApps Refer to the FirebaseProject
name field for details about PROJECT_IDENTIFIER values.
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
| Type | Description |
|---|---|
| string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
ShowDeleted
Controls whether Apps in the DELETED state should be returned in the response. If not specified,
only ACTIVE Apps 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()