workload_identity_pools_attestation_rules
Creates, updates, deletes, gets or lists a workload_identity_pools_attestation_rules resource.
Overview
| Name | workload_identity_pools_attestation_rules |
| Type | Resource |
| Id | google.iam.workload_identity_pools_attestation_rules |
Fields
The following fields are returned by SELECT queries:
- list_attestation_rules
| Name | Datatype | Description |
|---|---|---|
googleCloudResource | string | Optional. A single workload operating on Google Cloud. For example: //compute.googleapis.com/projects/123/uid/zones/us-central1-a/instances/12345. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_attestation_rules | select | projectsId, locationsId, workloadIdentityPoolsId | pageSize, filter, pageToken | List all AttestationRule on a WorkloadIdentityPoolManagedIdentity. |
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 |
|---|---|---|
locationsId | string | |
projectsId | string | |
workloadIdentityPoolsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list_attestation_rules
List all AttestationRule on a WorkloadIdentityPoolManagedIdentity.
SELECT
googleCloudResource
FROM google.iam.workload_identity_pools_attestation_rules
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND workloadIdentityPoolsId = '{{ workloadIdentityPoolsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND filter = '{{ filter }}'
AND pageToken = '{{ pageToken }}'
;