appgroups_balance
Creates, updates, deletes, gets or lists an appgroups_balance resource.
Overview
| Name | appgroups_balance |
| Type | Resource |
| Id | google.apigee.appgroups_balance |
Fields
The following fields are returned by SELECT queries:
- organizations_appgroups_get_balance
| Name | Datatype | Description |
|---|---|---|
wallets | array | Output only. List of all wallets. Each individual wallet stores the account balance for a particular currency. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
organizations_appgroups_get_balance | select | organizationsId, appgroupsId | Gets the account balance for the AppGroup. |
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 |
|---|---|---|
appgroupsId | string | |
organizationsId | string |
SELECT examples
- organizations_appgroups_get_balance
Gets the account balance for the AppGroup.
SELECT
wallets
FROM google.apigee.appgroups_balance
WHERE organizationsId = '{{ organizationsId }}' -- required
AND appgroupsId = '{{ appgroupsId }}' -- required
;