/** * 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"; /** * The resource represents the state of a specific entry type deployment on a target. * */ export interface SecurityPolicyEntryState { /** * Unique id of the security policy entry state. */ "id": string; /** * The OCID of the security policy entry type associated. */ "securityPolicyEntryId": string; /** * The OCID of the security policy deployment associated. */ "securityPolicyDeploymentId"?: string; /** * The OCID of the target on which the security policy is deployed. */ "targetId": string; /** * The security policy entry type. Allowed values: * - FIREWALL_POLICY - The SQL Firewall policy entry type. * - AUDIT_POLICY - The audit policy entry type. * - CONFIG - Config changes deployment. * */ "entryType": SecurityPolicyEntryState.EntryType; /** * Details about the current deployment status. */ "deploymentStatusDetails"?: string; /** * The current deployment status of the security policy deployment and the security policy entry associated. */ "deploymentStatus": model.SecurityPolicyEntryStateDeploymentStatus; "entryDetails"?: model.AuditPolicyEntryDetails | model.FirewallPolicyEntryDetails; } export declare namespace SecurityPolicyEntryState { enum EntryType { FirewallPolicy = "FIREWALL_POLICY", AuditPolicy = "AUDIT_POLICY", Config = "CONFIG", /** * 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: SecurityPolicyEntryState): object; function getDeserializedJsonObj(obj: SecurityPolicyEntryState): object; }