oci.DataSafe.getAuditPolicies
Explore with Pulumi AI
This data source provides the list of Audit Policies in Oracle Cloud Infrastructure Data Safe service.
Retrieves a list of all audited targets with their corresponding provisioned audit policies, and their provisioning conditions.
The ListAuditPolicies operation returns only the audit policies in the specified compartmentId.
The list does not include any subcompartments of the compartmentId passed.
The parameter accessLevel specifies whether to return only those compartments for which the
requestor has INSPECT permissions on at least one resource directly
or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if
Principal doesn’t have access to even one of the child compartments. This is valid only when
compartmentIdInSubtree is set to true.
The parameter compartmentIdInSubtree applies when you perform ListAuditPolicies on the
compartmentId passed and when it is set to true, the entire hierarchy of compartments can be returned.
To get a full list of all compartments and subcompartments in the tenancy (root compartment),
set the parameter compartmentIdInSubtree to true and accessLevel to ACCESSIBLE.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAuditPolicies = oci.DataSafe.getAuditPolicies({
    compartmentId: compartmentId,
    accessLevel: auditPolicyAccessLevel,
    auditPolicyId: testAuditPolicy.id,
    compartmentIdInSubtree: auditPolicyCompartmentIdInSubtree,
    displayName: auditPolicyDisplayName,
    state: auditPolicyState,
    targetId: testTarget.id,
});
import pulumi
import pulumi_oci as oci
test_audit_policies = oci.DataSafe.get_audit_policies(compartment_id=compartment_id,
    access_level=audit_policy_access_level,
    audit_policy_id=test_audit_policy["id"],
    compartment_id_in_subtree=audit_policy_compartment_id_in_subtree,
    display_name=audit_policy_display_name,
    state=audit_policy_state,
    target_id=test_target["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetAuditPolicies(ctx, &datasafe.GetAuditPoliciesArgs{
			CompartmentId:          compartmentId,
			AccessLevel:            pulumi.StringRef(auditPolicyAccessLevel),
			AuditPolicyId:          pulumi.StringRef(testAuditPolicy.Id),
			CompartmentIdInSubtree: pulumi.BoolRef(auditPolicyCompartmentIdInSubtree),
			DisplayName:            pulumi.StringRef(auditPolicyDisplayName),
			State:                  pulumi.StringRef(auditPolicyState),
			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 testAuditPolicies = Oci.DataSafe.GetAuditPolicies.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = auditPolicyAccessLevel,
        AuditPolicyId = testAuditPolicy.Id,
        CompartmentIdInSubtree = auditPolicyCompartmentIdInSubtree,
        DisplayName = auditPolicyDisplayName,
        State = auditPolicyState,
        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.GetAuditPoliciesArgs;
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 testAuditPolicies = DataSafeFunctions.getAuditPolicies(GetAuditPoliciesArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(auditPolicyAccessLevel)
            .auditPolicyId(testAuditPolicy.id())
            .compartmentIdInSubtree(auditPolicyCompartmentIdInSubtree)
            .displayName(auditPolicyDisplayName)
            .state(auditPolicyState)
            .targetId(testTarget.id())
            .build());
    }
}
variables:
  testAuditPolicies:
    fn::invoke:
      function: oci:DataSafe:getAuditPolicies
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${auditPolicyAccessLevel}
        auditPolicyId: ${testAuditPolicy.id}
        compartmentIdInSubtree: ${auditPolicyCompartmentIdInSubtree}
        displayName: ${auditPolicyDisplayName}
        state: ${auditPolicyState}
        targetId: ${testTarget.id}
Using getAuditPolicies
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 getAuditPolicies(args: GetAuditPoliciesArgs, opts?: InvokeOptions): Promise<GetAuditPoliciesResult>
function getAuditPoliciesOutput(args: GetAuditPoliciesOutputArgs, opts?: InvokeOptions): Output<GetAuditPoliciesResult>def get_audit_policies(access_level: Optional[str] = None,
                       audit_policy_id: Optional[str] = None,
                       compartment_id: Optional[str] = None,
                       compartment_id_in_subtree: Optional[bool] = None,
                       display_name: Optional[str] = None,
                       filters: Optional[Sequence[GetAuditPoliciesFilter]] = None,
                       state: Optional[str] = None,
                       target_id: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetAuditPoliciesResult
def get_audit_policies_output(access_level: Optional[pulumi.Input[str]] = None,
                       audit_policy_id: Optional[pulumi.Input[str]] = None,
                       compartment_id: Optional[pulumi.Input[str]] = None,
                       compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                       display_name: Optional[pulumi.Input[str]] = None,
                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAuditPoliciesFilterArgs]]]] = None,
                       state: Optional[pulumi.Input[str]] = None,
                       target_id: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetAuditPoliciesResult]func GetAuditPolicies(ctx *Context, args *GetAuditPoliciesArgs, opts ...InvokeOption) (*GetAuditPoliciesResult, error)
