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

AuditLoggingSettings

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

Represents the settings for Cloud audit logging

interface AuditLoggingSettings {
logAdminReadActions?: boolean;
logDataReadActions?: boolean;
logDataWriteActions?: boolean;
project?: string;
}

§Properties

§
logAdminReadActions?: boolean
[src]

Indicates whether audit logging is on/off for admin activity read APIs i.e. Get/List DataSources, Get/List SearchApplications etc.

§
logDataReadActions?: boolean
[src]

Indicates whether audit logging is on/off for data access read APIs i.e. ListItems, GetItem etc.

§
logDataWriteActions?: boolean
[src]

Indicates whether audit logging is on/off for data access write APIs i.e. IndexItem etc.

§
project?: string
[src]

The resource name of the GCP Project to store audit logs. Cloud audit logging will be enabled after project_name has been updated through CustomerService. Format: projects/{project_id}