/** * Data Safe API * APIs for using Oracle Data Safe. * OpenAPI spec version: 20181201 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ /** * The details of the aggregation dimensions used for summarizing audit events. */ export interface AuditEventAggregationDimensions { /** * The time the audit event occurred in the target database. */ "auditEventTime"?: Array; /** * Name of the database user whose actions were audited. */ "dbUserName"?: Array; /** * The OCID of the target database that was audited. */ "targetId"?: Array; /** * The name of the target database that was audited. */ "targetName"?: Array; /** * Class of the target that was audited. */ "targetClass"?: Array; /** * Type of object in the source database affected by the action. For example PL/SQL, SYNONYM or PACKAGE BODY. */ "objectType"?: Array; /** * Name of the host machine from which the session was spawned. */ "clientHostname"?: Array; /** * The application from which the audit event was generated. For example SQL Plus or SQL Developer. */ "clientProgram"?: Array; /** * The client identifier in each Oracle session. */ "clientId"?: Array; /** * Type of auditing. */ "auditType"?: Array; /** * The name of the event executed by the user on the target database. For example ALTER SEQUENCE, CREATE TRIGGER or CREATE INDEX. */ "eventName"?: Array; /** * The schema name of the object affected by the action. */ "objectOwner"?: Array; /** * Comma-seperated list of audit policies that caused the current audit event. */ "auditPolicies"?: Array; /** * The name of the object affected by the action. */ "objectName"?: Array; /** * The name of the operating system user for the database session. */ "osUserName"?: Array; /** * The Oracle error code generated by the action. */ "errorCode"?: Array; /** * The IP address of the host from which the session was spawned. */ "clientIp"?: Array; /** * The user ID of the external user of the audit event. */ "externalUserId"?: Array; } export declare namespace AuditEventAggregationDimensions { enum TargetClass { Database = "DATABASE", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } enum AuditType { Standard = "STANDARD", FineGrained = "FINE_GRAINED", Xs = "XS", DatabaseVault = "DATABASE_VAULT", LabelSecurity = "LABEL_SECURITY", Rman = "RMAN", Datapump = "DATAPUMP", DirectPathApi = "DIRECT_PATH_API", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } function getJsonObj(obj: AuditEventAggregationDimensions): object; function getDeserializedJsonObj(obj: AuditEventAggregationDimensions): object; }