Skip to main content

access_approval_requests

Creates, updates, deletes, gets or lists an access_approval_requests resource.

Overview

Nameaccess_approval_requests
TypeResource
Idgoogle.cloudcontrolspartner.access_approval_requests

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectorganizationsId, locationsId, customersId, workloadsIdpageSize, pageToken, orderBy, filterDeprecated: 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.

NameDatatypeDescription
customersIdstring
locationsIdstring
organizationsIdstring
workloadsIdstring
filterstring
orderBystring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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 }}'
;