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
| 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. (AAB_INTEGRATION_STATE_UNSPECIFIED, INTEGRATED, PLAY_ACCOUNT_NOT_LINKED, NO_APP_WITH_GIVEN_BUNDLE_ID_IN_PLAY_ACCOUNT, APP_NOT_PUBLISHED, AAB_STATE_UNAVAILABLE, PLAY_IAS_TERMS_NOT_ACCEPTED, ADHOC_SHARING_KEY_NOT_GENERATED, ADHOC_SHARING_KEY_NOT_REGISTERED, PLAY_ANDROID_DEVELOPER_CONSOLE_ACCOUNT_NOT_FOUND) |
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
;