Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudSecuritycenterV2ResourceValueConfig

import type { GoogleCloudSecuritycenterV2ResourceValueConfig } from "https://googleapis.deno.dev/v1/securitycenter:v1.ts";

A resource value config (RVC) is a mapping configuration of user's resources to resource values. Used in Attack path simulations.

interface GoogleCloudSecuritycenterV2ResourceValueConfig {
cloudProvider?:
| "CLOUD_PROVIDER_UNSPECIFIED"
| "GOOGLE_CLOUD_PLATFORM"
| "AMAZON_WEB_SERVICES"
| "MICROSOFT_AZURE";
readonly createTime?: Date;
description?: string;
name?: string;
resourceLabelsSelector?: {
[key: string]: string;
}
;
resourceType?: string;
resourceValue?:
| "RESOURCE_VALUE_UNSPECIFIED"
| "HIGH"
| "MEDIUM"
| "LOW"
| "NONE";
scope?: string;
tagValues?: string[];
readonly updateTime?: Date;
}

§Properties

§
cloudProvider?: "CLOUD_PROVIDER_UNSPECIFIED" | "GOOGLE_CLOUD_PLATFORM" | "AMAZON_WEB_SERVICES" | "MICROSOFT_AZURE"
[src]

Cloud provider this configuration applies to

§
readonly createTime?: Date
[src]

Output only. Timestamp this resource value config was created.

§
description?: string
[src]

Description of the resource value config.

§
name?: string
[src]

Name for the resource value config

§
resourceLabelsSelector?: {
[key: string]: string;
}
[src]

List of resource labels to search for, evaluated with AND. E.g. "resource_labels_selector": {"key": "value", "env": "prod"} will match resources with labels "key": "value" AND "env": "prod" https://cloud.google.com/resource-manager/docs/creating-managing-labels

§
resourceType?: string
[src]

Apply resource_value only to resources that match resource_type. resource_type will be checked with "AND" of other resources. E.g. "storage.googleapis.com/Bucket" with resource_value "HIGH" will apply "HIGH" value only to "storage.googleapis.com/Bucket" resources.

§
resourceValue?: "RESOURCE_VALUE_UNSPECIFIED" | "HIGH" | "MEDIUM" | "LOW" | "NONE"
[src]

Resource value level this expression represents Only required when there is no SDP mapping in the request

§
scope?: string
[src]

Project or folder to scope this config to. For example, "project/456" would apply this config only to resources in "project/456" scope will be checked with "AND" of other resources.

§

A mapping of the sensitivity on Sensitive Data Protection finding to resource values. This mapping can only be used in combination with a resource_type that is related to BigQuery, e.g. "bigquery.googleapis.com/Dataset".

§
tagValues?: string[]
[src]

Required. Tag values combined with AND to check against. Values in the form "tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ] https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing

§
readonly updateTime?: Date
[src]

Output only. Timestamp this resource value config was last updated.