Skip to main content

apps_aab_info

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

Overview

Nameapps_aab_info
TypeResource
Idfirebase.appdistribution.apps_aab_info

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe name of the AabInfo resource. Format: projects/{project_number}/apps/{app}/aabInfo
integrationStatestringApp bundle integration state. Only valid for android apps.
testCertificateobjectApp bundle test certificate generated for the app. Set after the first app bundle is uploaded for this app. (id: GoogleFirebaseAppdistroV1TestCertificate)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_aab_infoselectprojectsId, appsIdGets Android App Bundle (AAB) information for a Firebase app.

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
appsIdstring
projectsIdstring

SELECT examples

Gets Android App Bundle (AAB) information for a Firebase app.

SELECT
name,
integrationState,
testCertificate
FROM firebase.appdistribution.apps_aab_info
WHERE projectsId = '{{ projectsId }}' -- required
AND appsId = '{{ appsId }}' -- required;