android_apps_config
Creates, updates, deletes, gets or lists an android_apps_config resource.
Overview
| Name | android_apps_config |
| Type | Resource |
| Id | firebase.firebase.android_apps_config |
Fields
The following fields are returned by SELECT queries:
- get_config
| Name | Datatype | Description |
|---|---|---|
configFileContents | string (byte) | The contents of the JSON configuration file. |
configFilename | string | The filename that the configuration artifact for the AndroidApp is typically saved as. For example: google-services.json |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_config | select | projectsId, androidAppsId | Gets the configuration artifact associated with the specified AndroidApp. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
androidAppsId | string | |
projectsId | string |
SELECT examples
- get_config
Gets the configuration artifact associated with the specified AndroidApp.
SELECT
configFileContents,
configFilename
FROM firebase.firebase.android_apps_config
WHERE projectsId = '{{ projectsId }}' -- required
AND androidAppsId = '{{ androidAppsId }}' -- required
;