Skip to main content

scanned_resources

Creates, updates, deletes, gets or lists a scanned_resources resource.

Overview

Namescanned_resources
TypeResource
Idgoogle.workloadmanager.scanned_resources

Fields

NameDatatypeDescription
resourcestringresource name
typestringresource type

Methods

NameAccessible byRequired ParamsDescription
listSELECTevaluationsId, executionsId, locationsId, projectsIdList all scanned resources for a single Execution.

SELECT examples

List all scanned resources for a single Execution.

SELECT
resource,
type
FROM google.workloadmanager.scanned_resources
WHERE evaluationsId = '{{ evaluationsId }}'
AND executionsId = '{{ executionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';