Adds Firebase resources and enables Firebase services in the specified existing Google Cloud Project
.
Since a FirebaseProject
is actually also a Google Cloud Project
, a FirebaseProject
has the same underlying Google Cloud identifiers (projectNumber
and projectId
). This allows for easy interop with Google APIs.
The result of this call is an Operation
. Poll the Operation
to track the provisioning process by calling operations.get
until done
is true
. When done
is true
, the Operation
has either succeeded or failed. If the Operation
succeeded, its response
is set to a FirebaseProject
; if the Operation
failed, its error
is set to a google.rpc.Status
. The Operation
is automatically deleted after completion, so there is no need to call operations.delete
.
This method does not modify any billing account information on the underlying Google Cloud Project
.
To call projects.addFirebase
, a project member or service account must have the following permissions (the IAM roles of Editor and Owner contain these permissions): firebase.projects.update
, resourcemanager.projects.get
, serviceusage.services.enable
, and serviceusage.services.get
.
HTTP request
POST https://firebase.googleapis.com/v1beta1/{project=projects/*}:addFirebase
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
project |
The resource name of the Google Cloud
Refer to the After calling |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "locationId": string } |
Fields | |
---|---|
location |
DEPRECATED. Instead, use product-specific REST APIs to work with the location of each resource in a Project. This field may be ignored, especially for newly provisioned projects after October 30, 2024. The ID of the Project's "location for default Google Cloud resources", which are resources associated with Google App Engine. The location must be one of the available Google App Engine locations. |
Response body
If successful, the response body contains an instance of Operation
.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/cloud-platform
https://www.googleapis.com/auth/firebase
For more information, see the Authentication Overview.