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

Finding

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

Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding.

interface Finding {
access?: Access;
affectedResources?: AffectedResources;
aiModel?: AiModel;
application?: Application;
attackExposure?: AttackExposure;
backupDisasterRecovery?: BackupDisasterRecovery;
canonicalName?: string;
category?: string;
chokepoint?: Chokepoint;
cloudArmor?: CloudArmor;
cloudDlpDataProfile?: CloudDlpDataProfile;
cloudDlpInspection?: CloudDlpInspection;
compliances?: Compliance[];
connections?: Connection[];
readonly contacts?: {
[key: string]: ContactDetails;
}
;
containers?: Container[];
createTime?: Date;
dataAccessEvents?: DataAccessEvent[];
database?: Database;
dataFlowEvents?: DataFlowEvent[];
dataRetentionDeletionEvents?: DataRetentionDeletionEvent[];
description?: string;
disk?: Disk;
eventTime?: Date;
exfiltration?: Exfiltration;
readonly externalSystems?: {};
externalUri?: string;
files?: File[];
findingClass?:
| "FINDING_CLASS_UNSPECIFIED"
| "THREAT"
| "VULNERABILITY"
| "MISCONFIGURATION"
| "OBSERVATION"
| "SCC_ERROR"
| "POSTURE_VIOLATION"
| "TOXIC_COMBINATION"
| "SENSITIVE_DATA_RISK"
| "CHOKEPOINT";
groupMemberships?: GroupMembership[];
iamBindings?: IamBinding[];
indicator?: Indicator;
ipRules?: IpRules;
job?: Job;
kernelRootkit?: KernelRootkit;
kubernetes?: Kubernetes;
loadBalancers?: LoadBalancer[];
logEntries?: LogEntry[];
mitreAttack?: MitreAttack;
moduleName?: string;
mute?:
| "MUTE_UNSPECIFIED"
| "MUTED"
| "UNMUTED"
| "UNDEFINED";
readonly muteInfo?: MuteInfo;
muteInitiator?: string;
readonly muteUpdateTime?: Date;
name?: string;
networks?: Network[];
nextSteps?: string;
notebook?: Notebook;
orgPolicies?: OrgPolicy[];
parent?: string;
readonly parentDisplayName?: string;
processes?: Process[];
resourceName?: string;
readonly securityMarks?: SecurityMarks;
securityPosture?: SecurityPosture;
severity?:
| "SEVERITY_UNSPECIFIED"
| "CRITICAL"
| "HIGH"
| "MEDIUM"
| "LOW";
sourceProperties?: {
[key: string]: any;
}
;
state?: "STATE_UNSPECIFIED" | "ACTIVE" | "INACTIVE";
toxicCombination?: ToxicCombination;
vertexAi?: VertexAi;
vulnerability?: Vulnerability;
}

§Properties

§
access?: Access
[src]

Access details associated with the finding, such as more information on the caller, which method was accessed, and from where.

§
affectedResources?: AffectedResources
[src]

AffectedResources associated with the finding.

§
aiModel?: AiModel
[src]

The AI model associated with the finding.

§
application?: Application
[src]

Represents an application associated with the finding.

§
attackExposure?: AttackExposure
[src]

The results of an attack path simulation relevant to this finding.

§
backupDisasterRecovery?: BackupDisasterRecovery
[src]

Fields related to Backup and DR findings.

§
canonicalName?: string
[src]

The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding.

§
category?: string
[src]

The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION"

§
chokepoint?: Chokepoint
[src]

Contains details about a chokepoint, which is a resource or resource group where high-risk attack paths converge, based on [attack path simulations] (https://cloud.google.com/security-command-center/docs/attack-exposure-learn#attack_path_simulations). This field cannot be updated. Its value is ignored in all update requests.

§
cloudArmor?: CloudArmor
[src]

Fields related to Cloud Armor findings.

§
cloudDlpDataProfile?: CloudDlpDataProfile
[src]

Cloud DLP data profile that is associated with the finding.

§
cloudDlpInspection?: CloudDlpInspection
[src]

Cloud Data Loss Prevention (Cloud DLP) inspection results that are associated with the finding.

§
compliances?: Compliance[]
[src]

Contains compliance information for security standards associated to the finding.

§
connections?: Connection[]
[src]

Contains information about the IP connection associated with the finding.

§
readonly contacts?: {
[key: string]: ContactDetails;
}
[src]

Output only. Map containing the points of contact for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { "security": { "contacts": [ { "email": "person1@company.com" }, { "email": "person2@company.com" } ] } }

§
containers?: Container[]
[src]

Containers associated with the finding. This field provides information for both Kubernetes and non-Kubernetes containers.

§
createTime?: Date
[src]

The time at which the finding was created in Security Command Center.

§
dataAccessEvents?: DataAccessEvent[]
[src]

Data access events associated with the finding.

§
database?: Database
[src]

Database associated with the finding.

§
dataFlowEvents?: DataFlowEvent[]
[src]

Data flow events associated with the finding.

§
dataRetentionDeletionEvents?: DataRetentionDeletionEvent[]
[src]

Data retention deletion events associated with the finding.

§
description?: string
[src]

Contains more details about the finding.

§
disk?: Disk
[src]

Disk associated with the finding.

§
eventTime?: Date
[src]

The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp.

§
exfiltration?: Exfiltration
[src]

Represents exfiltrations associated with the finding.

§
readonly externalSystems?: {}
[src]

Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields.

§
externalUri?: string
[src]

The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL.

§
files?: File[]
[src]

File associated with the finding.

§
findingClass?: "FINDING_CLASS_UNSPECIFIED" | "THREAT" | "VULNERABILITY" | "MISCONFIGURATION" | "OBSERVATION" | "SCC_ERROR" | "POSTURE_VIOLATION" | "TOXIC_COMBINATION" | "SENSITIVE_DATA_RISK" | "CHOKEPOINT"
[src]

The class of the finding.

§
groupMemberships?: GroupMembership[]
[src]

Contains details about groups of which this finding is a member. A group is a collection of findings that are related in some way. This field cannot be updated. Its value is ignored in all update requests.

§
iamBindings?: IamBinding[]
[src]

Represents IAM bindings associated with the finding.

§
indicator?: Indicator
[src]

Represents what's commonly known as an indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. For more information, see Indicator of compromise.

§
ipRules?: IpRules
[src]

IP rules associated with the finding.

§
job?: Job
[src]

Job associated with the finding.

§
kernelRootkit?: KernelRootkit
[src]

Signature of the kernel rootkit.

§
kubernetes?: Kubernetes
[src]

Kubernetes resources associated with the finding.

§
loadBalancers?: LoadBalancer[]
[src]

The load balancers associated with the finding.

§
logEntries?: LogEntry[]
[src]

Log entries that are relevant to the finding.

§
mitreAttack?: MitreAttack
[src]

MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org

§
moduleName?: string
[src]

Unique identifier of the module which generated the finding. Example: folders/598186756061/securityHealthAnalyticsSettings/customModules/56799441161885

§
mute?: "MUTE_UNSPECIFIED" | "MUTED" | "UNMUTED" | "UNDEFINED"
[src]

Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute.

§
readonly muteInfo?: MuteInfo
[src]

Output only. The mute information regarding this finding.

§
muteInitiator?: string
[src]

Records additional information about the mute operation, for example, the mute configuration that muted the finding and the user who muted the finding.

§
readonly muteUpdateTime?: Date
[src]

Output only. The most recent time this finding was muted or unmuted.

§
name?: string
[src]

The relative resource name of the finding. Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}", "projects/{project_id}/sources/{source_id}/findings/{finding_id}".

§
networks?: Network[]
[src]

Represents the VPC networks that the resource is attached to.

§
nextSteps?: string
[src]

Steps to address the finding.

§
notebook?: Notebook
[src]

Notebook associated with the finding.

§
orgPolicies?: OrgPolicy[]
[src]

Contains information about the org policies associated with the finding.

§
parent?: string
[src]

The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}"

§
readonly parentDisplayName?: string
[src]

Output only. The human readable display name of the finding source such as "Event Threat Detection" or "Security Health Analytics".

§
processes?: Process[]
[src]

Represents operating system processes associated with the Finding.

§
resourceName?: string
[src]

For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time.

§
readonly securityMarks?: SecurityMarks
[src]

Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding.

§
securityPosture?: SecurityPosture
[src]

The security posture associated with the finding.

§
severity?: "SEVERITY_UNSPECIFIED" | "CRITICAL" | "HIGH" | "MEDIUM" | "LOW"
[src]

The severity of the finding. This field is managed by the source that writes the finding.

§
sourceProperties?: {
[key: string]: any;
}
[src]

Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only.

§
state?: "STATE_UNSPECIFIED" | "ACTIVE" | "INACTIVE"
[src]

The state of the finding.

§
toxicCombination?: ToxicCombination
[src]

Contains details about a group of security issues that, when the issues occur together, represent a greater risk than when the issues occur independently. A group of such issues is referred to as a toxic combination. This field cannot be updated. Its value is ignored in all update requests.

§
vertexAi?: VertexAi
[src]

VertexAi associated with the finding.

§
vulnerability?: Vulnerability
[src]

Represents vulnerability-specific fields like CVE and CVSS scores. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)