valued_resources
Creates, updates, deletes, gets or lists a valued_resources
resource.
Overview
Name | valued_resources |
Type | Resource |
Id | google.securitycenter.valued_resources |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Valued resource name, for example, e.g.: organizations/123/simulations/456/valuedResources/789 |
displayName | string | Human-readable name of the valued resource. |
exposedScore | number | Exposed score for this valued resource. A value of 0 means no exposure was detected exposure. |
resource | string | The full resource name of the valued resource. |
resourceType | string | The resource type of the valued resource. |
resourceValue | string | How valuable this resource is. |
resourceValueConfigsUsed | array | List of resource value configurations' metadata used to determine the value of this resource. Maximum of 100. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_simulations_attack_exposure_results_valued_resources_list | SELECT | attackExposureResultsId, organizationsId, simulationsId | Lists the valued resources for a set of simulation results and filter. |
organizations_simulations_valued_resources_get | SELECT | organizationsId, simulationsId, valuedResourcesId | Get the valued resource by name |
organizations_simulations_valued_resources_list | SELECT | organizationsId, simulationsId | Lists the valued resources for a set of simulation results and filter. |
organizations_valued_resources_list | SELECT | organizationsId | Lists the valued resources for a set of simulation results and filter. |
SELECT
examples
Lists the valued resources for a set of simulation results and filter.
SELECT
name,
displayName,
exposedScore,
resource,
resourceType,
resourceValue,
resourceValueConfigsUsed
FROM google.securitycenter.valued_resources
WHERE organizationsId = '{{ organizationsId }}';