Show / Hide Table of Contents

Class ProjectsResource.WebAppsResource

The "webApps" collection of methods.

Inheritance
object
ProjectsResource.WebAppsResource
Inherited Members
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.WebAppsResource

Constructors

WebAppsResource(IClientService)

Constructs a new resource.

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

Methods

Create(WebApp, string)

Requests the creation of a new WebApp in the specified FirebaseProject. The result of this call is an Operation which can be used to track the provisioning process. The Operation is automatically deleted after completion, so there is no need to call DeleteOperation.

Declaration
public virtual ProjectsResource.WebAppsResource.CreateRequest Create(WebApp body, string parent)
Parameters
Type Name Description
WebApp body

The body of the request.

string parent

The resource name of the parent FirebaseProject in which to create a WebApp, in the format: projects/PROJECT_IDENTIFIER/webApps Refer to the FirebaseProject name field for details about PROJECT_IDENTIFIER values.

Returns
Type Description
ProjectsResource.WebAppsResource.CreateRequest

Get(string)

Gets the specified WebApp.

Declaration
public virtual ProjectsResource.WebAppsResource.GetRequest Get(string name)
Parameters
Type Name Description
string name

The resource name of the WebApp, in the format: projects/PROJECT_IDENTIFIER /webApps/APP_ID Since an APP_ID is a unique identifier, the Unique Resource from Sub-Collection access pattern may be used here, in the format: projects/-/webApps/APP_ID Refer to the WebApp name field for details about PROJECT_IDENTIFIER and APP_ID values.

Returns
Type Description
ProjectsResource.WebAppsResource.GetRequest

GetConfig(string)

Gets the configuration artifact associated with the specified WebApp.

Declaration
public virtual ProjectsResource.WebAppsResource.GetConfigRequest GetConfig(string name)
Parameters
Type Name Description
string name

The resource name of the WebApp configuration to download, in the format: projects/PROJECT_IDENTIFIER/webApps/APP_ID/config Since an APP_ID is a unique identifier, the Unique Resource from Sub-Collection access pattern may be used here, in the format: projects/-/webApps/APP_ID Refer to the WebApp name field for details about PROJECT_IDENTIFIER and APP_ID values.

Returns
Type Description
ProjectsResource.WebAppsResource.GetConfigRequest

List(string)

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.

Declaration
public virtual ProjectsResource.WebAppsResource.ListRequest List(string parent)
Parameters
Type Name 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.

Returns
Type Description
ProjectsResource.WebAppsResource.ListRequest

Patch(WebApp, string)

Updates the attributes of the specified WebApp.

Declaration
public virtual ProjectsResource.WebAppsResource.PatchRequest Patch(WebApp body, string name)
Parameters
Type Name Description
WebApp body

The body of the request.

string name

The resource name of the WebApp, in the format: projects/PROJECT_IDENTIFIER /webApps/APP_ID * PROJECT_IDENTIFIER: the parent Project's ProjectNumber (recommended) or its ProjectId. Learn more about using project identifiers in Google's AIP 2510 standard. Note that the value for PROJECT_IDENTIFIER in any response body will be the ProjectId. * APP_ID: the globally unique, Firebase-assigned identifier for the App (see appId).

Returns
Type Description
ProjectsResource.WebAppsResource.PatchRequest

Remove(RemoveWebAppRequest, string)

Removes the specified WebApp from the FirebaseProject.

Declaration
public virtual ProjectsResource.WebAppsResource.RemoveRequest Remove(RemoveWebAppRequest body, string name)
Parameters
Type Name Description
RemoveWebAppRequest body

The body of the request.

string name

Required. The resource name of the WebApp, in the format: projects/ PROJECT_IDENTIFIER/webApps/APP_ID Since an APP_ID is a unique identifier, the Unique Resource from Sub-Collection access pattern may be used here, in the format: projects/-/webApps/APP_ID Refer to the WebApp name field for details about PROJECT_IDENTIFIER and APP_ID values.

Returns
Type Description
ProjectsResource.WebAppsResource.RemoveRequest

Undelete(UndeleteWebAppRequest, string)

Restores the specified WebApp to the FirebaseProject.

Declaration
public virtual ProjectsResource.WebAppsResource.UndeleteRequest Undelete(UndeleteWebAppRequest body, string name)
Parameters
Type Name Description
UndeleteWebAppRequest body

The body of the request.

string name

Required. The resource name of the WebApp, in the format: projects/ PROJECT_IDENTIFIER/webApps/APP_ID Since an APP_ID is a unique identifier, the Unique Resource from Sub-Collection access pattern may be used here, in the format: projects/-/webApps/APP_ID Refer to the WebApp name field for details about PROJECT_IDENTIFIER and APP_ID values.

Returns
Type Description
ProjectsResource.WebAppsResource.UndeleteRequest
In this article
Back to top Generated by DocFX