func GetAuditPoliciesOutput(ctx *Context, args *GetAuditPoliciesOutputArgs, opts ...InvokeOption) GetAuditPoliciesResultOutput> Note: This function is named GetAuditPolicies in the Go SDK.
public static class GetAuditPolicies 
{
    public static Task<GetAuditPoliciesResult> InvokeAsync(GetAuditPoliciesArgs args, InvokeOptions? opts = null)
    public static Output<GetAuditPoliciesResult> Invoke(GetAuditPoliciesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAuditPoliciesResult> getAuditPolicies(GetAuditPoliciesArgs args, InvokeOptions options)
public static Output<GetAuditPoliciesResult> getAuditPolicies(GetAuditPoliciesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getAuditPolicies:getAuditPolicies
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- AccessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- AuditPolicy stringId 
- An optional filter to return only resources that match the specified id.
- CompartmentId boolIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
List<GetAudit Policies Filter> 
- State string
- The current state of the audit policy.
- TargetId string
- A filter to return only items related to a specific target OCID.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- AccessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- AuditPolicy stringId 
- An optional filter to return only resources that match the specified id.
- CompartmentId boolIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
[]GetAudit Policies Filter 
- State string
- The current state of the audit policy.
- TargetId string
- A filter to return only items related to a specific target OCID.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- accessLevel String
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- auditPolicy StringId 
- An optional filter to return only resources that match the specified id.
- compartmentId BooleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- displayName String
- A filter to return only resources that match the specified display name.
- filters
List<GetAudit Policies Filter> 
- state String
- The current state of the audit policy.
- targetId String
- A filter to return only items related to a specific target OCID.
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- accessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- auditPolicy stringId 
- An optional filter to return only resources that match the specified id.
- compartmentId booleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- displayName string
- A filter to return only resources that match the specified display name.
- filters
GetAudit Policies Filter[] 
- state string
- The current state of the audit policy.
- targetId string
- A filter to return only items related to a specific target OCID.
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- access_level str
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- audit_policy_ strid 
- An optional filter to return only resources that match the specified id.
- compartment_id_ boolin_ subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display_name str
- A filter to return only resources that match the specified display name.
- filters
Sequence[GetAudit Policies Filter] 
- state str
- The current state of the audit policy.
- target_id str
- A filter to return only items related to a specific target OCID.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- accessLevel String
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- auditPolicy StringId 
- An optional filter to return only resources that match the specified id.
- compartmentId BooleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- displayName String
- A filter to return only resources that match the specified display name.
- filters List<Property Map>
- state String
- The current state of the audit policy.
- targetId String
- A filter to return only items related to a specific target OCID.
getAuditPolicies Result
The following output properties are available:
- AuditPolicy List<GetCollections Audit Policies Audit Policy Collection> 
- The list of audit_policy_collection.
- CompartmentId string
- The OCID of the compartment containing the audit policy.
- Id string
- The provider-assigned unique ID for this managed resource.
- AccessLevel string
- AuditPolicy stringId 
- CompartmentId boolIn Subtree 
- DisplayName string
- The display name of the audit policy.
- Filters
List<GetAudit Policies Filter> 
- State string
- The current state of the audit policy.
- TargetId string
- The OCID of the target for which the audit policy is created.
- AuditPolicy []GetCollections Audit Policies Audit Policy Collection 
- The list of audit_policy_collection.
- CompartmentId string
- The OCID of the compartment containing the audit policy.
- Id string
- The provider-assigned unique ID for this managed resource.
- AccessLevel string
- AuditPolicy stringId 
- CompartmentId boolIn Subtree 
- DisplayName string
- The display name of the audit policy.
- Filters
[]GetAudit Policies Filter 
- State string
- The current state of the audit policy.
- TargetId string
- The OCID of the target for which the audit policy is created.
- auditPolicy List<GetCollections Audit Policies Audit Policy Collection> 
- The list of audit_policy_collection.
- compartmentId String
- The OCID of the compartment containing the audit policy.
- id String
- The provider-assigned unique ID for this managed resource.
- accessLevel String
- auditPolicy StringId 
- compartmentId BooleanIn Subtree 
- displayName String
- The display name of the audit policy.
- filters
List<GetAudit Policies Filter> 
- state String
- The current state of the audit policy.
- targetId String
- The OCID of the target for which the audit policy is created.
- auditPolicy GetCollections Audit Policies Audit Policy Collection[] 
- The list of audit_policy_collection.
- compartmentId string
- The OCID of the compartment containing the audit policy.
- id string
- The provider-assigned unique ID for this managed resource.
- accessLevel string
- auditPolicy stringId 
- compartmentId booleanIn Subtree 
- displayName string
- The display name of the audit policy.
- filters
GetAudit Policies Filter[] 
- state string
- The current state of the audit policy.
- targetId string
- The OCID of the target for which the audit policy is created.
- audit_policy_ Sequence[Getcollections Audit Policies Audit Policy Collection] 
- The list of audit_policy_collection.
- compartment_id str
- The OCID of the compartment containing the audit policy.
- id str
- The provider-assigned unique ID for this managed resource.
- access_level str
- audit_policy_ strid 
- compartment_id_ boolin_ subtree 
- display_name str
- The display name of the audit policy.
- filters
Sequence[GetAudit Policies Filter] 
- state str
- The current state of the audit policy.
- target_id str
- The OCID of the target for which the audit policy is created.
- auditPolicy List<Property Map>Collections 
- The list of audit_policy_collection.
- compartmentId String
- The OCID of the compartment containing the audit policy.
- id String
- The provider-assigned unique ID for this managed resource.
- accessLevel String
- auditPolicy StringId 
- compartmentId BooleanIn Subtree 
- displayName String
- The display name of the audit policy.
- filters List<Property Map>
- state String
- The current state of the audit policy.
- targetId String
- The OCID of the target for which the audit policy is created.
Supporting Types
GetAuditPoliciesAuditPolicyCollection     
GetAuditPoliciesAuditPolicyCollectionItem      
- AuditConditions List<GetAudit Policies Audit Policy Collection Item Audit Condition> 
- Lists the audit policy provisioning conditions for the target database.
- AuditPolicy stringId 
- An optional filter to return only resources that match the specified id.
- AuditSpecifications List<GetAudit Policies Audit Policy Collection Item Audit Specification> 
- Represents all available audit policy specifications relevant for the target database. For more details on available audit polcies, refer to documentation.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- Description string
- Description of the audit policy.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
- Id string
- The OCID of the audit policy.
- IsData boolSafe Service Account Excluded 
- Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.
- LifecycleDetails string
- Details about the current state of the audit policy in Data Safe.
- ProvisionTrigger int
- RetrieveFrom intTarget Trigger 
- State string
- The current state of the audit policy.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TargetId string
- A filter to return only items related to a specific target OCID.
- TimeCreated string
- The time the the audit policy was created, in the format defined by RFC3339.
- TimeLast stringProvisioned 
- Indicates the last provisioning time of audit policies on the target, in the format defined by RFC3339.
- TimeLast stringRetrieved 
- The time when the audit policies was last retrieved from this target, in the format defined by RFC3339.
- TimeUpdated string
- The last date and time the audit policy was updated, in the format defined by RFC3339.
- AuditConditions []GetAudit Policies Audit Policy Collection Item Audit Condition 
- Lists the audit policy provisioning conditions for the target database.
- AuditPolicy stringId 
- An optional filter to return only resources that match the specified id.
- AuditSpecifications []GetAudit Policies Audit Policy Collection Item Audit Specification 
- Represents all available audit policy specifications relevant for the target database. For more details on available audit polcies, refer to documentation.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- Description string
- Description of the audit policy.
- DisplayName string
- A filter to return only resources that match the specified display name.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
- Id string
- The OCID of the audit policy.
- IsData boolSafe Service Account Excluded 
- Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.
- LifecycleDetails string
- Details about the current state of the audit policy in Data Safe.
- ProvisionTrigger int
- RetrieveFrom intTarget Trigger 
- State string
- The current state of the audit policy.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TargetId string
- A filter to return only items related to a specific target OCID.
- TimeCreated string
- The time the the audit policy was created, in the format defined by RFC3339.
- TimeLast stringProvisioned 
- Indicates the last provisioning time of audit policies on the target, in the format defined by RFC3339.
- TimeLast stringRetrieved 
- The time when the audit policies was last retrieved from this target, in the format defined by RFC3339.
- TimeUpdated string
- The last date and time the audit policy was updated, in the format defined by RFC3339.
- auditConditions List<GetAudit Policies Audit Policy Collection Item Audit Condition> 
- Lists the audit policy provisioning conditions for the target database.
- auditPolicy StringId 
- An optional filter to return only resources that match the specified id.
- auditSpecifications List<GetAudit Policies Audit Policy Collection Item Audit Specification> 
- Represents all available audit policy specifications relevant for the target database. For more details on available audit polcies, refer to documentation.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- description String
- Description of the audit policy.
- displayName String
- A filter to return only resources that match the specified display name.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
- id String
- The OCID of the audit policy.
- isData BooleanSafe Service Account Excluded 
- Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.
- lifecycleDetails String
- Details about the current state of the audit policy in Data Safe.
- provisionTrigger Integer
- retrieveFrom IntegerTarget Trigger 
- state String
- The current state of the audit policy.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- targetId String
- A filter to return only items related to a specific target OCID.
- timeCreated String
- The time the the audit policy was created, in the format defined by RFC3339.
- timeLast StringProvisioned 
- Indicates the last provisioning time of audit policies on the target, in the format defined by RFC3339.
- timeLast StringRetrieved 
- The time when the audit policies was last retrieved from this target, in the format defined by RFC3339.
- timeUpdated String
- The last date and time the audit policy was updated, in the format defined by RFC3339.
- auditConditions GetAudit Policies Audit Policy Collection Item Audit Condition[] 
- Lists the audit policy provisioning conditions for the target database.
- auditPolicy stringId 
- An optional filter to return only resources that match the specified id.
- auditSpecifications GetAudit Policies Audit Policy Collection Item Audit Specification[] 
- Represents all available audit policy specifications relevant for the target database. For more details on available audit polcies, refer to documentation.
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- description string
- Description of the audit policy.
- displayName string
- A filter to return only resources that match the specified display name.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
- id string
- The OCID of the audit policy.
- isData booleanSafe Service Account Excluded 
- Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.
- lifecycleDetails string
- Details about the current state of the audit policy in Data Safe.
- provisionTrigger number
- retrieveFrom numberTarget Trigger 
- state string
- The current state of the audit policy.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- targetId string
- A filter to return only items related to a specific target OCID.
- timeCreated string
- The time the the audit policy was created, in the format defined by RFC3339.
- timeLast stringProvisioned 
- Indicates the last provisioning time of audit policies on the target, in the format defined by RFC3339.
- timeLast stringRetrieved 
- The time when the audit policies was last retrieved from this target, in the format defined by RFC3339.
- timeUpdated string
- The last date and time the audit policy was updated, in the format defined by RFC3339.
- audit_conditions Sequence[GetAudit Policies Audit Policy Collection Item Audit Condition] 
- Lists the audit policy provisioning conditions for the target database.
- audit_policy_ strid 
- An optional filter to return only resources that match the specified id.
- audit_specifications Sequence[GetAudit Policies Audit Policy Collection Item Audit Specification] 
- Represents all available audit policy specifications relevant for the target database. For more details on available audit polcies, refer to documentation.
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- description str
- Description of the audit policy.
- display_name str
- A filter to return only resources that match the specified display name.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
- id str
- The OCID of the audit policy.
- is_data_ boolsafe_ service_ account_ excluded 
- Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.
- lifecycle_details str
- Details about the current state of the audit policy in Data Safe.
- provision_trigger int
- retrieve_from_ inttarget_ trigger 
- state str
- The current state of the audit policy.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- target_id str
- A filter to return only items related to a specific target OCID.
- time_created str
- The time the the audit policy was created, in the format defined by RFC3339.
- time_last_ strprovisioned 
- Indicates the last provisioning time of audit policies on the target, in the format defined by RFC3339.
- time_last_ strretrieved 
- The time when the audit policies was last retrieved from this target, in the format defined by RFC3339.
- time_updated str
- The last date and time the audit policy was updated, in the format defined by RFC3339.
- auditConditions List<Property Map>
- Lists the audit policy provisioning conditions for the target database.
- auditPolicy StringId 
- An optional filter to return only resources that match the specified id.
- auditSpecifications List<Property Map>
- Represents all available audit policy specifications relevant for the target database. For more details on available audit polcies, refer to documentation.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- description String
- Description of the audit policy.
- displayName String
- A filter to return only resources that match the specified display name.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
- id String
- The OCID of the audit policy.
- isData BooleanSafe Service Account Excluded 
- Option provided to users at the target to indicate whether the Data Safe service account has to be excluded while provisioning the audit policies.
- lifecycleDetails String
- Details about the current state of the audit policy in Data Safe.
- provisionTrigger Number
- retrieveFrom NumberTarget Trigger 
- state String
- The current state of the audit policy.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- targetId String
- A filter to return only items related to a specific target OCID.
- timeCreated String
- The time the the audit policy was created, in the format defined by RFC3339.
- timeLast StringProvisioned 
- Indicates the last provisioning time of audit policies on the target, in the format defined by RFC3339.
- timeLast StringRetrieved 
- The time when the audit policies was last retrieved from this target, in the format defined by RFC3339.
- timeUpdated String
- The last date and time the audit policy was updated, in the format defined by RFC3339.
GetAuditPoliciesAuditPolicyCollectionItemAuditCondition        
- AuditPolicy stringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- EnableConditions List<GetAudit Policies Audit Policy Collection Item Audit Condition Enable Condition> 
- Indicates the users/roles in the target database for which the audit policy is enforced, and the success/failure event condition to generate the audit event..
- IsData boolSafe Service Account Audited 
- Indicates whether the Data Safe user activity on the target database will be audited by the policy.
- IsPriv boolUsers Managed By Data Safe 
- Indicates whether the privileged user list is managed by Data Safe.
- AuditPolicy stringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- EnableConditions []GetAudit Policies Audit Policy Collection Item Audit Condition Enable Condition 
- Indicates the users/roles in the target database for which the audit policy is enforced, and the success/failure event condition to generate the audit event..
- IsData boolSafe Service Account Audited 
- Indicates whether the Data Safe user activity on the target database will be audited by the policy.
- IsPriv boolUsers Managed By Data Safe 
- Indicates whether the privileged user list is managed by Data Safe.
- auditPolicy StringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- enableConditions List<GetAudit Policies Audit Policy Collection Item Audit Condition Enable Condition> 
- Indicates the users/roles in the target database for which the audit policy is enforced, and the success/failure event condition to generate the audit event..
- isData BooleanSafe Service Account Audited 
- Indicates whether the Data Safe user activity on the target database will be audited by the policy.
- isPriv BooleanUsers Managed By Data Safe 
- Indicates whether the privileged user list is managed by Data Safe.
- auditPolicy stringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- enableConditions GetAudit Policies Audit Policy Collection Item Audit Condition Enable Condition[] 
- Indicates the users/roles in the target database for which the audit policy is enforced, and the success/failure event condition to generate the audit event..
- isData booleanSafe Service Account Audited 
- Indicates whether the Data Safe user activity on the target database will be audited by the policy.
- isPriv booleanUsers Managed By Data Safe 
- Indicates whether the privileged user list is managed by Data Safe.
- audit_policy_ strname 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- enable_conditions Sequence[GetAudit Policies Audit Policy Collection Item Audit Condition Enable Condition] 
- Indicates the users/roles in the target database for which the audit policy is enforced, and the success/failure event condition to generate the audit event..
- is_data_ boolsafe_ service_ account_ audited 
- Indicates whether the Data Safe user activity on the target database will be audited by the policy.
- is_priv_ boolusers_ managed_ by_ data_ safe 
- Indicates whether the privileged user list is managed by Data Safe.
- auditPolicy StringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- enableConditions List<Property Map>
- Indicates the users/roles in the target database for which the audit policy is enforced, and the success/failure event condition to generate the audit event..
- isData BooleanSafe Service Account Audited 
- Indicates whether the Data Safe user activity on the target database will be audited by the policy.
- isPriv BooleanUsers Managed By Data Safe 
- Indicates whether the privileged user list is managed by Data Safe.
GetAuditPoliciesAuditPolicyCollectionItemAuditConditionEnableCondition          
- EntityNames List<string>
- List of users or roles that the policy must be enabled for.
- EntitySelection string
- The entity include or exclude selection.
- EntityType string
- The entity type that the policy must be enabled for.
- OperationStatus string
- The operation status that the policy must be enabled for.
- EntityNames []string
- List of users or roles that the policy must be enabled for.
- EntitySelection string
- The entity include or exclude selection.
- EntityType string
- The entity type that the policy must be enabled for.
- OperationStatus string
- The operation status that the policy must be enabled for.
- entityNames List<String>
- List of users or roles that the policy must be enabled for.
- entitySelection String
- The entity include or exclude selection.
- entityType String
- The entity type that the policy must be enabled for.
- operationStatus String
- The operation status that the policy must be enabled for.
- entityNames string[]
- List of users or roles that the policy must be enabled for.
- entitySelection string
- The entity include or exclude selection.
- entityType string
- The entity type that the policy must be enabled for.
- operationStatus string
- The operation status that the policy must be enabled for.
- entity_names Sequence[str]
- List of users or roles that the policy must be enabled for.
- entity_selection str
- The entity include or exclude selection.
- entity_type str
- The entity type that the policy must be enabled for.
- operation_status str
- The operation status that the policy must be enabled for.
- entityNames List<String>
- List of users or roles that the policy must be enabled for.
- entitySelection String
- The entity include or exclude selection.
- entityType String
- The entity type that the policy must be enabled for.
- operationStatus String
- The operation status that the policy must be enabled for.
GetAuditPoliciesAuditPolicyCollectionItemAuditSpecification        
- AuditPolicy stringCategory 
- The category to which the audit policy belongs.
- AuditPolicy stringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- DatabasePolicy List<string>Names 
- Indicates the names of corresponding database policy ( or policies) in the target database.
- EnableStatus string
- Indicates whether the policy has been enabled, disabled or partially enabled in the target database. The status is PARTIALLY_ENABLED if any of the constituent database audit policies is not enabled.
- EnabledEntities string
- Indicates on whom the audit policy is enabled.
- IsCreated bool
- Indicates whether the policy is already created on the target database.
- IsEnabled boolFor All Users 
- Indicates whether the policy by default is enabled for all users with no flexibility to alter the enablement conditions.
- IsSeeded boolIn Data Safe 
- Indicates whether the audit policy is one of the seeded policies provided by Oracle Data Safe.
- IsSeeded boolIn Target 
- Indicates whether the audit policy is one of the predefined policies provided by Oracle Database.
- IsView boolOnly 
- Indicates whether the audit policy is available for provisioning/ de-provisioning from Oracle Data Safe, or is only available for displaying the current provisioning status from the target.
- PartiallyEnabled stringMsg 
- Provides information about the policy that has been only partially enabled.
- AuditPolicy stringCategory 
- The category to which the audit policy belongs.
- AuditPolicy stringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- DatabasePolicy []stringNames 
- Indicates the names of corresponding database policy ( or policies) in the target database.
- EnableStatus string
- Indicates whether the policy has been enabled, disabled or partially enabled in the target database. The status is PARTIALLY_ENABLED if any of the constituent database audit policies is not enabled.
- EnabledEntities string
- Indicates on whom the audit policy is enabled.
- IsCreated bool
- Indicates whether the policy is already created on the target database.
- IsEnabled boolFor All Users 
- Indicates whether the policy by default is enabled for all users with no flexibility to alter the enablement conditions.
- IsSeeded boolIn Data Safe 
- Indicates whether the audit policy is one of the seeded policies provided by Oracle Data Safe.
- IsSeeded boolIn Target 
- Indicates whether the audit policy is one of the predefined policies provided by Oracle Database.
- IsView boolOnly 
- Indicates whether the audit policy is available for provisioning/ de-provisioning from Oracle Data Safe, or is only available for displaying the current provisioning status from the target.
- PartiallyEnabled stringMsg 
- Provides information about the policy that has been only partially enabled.
- auditPolicy StringCategory 
- The category to which the audit policy belongs.
- auditPolicy StringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- databasePolicy List<String>Names 
- Indicates the names of corresponding database policy ( or policies) in the target database.
- enableStatus String
- Indicates whether the policy has been enabled, disabled or partially enabled in the target database. The status is PARTIALLY_ENABLED if any of the constituent database audit policies is not enabled.
- enabledEntities String
- Indicates on whom the audit policy is enabled.
- isCreated Boolean
- Indicates whether the policy is already created on the target database.
- isEnabled BooleanFor All Users 
- Indicates whether the policy by default is enabled for all users with no flexibility to alter the enablement conditions.
- isSeeded BooleanIn Data Safe 
- Indicates whether the audit policy is one of the seeded policies provided by Oracle Data Safe.
- isSeeded BooleanIn Target 
- Indicates whether the audit policy is one of the predefined policies provided by Oracle Database.
- isView BooleanOnly 
- Indicates whether the audit policy is available for provisioning/ de-provisioning from Oracle Data Safe, or is only available for displaying the current provisioning status from the target.
- partiallyEnabled StringMsg 
- Provides information about the policy that has been only partially enabled.
- auditPolicy stringCategory 
- The category to which the audit policy belongs.
- auditPolicy stringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- databasePolicy string[]Names 
- Indicates the names of corresponding database policy ( or policies) in the target database.
- enableStatus string
- Indicates whether the policy has been enabled, disabled or partially enabled in the target database. The status is PARTIALLY_ENABLED if any of the constituent database audit policies is not enabled.
- enabledEntities string
- Indicates on whom the audit policy is enabled.
- isCreated boolean
- Indicates whether the policy is already created on the target database.
- isEnabled booleanFor All Users 
- Indicates whether the policy by default is enabled for all users with no flexibility to alter the enablement conditions.
- isSeeded booleanIn Data Safe 
- Indicates whether the audit policy is one of the seeded policies provided by Oracle Data Safe.
- isSeeded booleanIn Target 
- Indicates whether the audit policy is one of the predefined policies provided by Oracle Database.
- isView booleanOnly 
- Indicates whether the audit policy is available for provisioning/ de-provisioning from Oracle Data Safe, or is only available for displaying the current provisioning status from the target.
- partiallyEnabled stringMsg 
- Provides information about the policy that has been only partially enabled.
- audit_policy_ strcategory 
- The category to which the audit policy belongs.
- audit_policy_ strname 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- database_policy_ Sequence[str]names 
- Indicates the names of corresponding database policy ( or policies) in the target database.
- enable_status str
- Indicates whether the policy has been enabled, disabled or partially enabled in the target database. The status is PARTIALLY_ENABLED if any of the constituent database audit policies is not enabled.
- enabled_entities str
- Indicates on whom the audit policy is enabled.
- is_created bool
- Indicates whether the policy is already created on the target database.
- is_enabled_ boolfor_ all_ users 
- Indicates whether the policy by default is enabled for all users with no flexibility to alter the enablement conditions.
- is_seeded_ boolin_ data_ safe 
- Indicates whether the audit policy is one of the seeded policies provided by Oracle Data Safe.
- is_seeded_ boolin_ target 
- Indicates whether the audit policy is one of the predefined policies provided by Oracle Database.
- is_view_ boolonly 
- Indicates whether the audit policy is available for provisioning/ de-provisioning from Oracle Data Safe, or is only available for displaying the current provisioning status from the target.
- partially_enabled_ strmsg 
- Provides information about the policy that has been only partially enabled.
- auditPolicy StringCategory 
- The category to which the audit policy belongs.
- auditPolicy StringName 
- Indicates the audit policy name. Refer to the documentation for seeded audit policy names. For custom policies, refer to the user-defined policy name created in the target database.
- databasePolicy List<String>Names 
- Indicates the names of corresponding database policy ( or policies) in the target database.
- enableStatus String
- Indicates whether the policy has been enabled, disabled or partially enabled in the target database. The status is PARTIALLY_ENABLED if any of the constituent database audit policies is not enabled.
- enabledEntities String
- Indicates on whom the audit policy is enabled.
- isCreated Boolean
- Indicates whether the policy is already created on the target database.
- isEnabled BooleanFor All Users 
- Indicates whether the policy by default is enabled for all users with no flexibility to alter the enablement conditions.
- isSeeded BooleanIn Data Safe 
- Indicates whether the audit policy is one of the seeded policies provided by Oracle Data Safe.
- isSeeded BooleanIn Target 
- Indicates whether the audit policy is one of the predefined policies provided by Oracle Database.
- isView BooleanOnly 
- Indicates whether the audit policy is available for provisioning/ de-provisioning from Oracle Data Safe, or is only available for displaying the current provisioning status from the target.
- partiallyEnabled StringMsg 
- Provides information about the policy that has been only partially enabled.
GetAuditPoliciesFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.