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

DataFlowEvent

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

Details about a data flow event, in which either the data is moved to or is accessed from a non-compliant geo-location, as defined in the applicable data security policy.

interface DataFlowEvent {
eventId?: string;
eventTime?: Date;
operation?:
| "OPERATION_UNSPECIFIED"
| "READ"
| "MOVE"
| "COPY";
principalEmail?: string;
violatedLocation?: string;
}

§Properties

§
eventId?: string
[src]

Unique identifier for data flow event.

§
eventTime?: Date
[src]

Timestamp of data flow event.

§
operation?: "OPERATION_UNSPECIFIED" | "READ" | "MOVE" | "COPY"
[src]

The operation performed by the principal for the data flow event.

§
principalEmail?: string
[src]

The email address of the principal that initiated the data flow event. The principal could be a user account, service account, Google group, or other.

§
violatedLocation?: string
[src]

Non-compliant location of the principal or the data destination.