application_detail_service_apk_details
Creates, updates, deletes, gets or lists an application_detail_service_apk_details resource.
Overview
| Name | application_detail_service_apk_details |
| Type | Resource |
| Id | firebase.testing.application_detail_service_apk_details |
Fields
The following fields are returned by SELECT queries:
- get_apk_details
| Name | Datatype | Description |
|---|---|---|
apkDetail | object | Details of the Android App. (id: ApkDetail) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_apk_details | select | bundleLocation.gcsPath | Gets the details of an Android application APK. |
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 |
|---|---|---|
bundleLocation.gcsPath | string |
SELECT examples
- get_apk_details
Gets the details of an Android application APK.
SELECT
apkDetail
FROM firebase.testing.application_detail_service_apk_details
WHERE bundleLocation.gcsPath = '{{ bundleLocation.gcsPath }}'
;