access_approval_requests
Creates, updates, deletes, gets or lists an access_approval_requests resource.
Overview
| Name | access_approval_requests |
| Type | Resource |
| Id | google.cloudcontrolspartner.access_approval_requests |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | organizationsId, locationsId, customersId, workloadsId | pageSize, pageToken, orderBy, filter | Deprecated: Only returns access approval requests directly associated with an assured workload folder. |
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 |
|---|---|---|
customersId | string | |
locationsId | string | |
organizationsId | string | |
workloadsId | string | |
filter | string | |
orderBy | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list
Deprecated: Only returns access approval requests directly associated with an assured workload folder.
SELECT
*
FROM google.cloudcontrolspartner.access_approval_requests
WHERE organizationsId = '{{ organizationsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND customersId = '{{ customersId }}' -- required
AND workloadsId = '{{ workloadsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND orderBy = '{{ orderBy }}'
AND filter = '{{ filter }}'
;