1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSecurityPolicyDeploymentSecurityPolicyEntryStates
Oracle Cloud Infrastructure v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi

oci.DataSafe.getSecurityPolicyDeploymentSecurityPolicyEntryStates

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi

    This data source provides the list of Security Policy Deployment Security Policy Entry States in Oracle Cloud Infrastructure Data Safe service.

    Retrieves a list of all security policy entry states in Data Safe.

    The ListSecurityPolicyEntryStates operation returns only the security policy entry states for the specified security policy entry.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSecurityPolicyDeploymentSecurityPolicyEntryStates = oci.DataSafe.getSecurityPolicyDeploymentSecurityPolicyEntryStates({
        securityPolicyDeploymentId: testSecurityPolicyDeployment.id,
        deploymentStatus: securityPolicyDeploymentSecurityPolicyEntryStateDeploymentStatus,
        securityPolicyEntryId: testSecurityPolicyEntry.id,
        securityPolicyEntryType: securityPolicyDeploymentSecurityPolicyEntryStateSecurityPolicyEntryType,
        targetId: testTarget.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_security_policy_deployment_security_policy_entry_states = oci.DataSafe.get_security_policy_deployment_security_policy_entry_states(security_policy_deployment_id=test_security_policy_deployment["id"],
        deployment_status=security_policy_deployment_security_policy_entry_state_deployment_status,
        security_policy_entry_id=test_security_policy_entry["id"],
        security_policy_entry_type=security_policy_deployment_security_policy_entry_state_security_policy_entry_type,
        target_id=test_target["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/datasafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datasafe.GetSecurityPolicyDeploymentSecurityPolicyEntryStates(ctx, &datasafe.GetSecurityPolicyDeploymentSecurityPolicyEntryStatesArgs{
    			SecurityPolicyDeploymentId: testSecurityPolicyDeployment.Id,
    			DeploymentStatus:           pulumi.StringRef(securityPolicyDeploymentSecurityPolicyEntryStateDeploymentStatus),
    			SecurityPolicyEntryId:      pulumi.StringRef(testSecurityPolicyEntry.Id),
    			SecurityPolicyEntryType:    pulumi.StringRef(securityPolicyDeploymentSecurityPolicyEntryStateSecurityPolicyEntryType),
    			TargetId:                   pulumi.StringRef(testTarget.Id),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testSecurityPolicyDeploymentSecurityPolicyEntryStates = Oci.DataSafe.GetSecurityPolicyDeploymentSecurityPolicyEntryStates.Invoke(new()
        {
            SecurityPolicyDeploymentId = testSecurityPolicyDeployment.Id,
            DeploymentStatus = securityPolicyDeploymentSecurityPolicyEntryStateDeploymentStatus,
            SecurityPolicyEntryId = testSecurityPolicyEntry.Id,
            SecurityPolicyEntryType = securityPolicyDeploymentSecurityPolicyEntryStateSecurityPolicyEntryType,
            TargetId = testTarget.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataSafe.DataSafeFunctions;
    import com.pulumi.oci.DataSafe.inputs.GetSecurityPolicyDeploymentSecurityPolicyEntryStatesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testSecurityPolicyDeploymentSecurityPolicyEntryStates = DataSafeFunctions.getSecurityPolicyDeploymentSecurityPolicyEntryStates(GetSecurityPolicyDeploymentSecurityPolicyEntryStatesArgs.builder()
                .securityPolicyDeploymentId(testSecurityPolicyDeployment.id())
                .deploymentStatus(securityPolicyDeploymentSecurityPolicyEntryStateDeploymentStatus)
                .securityPolicyEntryId(testSecurityPolicyEntry.id())
                .securityPolicyEntryType(securityPolicyDeploymentSecurityPolicyEntryStateSecurityPolicyEntryType)
                .targetId(testTarget.id())
                .build());
    
        }
    }
    
    variables:
      testSecurityPolicyDeploymentSecurityPolicyEntryStates:
        fn::invoke:
          function: oci:DataSafe:getSecurityPolicyDeploymentSecurityPolicyEntryStates
          arguments:
            securityPolicyDeploymentId: ${testSecurityPolicyDeployment.id}
            deploymentStatus: ${securityPolicyDeploymentSecurityPolicyEntryStateDeploymentStatus}
            securityPolicyEntryId: ${testSecurityPolicyEntry.id}
            securityPolicyEntryType: ${securityPolicyDeploymentSecurityPolicyEntryStateSecurityPolicyEntryType}
            targetId: ${testTarget.id}
    

    Using getSecurityPolicyDeploymentSecurityPolicyEntryStates

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getSecurityPolicyDeploymentSecurityPolicyEntryStates(args: GetSecurityPolicyDeploymentSecurityPolicyEntryStatesArgs, opts?: InvokeOptions): Promise<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult>
    function getSecurityPolicyDeploymentSecurityPolicyEntryStatesOutput(args: GetSecurityPolicyDeploymentSecurityPolicyEntryStatesOutputArgs, opts?: InvokeOptions): Output<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult>
    def get_security_policy_deployment_security_policy_entry_states(deployment_status: Optional[str] = None,
                                                                    filters: Optional[Sequence[GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter]] = None,
                                                                    security_policy_deployment_id: Optional[str] = None,
                                                                    security_policy_entry_id: Optional[str] = None,
                                                                    security_policy_entry_type: Optional[str] = None,
                                                                    target_id: Optional[str] = None,
                                                                    opts: Optional[InvokeOptions] = None) -> GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult
    def get_security_policy_deployment_security_policy_entry_states_output(deployment_status: Optional[pulumi.Input[str]] = None,
                                                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilterArgs]]]] = None,
                                                                    security_policy_deployment_id: Optional[pulumi.Input[str]] = None,
                                                                    security_policy_entry_id: Optional[pulumi.Input[str]] = None,
                                                                    security_policy_entry_type: Optional[pulumi.Input[str]] = None,
                                                                    target_id: Optional[pulumi.Input[str]] = None,
                                                                    opts: Optional[InvokeOptions] = None) -> Output[GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult]
    func GetSecurityPolicyDeploymentSecurityPolicyEntryStates(ctx *Context, args *GetSecurityPolicyDeploymentSecurityPolicyEntryStatesArgs, opts ...InvokeOption) (*GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult, error)
    func GetSecurityPolicyDeploymentSecurityPolicyEntryStatesOutput(ctx *Context, args *GetSecurityPolicyDeploymentSecurityPolicyEntryStatesOutputArgs, opts ...InvokeOption) GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResultOutput

    > Note: This function is named GetSecurityPolicyDeploymentSecurityPolicyEntryStates in the Go SDK.

    public static class GetSecurityPolicyDeploymentSecurityPolicyEntryStates 
    {
        public static Task<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult> InvokeAsync(GetSecurityPolicyDeploymentSecurityPolicyEntryStatesArgs args, InvokeOptions? opts = null)
        public static Output<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult> Invoke(GetSecurityPolicyDeploymentSecurityPolicyEntryStatesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult> getSecurityPolicyDeploymentSecurityPolicyEntryStates(GetSecurityPolicyDeploymentSecurityPolicyEntryStatesArgs args, InvokeOptions options)
    public static Output<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesResult> getSecurityPolicyDeploymentSecurityPolicyEntryStates(GetSecurityPolicyDeploymentSecurityPolicyEntryStatesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DataSafe/getSecurityPolicyDeploymentSecurityPolicyEntryStates:getSecurityPolicyDeploymentSecurityPolicyEntryStates
      arguments:
        # arguments dictionary

    The following arguments are supported:

    SecurityPolicyDeploymentId string
    The OCID of the security policy deployment resource.
    DeploymentStatus string
    The current state of the security policy deployment.
    Filters List<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter>
    SecurityPolicyEntryId string
    An optional filter to return only resources that match the specified security policy entry OCID.
    SecurityPolicyEntryType string
    The type of the security policy deployment.
    TargetId string
    An optional filter to return only resources that match the specified target id.
    SecurityPolicyDeploymentId string
    The OCID of the security policy deployment resource.
    DeploymentStatus string
    The current state of the security policy deployment.
    Filters []GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter
    SecurityPolicyEntryId string
    An optional filter to return only resources that match the specified security policy entry OCID.
    SecurityPolicyEntryType string
    The type of the security policy deployment.
    TargetId string
    An optional filter to return only resources that match the specified target id.
    securityPolicyDeploymentId String
    The OCID of the security policy deployment resource.
    deploymentStatus String
    The current state of the security policy deployment.
    filters List<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter>
    securityPolicyEntryId String
    An optional filter to return only resources that match the specified security policy entry OCID.
    securityPolicyEntryType String
    The type of the security policy deployment.
    targetId String
    An optional filter to return only resources that match the specified target id.
    securityPolicyDeploymentId string
    The OCID of the security policy deployment resource.
    deploymentStatus string
    The current state of the security policy deployment.
    filters GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter[]
    securityPolicyEntryId string
    An optional filter to return only resources that match the specified security policy entry OCID.
    securityPolicyEntryType string
    The type of the security policy deployment.
    targetId string
    An optional filter to return only resources that match the specified target id.
    security_policy_deployment_id str
    The OCID of the security policy deployment resource.
    deployment_status str
    The current state of the security policy deployment.
    filters Sequence[GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter]
    security_policy_entry_id str
    An optional filter to return only resources that match the specified security policy entry OCID.
    security_policy_entry_type str
    The type of the security policy deployment.
    target_id str
    An optional filter to return only resources that match the specified target id.
    securityPolicyDeploymentId String
    The OCID of the security policy deployment resource.
    deploymentStatus String
    The current state of the security policy deployment.
    filters List<Property Map>
    securityPolicyEntryId String
    An optional filter to return only resources that match the specified security policy entry OCID.
    securityPolicyEntryType String
    The type of the security policy deployment.
    targetId String
    An optional filter to return only resources that match the specified target id.

    getSecurityPolicyDeploymentSecurityPolicyEntryStates Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    SecurityPolicyDeploymentId string
    The OCID of the security policy deployment associated.
    SecurityPolicyEntryStateCollections List<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollection>
    The list of security_policy_entry_state_collection.
    DeploymentStatus string
    The current deployment status of the security policy deployment and the security policy entry associated.
    Filters List<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter>
    SecurityPolicyEntryId string
    The OCID of the security policy entry type associated.
    SecurityPolicyEntryType string
    TargetId string
    The OCID of the target on which the security policy is deployed.
    Id string
    The provider-assigned unique ID for this managed resource.
    SecurityPolicyDeploymentId string
    The OCID of the security policy deployment associated.
    SecurityPolicyEntryStateCollections []GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollection
    The list of security_policy_entry_state_collection.
    DeploymentStatus string
    The current deployment status of the security policy deployment and the security policy entry associated.
    Filters []GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter
    SecurityPolicyEntryId string
    The OCID of the security policy entry type associated.
    SecurityPolicyEntryType string
    TargetId string
    The OCID of the target on which the security policy is deployed.
    id String
    The provider-assigned unique ID for this managed resource.
    securityPolicyDeploymentId String
    The OCID of the security policy deployment associated.
    securityPolicyEntryStateCollections List<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollection>
    The list of security_policy_entry_state_collection.
    deploymentStatus String
    The current deployment status of the security policy deployment and the security policy entry associated.
    filters List<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter>
    securityPolicyEntryId String
    The OCID of the security policy entry type associated.
    securityPolicyEntryType String
    targetId String
    The OCID of the target on which the security policy is deployed.
    id string
    The provider-assigned unique ID for this managed resource.
    securityPolicyDeploymentId string
    The OCID of the security policy deployment associated.
    securityPolicyEntryStateCollections GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollection[]
    The list of security_policy_entry_state_collection.
    deploymentStatus string
    The current deployment status of the security policy deployment and the security policy entry associated.
    filters GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter[]
    securityPolicyEntryId string
    The OCID of the security policy entry type associated.
    securityPolicyEntryType string
    targetId string
    The OCID of the target on which the security policy is deployed.
    id str
    The provider-assigned unique ID for this managed resource.
    security_policy_deployment_id str
    The OCID of the security policy deployment associated.
    security_policy_entry_state_collections Sequence[GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollection]
    The list of security_policy_entry_state_collection.
    deployment_status str
    The current deployment status of the security policy deployment and the security policy entry associated.
    filters Sequence[GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter]
    security_policy_entry_id str
    The OCID of the security policy entry type associated.
    security_policy_entry_type str
    target_id str
    The OCID of the target on which the security policy is deployed.
    id String
    The provider-assigned unique ID for this managed resource.
    securityPolicyDeploymentId String
    The OCID of the security policy deployment associated.
    securityPolicyEntryStateCollections List<Property Map>
    The list of security_policy_entry_state_collection.
    deploymentStatus String
    The current deployment status of the security policy deployment and the security policy entry associated.
    filters List<Property Map>
    securityPolicyEntryId String
    The OCID of the security policy entry type associated.
    securityPolicyEntryType String
    targetId String
    The OCID of the target on which the security policy is deployed.

    Supporting Types

    GetSecurityPolicyDeploymentSecurityPolicyEntryStatesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollection

    GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollectionItem

    DeploymentStatus string
    The current state of the security policy deployment.
    DeploymentStatusDetails string
    Details about the current deployment status.
    EntryDetails List<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollectionItemEntryDetail>
    Details specific to the security policy entry.
    EntryType 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.
    Id string
    Unique id of the security policy entry state.
    SecurityPolicyDeploymentId string
    The OCID of the security policy deployment resource.
    SecurityPolicyEntryId string
    An optional filter to return only resources that match the specified security policy entry OCID.
    TargetId string
    An optional filter to return only resources that match the specified target id.
    DeploymentStatus string
    The current state of the security policy deployment.
    DeploymentStatusDetails string
    Details about the current deployment status.
    EntryDetails []GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollectionItemEntryDetail
    Details specific to the security policy entry.
    EntryType 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.
    Id string
    Unique id of the security policy entry state.
    SecurityPolicyDeploymentId string
    The OCID of the security policy deployment resource.
    SecurityPolicyEntryId string
    An optional filter to return only resources that match the specified security policy entry OCID.
    TargetId string
    An optional filter to return only resources that match the specified target id.
    deploymentStatus String
    The current state of the security policy deployment.
    deploymentStatusDetails String
    Details about the current deployment status.
    entryDetails List<GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollectionItemEntryDetail>
    Details specific to the security policy entry.
    entryType 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.
    id String
    Unique id of the security policy entry state.
    securityPolicyDeploymentId String
    The OCID of the security policy deployment resource.
    securityPolicyEntryId String
    An optional filter to return only resources that match the specified security policy entry OCID.
    targetId String
    An optional filter to return only resources that match the specified target id.
    deploymentStatus string
    The current state of the security policy deployment.
    deploymentStatusDetails string
    Details about the current deployment status.
    entryDetails GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollectionItemEntryDetail[]
    Details specific to the security policy entry.
    entryType 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.
    id string
    Unique id of the security policy entry state.
    securityPolicyDeploymentId string
    The OCID of the security policy deployment resource.
    securityPolicyEntryId string
    An optional filter to return only resources that match the specified security policy entry OCID.
    targetId string
    An optional filter to return only resources that match the specified target id.
    deployment_status str
    The current state of the security policy deployment.
    deployment_status_details str
    Details about the current deployment status.
    entry_details Sequence[GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollectionItemEntryDetail]
    Details specific to the security policy entry.
    entry_type str
    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.
    id str
    Unique id of the security policy entry state.
    security_policy_deployment_id str
    The OCID of the security policy deployment resource.
    security_policy_entry_id str
    An optional filter to return only resources that match the specified security policy entry OCID.
    target_id str
    An optional filter to return only resources that match the specified target id.
    deploymentStatus String
    The current state of the security policy deployment.
    deploymentStatusDetails String
    Details about the current deployment status.
    entryDetails List<Property Map>
    Details specific to the security policy entry.
    entryType 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.
    id String
    Unique id of the security policy entry state.
    securityPolicyDeploymentId String
    The OCID of the security policy deployment resource.
    securityPolicyEntryId String
    An optional filter to return only resources that match the specified security policy entry OCID.
    targetId String
    An optional filter to return only resources that match the specified target id.

    GetSecurityPolicyDeploymentSecurityPolicyEntryStatesSecurityPolicyEntryStateCollectionItemEntryDetail

    DatasafeUserExclusionStatus string
    The status of Data Safe user exclusion in the audit policy.
    EntryType 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.
    ExcludeDatasafeUserFailureMsg string
    Specifies why exclusion of the Data Safe user did not succeed.
    TimeGenerated string
    The time the the SQL Firewall policy was generated on the target database, in the format defined by RFC3339.
    TimeStatusUpdated string
    The last date and time the status of the SQL Firewall policy was updated on the target database, in the format defined by RFC3339.
    DatasafeUserExclusionStatus string
    The status of Data Safe user exclusion in the audit policy.
    EntryType 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.
    ExcludeDatasafeUserFailureMsg string
    Specifies why exclusion of the Data Safe user did not succeed.
    TimeGenerated string
    The time the the SQL Firewall policy was generated on the target database, in the format defined by RFC3339.
    TimeStatusUpdated string
    The last date and time the status of the SQL Firewall policy was updated on the target database, in the format defined by RFC3339.
    datasafeUserExclusionStatus String
    The status of Data Safe user exclusion in the audit policy.
    entryType 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.
    excludeDatasafeUserFailureMsg String
    Specifies why exclusion of the Data Safe user did not succeed.
    timeGenerated String
    The time the the SQL Firewall policy was generated on the target database, in the format defined by RFC3339.
    timeStatusUpdated String
    The last date and time the status of the SQL Firewall policy was updated on the target database, in the format defined by RFC3339.
    datasafeUserExclusionStatus string
    The status of Data Safe user exclusion in the audit policy.
    entryType 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.
    excludeDatasafeUserFailureMsg string
    Specifies why exclusion of the Data Safe user did not succeed.
    timeGenerated string
    The time the the SQL Firewall policy was generated on the target database, in the format defined by RFC3339.
    timeStatusUpdated string
    The last date and time the status of the SQL Firewall policy was updated on the target database, in the format defined by RFC3339.
    datasafe_user_exclusion_status str
    The status of Data Safe user exclusion in the audit policy.
    entry_type str
    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.
    exclude_datasafe_user_failure_msg str
    Specifies why exclusion of the Data Safe user did not succeed.
    time_generated str
    The time the the SQL Firewall policy was generated on the target database, in the format defined by RFC3339.
    time_status_updated str
    The last date and time the status of the SQL Firewall policy was updated on the target database, in the format defined by RFC3339.
    datasafeUserExclusionStatus String
    The status of Data Safe user exclusion in the audit policy.
    entryType 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.
    excludeDatasafeUserFailureMsg String
    Specifies why exclusion of the Data Safe user did not succeed.
    timeGenerated String
    The time the the SQL Firewall policy was generated on the target database, in the format defined by RFC3339.
    timeStatusUpdated String
    The last date and time the status of the SQL Firewall policy was updated on the target database, in the format defined by RFC3339.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi