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

Exfiltration

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

Exfiltration represents a data exfiltration attempt from one or more sources to one or more targets. The sources attribute lists the sources of the exfiltrated data. The targets attribute lists the destinations the data was copied to.

interface Exfiltration {
sources?: ExfilResource[];
targets?: ExfilResource[];
totalExfiltratedBytes?: bigint;
}

§Properties

§
sources?: ExfilResource[]
[src]

If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.

§
targets?: ExfilResource[]
[src]

If there are multiple targets, each target would get a complete copy of the "joined" source data.

§
totalExfiltratedBytes?: bigint
[src]

Total exfiltrated bytes processed for the entire job.