Skip to main content

android_apps_config

Creates, updates, deletes, gets or lists an android_apps_config resource.

Overview

Nameandroid_apps_config
TypeResource
Idfirebase.firebase.android_apps_config

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
configFileContentsstring (byte)The contents of the JSON configuration file.
configFilenamestringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_configselectprojectsId, androidAppsIdGets 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.

NameDatatypeDescription
androidAppsIdstring
projectsIdstring

SELECT examples

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;