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

AgentDataAccessEvent

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

Details about a data access attempt made by an agent principal not authorized under applicable data security policy.

interface AgentDataAccessEvent {
eventId?: string;
eventTime?: Date;
operation?:
| "OPERATION_UNSPECIFIED"
| "READ"
| "MOVE"
| "COPY";
principalSubject?: string;
}

§Properties

§
eventId?: string
[src]

Unique identifier for data access event.

§
eventTime?: Date
[src]

Timestamp of data access event.

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

The operation performed by the principal to access the data.

§
principalSubject?: string
[src]

The agent principal that accessed the data.