oci.DataSafe.getAuditProfiles
Explore with Pulumi AI
This data source provides the list of Audit Profiles in Oracle Cloud Infrastructure Data Safe service.
Gets a list of all audit profiles.
The ListAuditProfiles operation returns only the audit profiles 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 ListAuditProfiles 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 testAuditProfiles = oci.DataSafe.getAuditProfiles({
compartmentId: compartmentId,
accessLevel: auditProfileAccessLevel,
auditCollectedVolumeGreaterThanOrEqualTo: auditProfileAuditCollectedVolumeGreaterThanOrEqualTo,
auditProfileId: testAuditProfile.id,
compartmentIdInSubtree: auditProfileCompartmentIdInSubtree,
displayName: auditProfileDisplayName,
isOverrideGlobalRetentionSetting: auditProfileIsOverrideGlobalRetentionSetting,
isPaidUsageEnabled: auditProfileIsPaidUsageEnabled,
state: auditProfileState,
targetId: testTarget.id,
});
import pulumi
import pulumi_oci as oci
test_audit_profiles = oci.DataSafe.get_audit_profiles(compartment_id=compartment_id,
access_level=audit_profile_access_level,
audit_collected_volume_greater_than_or_equal_to=audit_profile_audit_collected_volume_greater_than_or_equal_to,
audit_profile_id=test_audit_profile["id"],
compartment_id_in_subtree=audit_profile_compartment_id_in_subtree,
display_name=audit_profile_display_name,
is_override_global_retention_setting=audit_profile_is_override_global_retention_setting,
is_paid_usage_enabled=audit_profile_is_paid_usage_enabled,
state=audit_profile_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.GetAuditProfiles(ctx, &datasafe.GetAuditProfilesArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(auditProfileAccessLevel),
AuditCollectedVolumeGreaterThanOrEqualTo: pulumi.StringRef(auditProfileAuditCollectedVolumeGreaterThanOrEqualTo),
AuditProfileId: pulumi.StringRef(testAuditProfile.Id),
CompartmentIdInSubtree: pulumi.BoolRef(auditProfileCompartmentIdInSubtree),
DisplayName: pulumi.StringRef(auditProfileDisplayName),
IsOverrideGlobalRetentionSetting: pulumi.BoolRef(auditProfileIsOverrideGlobalRetentionSetting),
IsPaidUsageEnabled: pulumi.BoolRef(auditProfileIsPaidUsageEnabled),
State: pulumi.StringRef(auditProfileState),
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 testAuditProfiles = Oci.DataSafe.GetAuditProfiles.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = auditProfileAccessLevel,
AuditCollectedVolumeGreaterThanOrEqualTo = auditProfileAuditCollectedVolumeGreaterThanOrEqualTo,
AuditProfileId = testAuditProfile.Id,
CompartmentIdInSubtree = auditProfileCompartmentIdInSubtree,
DisplayName = auditProfileDisplayName,
IsOverrideGlobalRetentionSetting = auditProfileIsOverrideGlobalRetentionSetting,
IsPaidUsageEnabled = auditProfileIsPaidUsageEnabled,
State = auditProfileState,
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.GetAuditProfilesArgs;
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 testAuditProfiles = DataSafeFunctions.getAuditProfiles(GetAuditProfilesArgs.builder()
.compartmentId(compartmentId)
.accessLevel(auditProfileAccessLevel)
.auditCollectedVolumeGreaterThanOrEqualTo(auditProfileAuditCollectedVolumeGreaterThanOrEqualTo)
.auditProfileId(testAuditProfile.id())
.compartmentIdInSubtree(auditProfileCompartmentIdInSubtree)
.displayName(auditProfileDisplayName)
.isOverrideGlobalRetentionSetting(auditProfileIsOverrideGlobalRetentionSetting)
.isPaidUsageEnabled(auditProfileIsPaidUsageEnabled)
.state(auditProfileState)
.targetId(testTarget.id())
.build());
}
}
variables:
testAuditProfiles:
fn::invoke:
Function: oci:DataSafe:getAuditProfiles
Arguments:
compartmentId: ${compartmentId}
accessLevel: ${auditProfileAccessLevel}
auditCollectedVolumeGreaterThanOrEqualTo: ${auditProfileAuditCollectedVolumeGreaterThanOrEqualTo}
auditProfileId: ${testAuditProfile.id}
compartmentIdInSubtree: ${auditProfileCompartmentIdInSubtree}
displayName: ${auditProfileDisplayName}
isOverrideGlobalRetentionSetting: ${auditProfileIsOverrideGlobalRetentionSetting}
isPaidUsageEnabled: ${auditProfileIsPaidUsageEnabled}
state: ${auditProfileState}
targetId: ${testTarget.id}
Using getAuditProfiles
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 getAuditProfiles(args: GetAuditProfilesArgs, opts?: InvokeOptions): Promise<GetAuditProfilesResult>
function getAuditProfilesOutput(args: GetAuditProfilesOutputArgs, opts?: InvokeOptions): Output<GetAuditProfilesResult>
def get_audit_profiles(access_level: Optional[str] = None,
audit_collected_volume_greater_than_or_equal_to: Optional[str] = None,
audit_profile_id: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_datasafe.GetAuditProfilesFilter]] = None,
is_override_global_retention_setting: Optional[bool] = None,
is_paid_usage_enabled: Optional[bool] = None,
state: Optional[str] = None,
target_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAuditProfilesResult
def get_audit_profiles_output(access_level: Optional[pulumi.Input[str]] = None,
audit_collected_volume_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
audit_profile_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[_datasafe.GetAuditProfilesFilterArgs]]]] = None,
is_override_global_retention_setting: Optional[pulumi.Input[bool]] = None,
is_paid_usage_enabled: Optional[pulumi.Input[bool]] = None,
state: Optional[pulumi.Input[str]] = None,
target_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAuditProfilesResult]
func GetAuditProfiles(ctx *Context, args *GetAuditProfilesArgs, opts ...InvokeOption) (*GetAuditProfilesResult, error)
func GetAuditProfilesOutput(ctx *Context, args *GetAuditProfilesOutputArgs, opts ...InvokeOption) GetAuditProfilesResultOutput
> Note: This function is named GetAuditProfiles
in the Go SDK.
public static class GetAuditProfiles
{
public static Task<GetAuditProfilesResult> InvokeAsync(GetAuditProfilesArgs args, InvokeOptions? opts = null)
public static Output<GetAuditProfilesResult> Invoke(GetAuditProfilesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAuditProfilesResult> getAuditProfiles(GetAuditProfilesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DataSafe/getAuditProfiles:getAuditProfiles
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level 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.
- Audit
Collected stringVolume Greater Than Or Equal To - A filter to return only items that have count of audit records collected greater than or equal to the specified value.
- Audit
Profile stringId - A 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 string - A filter to return only resources that match the specified display name.
- Filters
List<Get
Audit Profiles Filter> - Is
Override boolGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- Is
Paid boolUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- State string
- A optional filter to return only resources that match the specified lifecycle state.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level 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.
- Audit
Collected stringVolume Greater Than Or Equal To - A filter to return only items that have count of audit records collected greater than or equal to the specified value.
- Audit
Profile stringId - A 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 string - A filter to return only resources that match the specified display name.
- Filters
[]Get
Audit Profiles Filter - Is
Override boolGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- Is
Paid boolUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- State string
- A optional filter to return only resources that match the specified lifecycle state.
- Target
Id string - A filter to return only items related to a specific target OCID.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level 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.
- audit
Collected StringVolume Greater Than Or Equal To - A filter to return only items that have count of audit records collected greater than or equal to the specified value.
- audit
Profile StringId - A optional filter to return only resources that match the specified id.
- compartment
Id 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.
- display
Name String - A filter to return only resources that match the specified display name.
- filters
List<Get
Audit Profiles Filter> - is
Override BooleanGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- is
Paid BooleanUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- state String
- A optional filter to return only resources that match the specified lifecycle state.
- target
Id String - A filter to return only items related to a specific target OCID.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- access
Level 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.
- audit
Collected stringVolume Greater Than Or Equal To - A filter to return only items that have count of audit records collected greater than or equal to the specified value.
- audit
Profile stringId - A optional filter to return only resources that match the specified id.
- compartment
Id 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.
- display
Name string - A filter to return only resources that match the specified display name.
- filters
Get
Audit Profiles Filter[] - is
Override booleanGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- is
Paid booleanUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- state string
- A optional filter to return only resources that match the specified lifecycle state.
- target
Id 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_
collected_ strvolume_ greater_ than_ or_ equal_ to - A filter to return only items that have count of audit records collected greater than or equal to the specified value.
- audit_
profile_ strid - A 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[datasafe.
Get Audit Profiles Filter] - is_
override_ boolglobal_ retention_ setting - A optional filter to return only resources that match the specified retention configured value.
- is_
paid_ boolusage_ enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- state str
- A optional filter to return only resources that match the specified lifecycle state.
- target_
id str - A filter to return only items related to a specific target OCID.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level 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.
- audit
Collected StringVolume Greater Than Or Equal To - A filter to return only items that have count of audit records collected greater than or equal to the specified value.
- audit
Profile StringId - A optional filter to return only resources that match the specified id.
- compartment
Id 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.
- display
Name String - A filter to return only resources that match the specified display name.
- filters List<Property Map>
- is
Override BooleanGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- is
Paid BooleanUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- state String
- A optional filter to return only resources that match the specified lifecycle state.
- target
Id String - A filter to return only items related to a specific target OCID.
getAuditProfiles Result
The following output properties are available:
- Audit
Profile List<GetCollections Audit Profiles Audit Profile Collection> - The list of audit_profile_collection.
- Compartment
Id string - The OCID of the compartment that contains the audit.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Audit
Collected stringVolume Greater Than Or Equal To - Audit
Profile stringId - The OCID of the parent audit.
- Compartment
Id boolIn Subtree - Display
Name string - The display name of the audit profile.
- Filters
List<Get
Audit Profiles Filter> - Is
Override boolGlobal Retention Setting - Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
- Is
Paid boolUsage Enabled - Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- State string
- The current state of the audit profile.
- Target
Id string - The OCID of the Data Safe target for which the audit profile is created.
- Audit
Profile []GetCollections Audit Profiles Audit Profile Collection - The list of audit_profile_collection.
- Compartment
Id string - The OCID of the compartment that contains the audit.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Audit
Collected stringVolume Greater Than Or Equal To - Audit
Profile stringId - The OCID of the parent audit.
- Compartment
Id boolIn Subtree - Display
Name string - The display name of the audit profile.
- Filters
[]Get
Audit Profiles Filter - Is
Override boolGlobal Retention Setting - Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
- Is
Paid boolUsage Enabled - Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- State string
- The current state of the audit profile.
- Target
Id string - The OCID of the Data Safe target for which the audit profile is created.
- audit
Profile List<GetCollections Audit Profiles Audit Profile Collection> - The list of audit_profile_collection.
- compartment
Id String - The OCID of the compartment that contains the audit.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - audit
Collected StringVolume Greater Than Or Equal To - audit
Profile StringId - The OCID of the parent audit.
- compartment
Id BooleanIn Subtree - display
Name String - The display name of the audit profile.
- filters
List<Get
Audit Profiles Filter> - is
Override BooleanGlobal Retention Setting - Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
- is
Paid BooleanUsage Enabled - Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- state String
- The current state of the audit profile.
- target
Id String - The OCID of the Data Safe target for which the audit profile is created.
- audit
Profile GetCollections Audit Profiles Audit Profile Collection[] - The list of audit_profile_collection.
- compartment
Id string - The OCID of the compartment that contains the audit.
- id string
- The provider-assigned unique ID for this managed resource.
- access
Level string - audit
Collected stringVolume Greater Than Or Equal To - audit
Profile stringId - The OCID of the parent audit.
- compartment
Id booleanIn Subtree - display
Name string - The display name of the audit profile.
- filters
Get
Audit Profiles Filter[] - is
Override booleanGlobal Retention Setting - Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
- is
Paid booleanUsage Enabled - Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- state string
- The current state of the audit profile.
- target
Id string - The OCID of the Data Safe target for which the audit profile is created.
- audit_
profile_ Sequence[datasafe.collections Get Audit Profiles Audit Profile Collection] - The list of audit_profile_collection.
- compartment_
id str - The OCID of the compartment that contains the audit.
- id str
- The provider-assigned unique ID for this managed resource.
- access_
level str - audit_
collected_ strvolume_ greater_ than_ or_ equal_ to - audit_
profile_ strid - The OCID of the parent audit.
- compartment_
id_ boolin_ subtree - display_
name str - The display name of the audit profile.
- filters
Sequence[datasafe.
Get Audit Profiles Filter] - is_
override_ boolglobal_ retention_ setting - Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
- is_
paid_ boolusage_ enabled - Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- state str
- The current state of the audit profile.
- target_
id str - The OCID of the Data Safe target for which the audit profile is created.
- audit
Profile List<Property Map>Collections - The list of audit_profile_collection.
- compartment
Id String - The OCID of the compartment that contains the audit.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - audit
Collected StringVolume Greater Than Or Equal To - audit
Profile StringId - The OCID of the parent audit.
- compartment
Id BooleanIn Subtree - display
Name String - The display name of the audit profile.
- filters List<Property Map>
- is
Override BooleanGlobal Retention Setting - Indicates whether audit retention settings like online and offline months is set at the target level overriding the global audit retention settings.
- is
Paid BooleanUsage Enabled - Indicates if you want to continue collecting audit records beyond the free limit of one million audit records per month per target database, potentially incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- state String
- The current state of the audit profile.
- target
Id String - The OCID of the Data Safe target for which the audit profile is created.
Supporting Types
GetAuditProfilesAuditProfileCollection
GetAuditProfilesAuditProfileCollectionItem
- Audit
Collected stringVolume - Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.
- Audit
Profile stringId - A optional filter to return only resources that match the specified id.
- Audit
Trails List<GetAudit Profiles Audit Profile Collection Item Audit Trail> - Indicates the list of available audit trails on the target.
- Change
Retention intTrigger - Compartment
Id 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
- The description of the audit profile.
- Display
Name 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 profile.
- Is
Override boolGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- Is
Paid boolUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- Lifecycle
Details string - Details about the current state of the audit profile in Data Safe.
- Offline
Months int - Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.
- Online
Months int - Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months
- State string
- A optional filter to return only resources that match the specified lifecycle state.
- 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"}
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Created string - The date and time the audit profile was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the audit profile was updated, in the format defined by RFC3339.
- Audit
Collected stringVolume - Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.
- Audit
Profile stringId - A optional filter to return only resources that match the specified id.
- Audit
Trails []GetAudit Profiles Audit Profile Collection Item Audit Trail - Indicates the list of available audit trails on the target.
- Change
Retention intTrigger - Compartment
Id 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
- The description of the audit profile.
- Display
Name 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 profile.
- Is
Override boolGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- Is
Paid boolUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- Lifecycle
Details string - Details about the current state of the audit profile in Data Safe.
- Offline
Months int - Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.
- Online
Months int - Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months
- State string
- A optional filter to return only resources that match the specified lifecycle state.
- 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"}
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Created string - The date and time the audit profile was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the audit profile was updated, in the format defined by RFC3339.
- audit
Collected StringVolume - Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.
- audit
Profile StringId - A optional filter to return only resources that match the specified id.
- audit
Trails List<GetAudit Profiles Audit Profile Collection Item Audit Trail> - Indicates the list of available audit trails on the target.
- change
Retention IntegerTrigger - compartment
Id 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
- The description of the audit profile.
- display
Name 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 profile.
- is
Override BooleanGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- is
Paid BooleanUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- lifecycle
Details String - Details about the current state of the audit profile in Data Safe.
- offline
Months Integer - Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.
- online
Months Integer - Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months
- state String
- A optional filter to return only resources that match the specified lifecycle state.
- 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"}
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Created String - The date and time the audit profile was created, in the format defined by RFC3339.
- time
Updated String - The date and time the audit profile was updated, in the format defined by RFC3339.
- audit
Collected stringVolume - Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.
- audit
Profile stringId - A optional filter to return only resources that match the specified id.
- audit
Trails GetAudit Profiles Audit Profile Collection Item Audit Trail[] - Indicates the list of available audit trails on the target.
- change
Retention numberTrigger - compartment
Id 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
- The description of the audit profile.
- display
Name 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 profile.
- is
Override booleanGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- is
Paid booleanUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- lifecycle
Details string - Details about the current state of the audit profile in Data Safe.
- offline
Months number - Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.
- online
Months number - Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months
- state string
- A optional filter to return only resources that match the specified lifecycle state.
- {[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"}
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Created string - The date and time the audit profile was created, in the format defined by RFC3339.
- time
Updated string - The date and time the audit profile was updated, in the format defined by RFC3339.
- audit_
collected_ strvolume - Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.
- audit_
profile_ strid - A optional filter to return only resources that match the specified id.
- audit_
trails Sequence[datasafe.Get Audit Profiles Audit Profile Collection Item Audit Trail] - Indicates the list of available audit trails on the target.
- change_
retention_ inttrigger - 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
- The description of the audit profile.
- 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 profile.
- is_
override_ boolglobal_ retention_ setting - A optional filter to return only resources that match the specified retention configured value.
- is_
paid_ boolusage_ enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- lifecycle_
details str - Details about the current state of the audit profile in Data Safe.
- offline_
months int - Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.
- online_
months int - Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months
- state str
- A optional filter to return only resources that match the specified lifecycle state.
- 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 date and time the audit profile was created, in the format defined by RFC3339.
- time_
updated str - The date and time the audit profile was updated, in the format defined by RFC3339.
- audit
Collected StringVolume - Indicates number of audit records collected by Data Safe in the current calendar month. Audit records for the Data Safe service account are excluded and are not counted towards your monthly free limit.
- audit
Profile StringId - A optional filter to return only resources that match the specified id.
- audit
Trails List<Property Map> - Indicates the list of available audit trails on the target.
- change
Retention NumberTrigger - compartment
Id 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
- The description of the audit profile.
- display
Name 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 profile.
- is
Override BooleanGlobal Retention Setting - A optional filter to return only resources that match the specified retention configured value.
- is
Paid BooleanUsage Enabled - Indicates if you want to continue audit record collection beyond the free limit of one million audit records per month per target database, incurring additional charges. The default value is inherited from the global settings. You can change at the global level or at the target level.
- lifecycle
Details String - Details about the current state of the audit profile in Data Safe.
- offline
Months Number - Indicates the number of months the audit records will be stored offline in the Data Safe audit archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in archive, please contact the Oracle Support.
- online
Months Number - Indicates the number of months the audit records will be stored online in Oracle Data Safe audit repository for immediate reporting and analysis. Minimum: 1; Maximum:12 months
- state String
- A optional filter to return only resources that match the specified lifecycle state.
- 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"}
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Created String - The date and time the audit profile was created, in the format defined by RFC3339.
- time
Updated String - The date and time the audit profile was updated, in the format defined by RFC3339.
GetAuditProfilesAuditProfileCollectionItemAuditTrail
- Audit
Collection stringStart Time - The date from which the audit trail must start collecting data, in the format defined by RFC3339.
- Audit
Profile stringId - A optional filter to return only resources that match the specified id.
- Compartment
Id 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
- The description of the audit profile.
- Display
Name 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 profile.
- Is
Auto boolPurge Enabled - Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
- Lifecycle
Details string - Details about the current state of the audit profile in Data Safe.
- Peer
Target intDatabase Key - The secondary id assigned for the peer database registered with Data Safe.
- Purge
Job stringDetails - The details of the audit trail purge job that ran on the "purgeJobTime".
- Purge
Job stringStatus - The current status of the audit trail purge job.
- Purge
Job stringTime - The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
- State string
- A optional filter to return only resources that match the specified lifecycle state.
- Status string
- The current sub-state of the audit trail.
- 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"}
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Created string - The date and time the audit profile was created, in the format defined by RFC3339.
- Time
Last stringCollected - The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.
- Time
Updated string - The date and time the audit profile was updated, in the format defined by RFC3339.
- Trail
Location string - An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.
- Trail
Source string - The underlying source of unified audit trail.
- Work
Request stringId - The OCID of the workrequest for audit trail which collects audit records.
- Audit
Collection stringStart Time - The date from which the audit trail must start collecting data, in the format defined by RFC3339.
- Audit
Profile stringId - A optional filter to return only resources that match the specified id.
- Compartment
Id 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
- The description of the audit profile.
- Display
Name 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 profile.
- Is
Auto boolPurge Enabled - Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
- Lifecycle
Details string - Details about the current state of the audit profile in Data Safe.
- Peer
Target intDatabase Key - The secondary id assigned for the peer database registered with Data Safe.
- Purge
Job stringDetails - The details of the audit trail purge job that ran on the "purgeJobTime".
- Purge
Job stringStatus - The current status of the audit trail purge job.
- Purge
Job stringTime - The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
- State string
- A optional filter to return only resources that match the specified lifecycle state.
- Status string
- The current sub-state of the audit trail.
- 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"}
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Created string - The date and time the audit profile was created, in the format defined by RFC3339.
- Time
Last stringCollected - The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.
- Time
Updated string - The date and time the audit profile was updated, in the format defined by RFC3339.
- Trail
Location string - An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.
- Trail
Source string - The underlying source of unified audit trail.
- Work
Request stringId - The OCID of the workrequest for audit trail which collects audit records.
- audit
Collection StringStart Time - The date from which the audit trail must start collecting data, in the format defined by RFC3339.
- audit
Profile StringId - A optional filter to return only resources that match the specified id.
- compartment
Id 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
- The description of the audit profile.
- display
Name 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 profile.
- is
Auto BooleanPurge Enabled - Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
- lifecycle
Details String - Details about the current state of the audit profile in Data Safe.
- peer
Target IntegerDatabase Key - The secondary id assigned for the peer database registered with Data Safe.
- purge
Job StringDetails - The details of the audit trail purge job that ran on the "purgeJobTime".
- purge
Job StringStatus - The current status of the audit trail purge job.
- purge
Job StringTime - The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
- state String
- A optional filter to return only resources that match the specified lifecycle state.
- status String
- The current sub-state of the audit trail.
- 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"}
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Created String - The date and time the audit profile was created, in the format defined by RFC3339.
- time
Last StringCollected - The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.
- time
Updated String - The date and time the audit profile was updated, in the format defined by RFC3339.
- trail
Location String - An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.
- trail
Source String - The underlying source of unified audit trail.
- work
Request StringId - The OCID of the workrequest for audit trail which collects audit records.
- audit
Collection stringStart Time - The date from which the audit trail must start collecting data, in the format defined by RFC3339.
- audit
Profile stringId - A optional filter to return only resources that match the specified id.
- compartment
Id 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
- The description of the audit profile.
- display
Name 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 profile.
- is
Auto booleanPurge Enabled - Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
- lifecycle
Details string - Details about the current state of the audit profile in Data Safe.
- peer
Target numberDatabase Key - The secondary id assigned for the peer database registered with Data Safe.
- purge
Job stringDetails - The details of the audit trail purge job that ran on the "purgeJobTime".
- purge
Job stringStatus - The current status of the audit trail purge job.
- purge
Job stringTime - The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
- state string
- A optional filter to return only resources that match the specified lifecycle state.
- status string
- The current sub-state of the audit trail.
- {[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"}
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Created string - The date and time the audit profile was created, in the format defined by RFC3339.
- time
Last stringCollected - The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.
- time
Updated string - The date and time the audit profile was updated, in the format defined by RFC3339.
- trail
Location string - An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.
- trail
Source string - The underlying source of unified audit trail.
- work
Request stringId - The OCID of the workrequest for audit trail which collects audit records.
- audit_
collection_ strstart_ time - The date from which the audit trail must start collecting data, in the format defined by RFC3339.
- audit_
profile_ strid - A optional filter to return only resources that match the specified id.
- 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
- The description of the audit profile.
- 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 profile.
- is_
auto_ boolpurge_ enabled - Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
- lifecycle_
details str - Details about the current state of the audit profile in Data Safe.
- peer_
target_ intdatabase_ key - The secondary id assigned for the peer database registered with Data Safe.
- purge_
job_ strdetails - The details of the audit trail purge job that ran on the "purgeJobTime".
- purge_
job_ strstatus - The current status of the audit trail purge job.
- purge_
job_ strtime - The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
- state str
- A optional filter to return only resources that match the specified lifecycle state.
- status str
- The current sub-state of the audit trail.
- 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 date and time the audit profile was created, in the format defined by RFC3339.
- time_
last_ strcollected - The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.
- time_
updated str - The date and time the audit profile was updated, in the format defined by RFC3339.
- trail_
location str - An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.
- trail_
source str - The underlying source of unified audit trail.
- work_
request_ strid - The OCID of the workrequest for audit trail which collects audit records.
- audit
Collection StringStart Time - The date from which the audit trail must start collecting data, in the format defined by RFC3339.
- audit
Profile StringId - A optional filter to return only resources that match the specified id.
- compartment
Id 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
- The description of the audit profile.
- display
Name 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 profile.
- is
Auto BooleanPurge Enabled - Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.
- lifecycle
Details String - Details about the current state of the audit profile in Data Safe.
- peer
Target NumberDatabase Key - The secondary id assigned for the peer database registered with Data Safe.
- purge
Job StringDetails - The details of the audit trail purge job that ran on the "purgeJobTime".
- purge
Job StringStatus - The current status of the audit trail purge job.
- purge
Job StringTime - The date and time of the last purge job, which deletes audit data in the target database every seven days so that the database's audit trail does not become too large. In the format defined by RFC3339.
- state String
- A optional filter to return only resources that match the specified lifecycle state.
- status String
- The current sub-state of the audit trail.
- 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"}
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Created String - The date and time the audit profile was created, in the format defined by RFC3339.
- time
Last StringCollected - The date and time until when the audit events were collected from the target database by the Data Safe audit trail collection process, in the format defined by RFC3339.
- time
Updated String - The date and time the audit profile was updated, in the format defined by RFC3339.
- trail
Location String - An audit trail location represents the source of audit records that provides documentary evidence of the sequence of activities in the target database.
- trail
Source String - The underlying source of unified audit trail.
- work
Request StringId - The OCID of the workrequest for audit trail which collects audit records.
GetAuditProfilesFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.