/** * 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. */ import * as model from "../model"; /** * Audit policy details. */ export interface AuditPolicyEntryDetails extends model.EntryDetails { /** * The status of Data Safe user exclusion in the audit policy. */ "datasafeUserExclusionStatus": AuditPolicyEntryDetails.DatasafeUserExclusionStatus; /** * Specifies why exclusion of the Data Safe user did not succeed. */ "excludeDatasafeUserFailureMsg"?: string; "entryType": string; } export declare namespace AuditPolicyEntryDetails { enum DatasafeUserExclusionStatus { ExcludedSuccess = "EXCLUDED_SUCCESS", ExcludedFailed = "EXCLUDED_FAILED", NotExcluded = "NOT_EXCLUDED", /** * 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: AuditPolicyEntryDetails, isParentJsonObj?: boolean): object; const entryType = "AUDIT_POLICY"; function getDeserializedJsonObj(obj: AuditPolicyEntryDetails, isParentJsonObj?: boolean): object; }