apps_aab_info
Creates, updates, deletes, gets or lists an apps_aab_info
resource.
Overview
Name | apps_aab_info |
Type | Resource |
Id | firebase.appdistribution.apps_aab_info |
Fields
The following fields are returned by SELECT
queries:
- get_aab_info
Successful response
Name | Datatype | Description |
---|---|---|
name | string | The name of the AabInfo resource. Format: projects/{project_number}/apps/{app}/aabInfo |
integrationState | string | App bundle integration state. Only valid for android apps. |
testCertificate | object | App 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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_aab_info | select | projectsId , appsId | Gets 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.
Name | Datatype | Description |
---|---|---|
appsId | string | |
projectsId | string |
SELECT
examples
- get_aab_info
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;