1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getAuditArchiveRetrievals
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.DataSafe.getAuditArchiveRetrievals

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Audit Archive Retrievals in Oracle Cloud Infrastructure Data Safe service.

Returns the list of audit archive retrieval.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAuditArchiveRetrievals = oci.DataSafe.getAuditArchiveRetrievals({
    compartmentId: compartmentId,
    accessLevel: auditArchiveRetrievalAccessLevel,
    auditArchiveRetrievalId: testAuditArchiveRetrieval.id,
    compartmentIdInSubtree: auditArchiveRetrievalCompartmentIdInSubtree,
    displayName: auditArchiveRetrievalDisplayName,
    state: auditArchiveRetrievalState,
    targetId: testTarget.id,
    timeOfExpiry: auditArchiveRetrievalTimeOfExpiry,
});
Copy
import pulumi
import pulumi_oci as oci

test_audit_archive_retrievals = oci.DataSafe.get_audit_archive_retrievals(compartment_id=compartment_id,
    access_level=audit_archive_retrieval_access_level,
    audit_archive_retrieval_id=test_audit_archive_retrieval["id"],
    compartment_id_in_subtree=audit_archive_retrieval_compartment_id_in_subtree,
    display_name=audit_archive_retrieval_display_name,
    state=audit_archive_retrieval_state,
    target_id=test_target["id"],
    time_of_expiry=audit_archive_retrieval_time_of_expiry)
Copy
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.GetAuditArchiveRetrievals(ctx, &datasafe.GetAuditArchiveRetrievalsArgs{
			CompartmentId:           compartmentId,
			AccessLevel:             pulumi.StringRef(auditArchiveRetrievalAccessLevel),
			AuditArchiveRetrievalId: pulumi.StringRef(testAuditArchiveRetrieval.Id),
			CompartmentIdInSubtree:  pulumi.BoolRef(auditArchiveRetrievalCompartmentIdInSubtree),
			DisplayName:             pulumi.StringRef(auditArchiveRetrievalDisplayName),
			State:                   pulumi.StringRef(auditArchiveRetrievalState),
			TargetId:                pulumi.StringRef(testTarget.Id),
			TimeOfExpiry:            pulumi.StringRef(auditArchiveRetrievalTimeOfExpiry),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testAuditArchiveRetrievals = Oci.DataSafe.GetAuditArchiveRetrievals.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = auditArchiveRetrievalAccessLevel,
        AuditArchiveRetrievalId = testAuditArchiveRetrieval.Id,
        CompartmentIdInSubtree = auditArchiveRetrievalCompartmentIdInSubtree,
        DisplayName = auditArchiveRetrievalDisplayName,
        State = auditArchiveRetrievalState,
        TargetId = testTarget.Id,
        TimeOfExpiry = auditArchiveRetrievalTimeOfExpiry,
    });

});
Copy
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.GetAuditArchiveRetrievalsArgs;
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 testAuditArchiveRetrievals = DataSafeFunctions.getAuditArchiveRetrievals(GetAuditArchiveRetrievalsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(auditArchiveRetrievalAccessLevel)
            .auditArchiveRetrievalId(testAuditArchiveRetrieval.id())
            .compartmentIdInSubtree(auditArchiveRetrievalCompartmentIdInSubtree)
            .displayName(auditArchiveRetrievalDisplayName)
            .state(auditArchiveRetrievalState)
            .targetId(testTarget.id())
            .timeOfExpiry(auditArchiveRetrievalTimeOfExpiry)
            .build());

    }
}
Copy
variables:
  testAuditArchiveRetrievals:
    fn::invoke:
      function: oci:DataSafe:getAuditArchiveRetrievals
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${auditArchiveRetrievalAccessLevel}
        auditArchiveRetrievalId: ${testAuditArchiveRetrieval.id}
        compartmentIdInSubtree: ${auditArchiveRetrievalCompartmentIdInSubtree}
        displayName: ${auditArchiveRetrievalDisplayName}
        state: ${auditArchiveRetrievalState}
        targetId: ${testTarget.id}
        timeOfExpiry: ${auditArchiveRetrievalTimeOfExpiry}
Copy

Using getAuditArchiveRetrievals

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 getAuditArchiveRetrievals(args: GetAuditArchiveRetrievalsArgs, opts?: InvokeOptions): Promise<GetAuditArchiveRetrievalsResult>
function getAuditArchiveRetrievalsOutput(args: GetAuditArchiveRetrievalsOutputArgs, opts?: InvokeOptions): Output<GetAuditArchiveRetrievalsResult>
Copy
def get_audit_archive_retrievals(access_level: Optional[str] = None,
                                 audit_archive_retrieval_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.GetAuditArchiveRetrievalsFilter]] = None,
                                 state: Optional[str] = None,
                                 target_id: Optional[str] = None,
                                 time_of_expiry: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetAuditArchiveRetrievalsResult
def get_audit_archive_retrievals_output(access_level: Optional[pulumi.Input[str]] = None,
                                 audit_archive_retrieval_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.GetAuditArchiveRetrievalsFilterArgs]]]] = None,
                                 state: Optional[pulumi.Input[str]] = None,
                                 target_id: Optional[pulumi.Input[str]] = None,
                                 time_of_expiry: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetAuditArchiveRetrievalsResult]
Copy
func GetAuditArchiveRetrievals(ctx *Context, args *GetAuditArchiveRetrievalsArgs, opts ...InvokeOption) (*GetAuditArchiveRetrievalsResult, error)
func GetAuditArchiveRetrievalsOutput(ctx *Context, args *GetAuditArchiveRetrievalsOutputArgs, opts ...InvokeOption) GetAuditArchiveRetrievalsResultOutput
Copy

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

public static class GetAuditArchiveRetrievals 
{
    public static Task<GetAuditArchiveRetrievalsResult> InvokeAsync(GetAuditArchiveRetrievalsArgs args, InvokeOptions? opts = null)
    public static Output<GetAuditArchiveRetrievalsResult> Invoke(GetAuditArchiveRetrievalsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAuditArchiveRetrievalsResult> getAuditArchiveRetrievals(GetAuditArchiveRetrievalsArgs args, InvokeOptions options)
public static Output<GetAuditArchiveRetrievalsResult> getAuditArchiveRetrievals(GetAuditArchiveRetrievalsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataSafe/getAuditArchiveRetrievals:getAuditArchiveRetrievals
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. 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.
AuditArchiveRetrievalId string
OCID of the archive retrieval.
CompartmentIdInSubtree bool
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 Changes to this property will trigger replacement. List<GetAuditArchiveRetrievalsFilter>
State string
A filter to return only resources that matches the specified lifecycle state.
TargetId string
The OCID of the target associated with the archive retrieval.
TimeOfExpiry string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
CompartmentId This property is required. 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.
AuditArchiveRetrievalId string
OCID of the archive retrieval.
CompartmentIdInSubtree bool
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 Changes to this property will trigger replacement. []GetAuditArchiveRetrievalsFilter
State string
A filter to return only resources that matches the specified lifecycle state.
TargetId string
The OCID of the target associated with the archive retrieval.
TimeOfExpiry string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
compartmentId This property is required. 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.
auditArchiveRetrievalId String
OCID of the archive retrieval.
compartmentIdInSubtree Boolean
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 Changes to this property will trigger replacement. List<GetAuditArchiveRetrievalsFilter>
state String
A filter to return only resources that matches the specified lifecycle state.
targetId String
The OCID of the target associated with the archive retrieval.
timeOfExpiry String
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
compartmentId This property is required. 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.
auditArchiveRetrievalId string
OCID of the archive retrieval.
compartmentIdInSubtree boolean
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 Changes to this property will trigger replacement. GetAuditArchiveRetrievalsFilter[]
state string
A filter to return only resources that matches the specified lifecycle state.
targetId string
The OCID of the target associated with the archive retrieval.
timeOfExpiry string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
compartment_id This property is required. 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_archive_retrieval_id str
OCID of the archive retrieval.
compartment_id_in_subtree bool
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 Changes to this property will trigger replacement. Sequence[datasafe.GetAuditArchiveRetrievalsFilter]
state str
A filter to return only resources that matches the specified lifecycle state.
target_id str
The OCID of the target associated with the archive retrieval.
time_of_expiry str
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
compartmentId This property is required. 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.
auditArchiveRetrievalId String
OCID of the archive retrieval.
compartmentIdInSubtree Boolean
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 Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources that matches the specified lifecycle state.
targetId String
The OCID of the target associated with the archive retrieval.
timeOfExpiry String
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.

getAuditArchiveRetrievals Result

The following output properties are available:

AuditArchiveRetrievalCollections List<GetAuditArchiveRetrievalsAuditArchiveRetrievalCollection>
The list of audit_archive_retrieval_collection.
CompartmentId string
The OCID of the compartment that contains archive retrieval.
Id string
The provider-assigned unique ID for this managed resource.
AccessLevel string
AuditArchiveRetrievalId string
CompartmentIdInSubtree bool
DisplayName string
The display name of the archive retrieval. The name does not have to be unique, and is changeable.
Filters List<GetAuditArchiveRetrievalsFilter>
State string
The current state of the archive retrieval.
TargetId string
The OCID of the target associated with the archive retrieval.
TimeOfExpiry string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
AuditArchiveRetrievalCollections []GetAuditArchiveRetrievalsAuditArchiveRetrievalCollection
The list of audit_archive_retrieval_collection.
CompartmentId string
The OCID of the compartment that contains archive retrieval.
Id string
The provider-assigned unique ID for this managed resource.
AccessLevel string
AuditArchiveRetrievalId string
CompartmentIdInSubtree bool
DisplayName string
The display name of the archive retrieval. The name does not have to be unique, and is changeable.
Filters []GetAuditArchiveRetrievalsFilter
State string
The current state of the archive retrieval.
TargetId string
The OCID of the target associated with the archive retrieval.
TimeOfExpiry string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
auditArchiveRetrievalCollections List<GetAuditArchiveRetrievalsAuditArchiveRetrievalCollection>
The list of audit_archive_retrieval_collection.
compartmentId String
The OCID of the compartment that contains archive retrieval.
id String
The provider-assigned unique ID for this managed resource.
accessLevel String
auditArchiveRetrievalId String
compartmentIdInSubtree Boolean
displayName String
The display name of the archive retrieval. The name does not have to be unique, and is changeable.
filters List<GetAuditArchiveRetrievalsFilter>
state String
The current state of the archive retrieval.
targetId String
The OCID of the target associated with the archive retrieval.
timeOfExpiry String
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
auditArchiveRetrievalCollections GetAuditArchiveRetrievalsAuditArchiveRetrievalCollection[]
The list of audit_archive_retrieval_collection.
compartmentId string
The OCID of the compartment that contains archive retrieval.
id string
The provider-assigned unique ID for this managed resource.
accessLevel string
auditArchiveRetrievalId string
compartmentIdInSubtree boolean
displayName string
The display name of the archive retrieval. The name does not have to be unique, and is changeable.
filters GetAuditArchiveRetrievalsFilter[]
state string
The current state of the archive retrieval.
targetId string
The OCID of the target associated with the archive retrieval.
timeOfExpiry string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
audit_archive_retrieval_collections Sequence[datasafe.GetAuditArchiveRetrievalsAuditArchiveRetrievalCollection]
The list of audit_archive_retrieval_collection.
compartment_id str
The OCID of the compartment that contains archive retrieval.
id str
The provider-assigned unique ID for this managed resource.
access_level str
audit_archive_retrieval_id str
compartment_id_in_subtree bool
display_name str
The display name of the archive retrieval. The name does not have to be unique, and is changeable.
filters Sequence[datasafe.GetAuditArchiveRetrievalsFilter]
state str
The current state of the archive retrieval.
target_id str
The OCID of the target associated with the archive retrieval.
time_of_expiry str
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
auditArchiveRetrievalCollections List<Property Map>
The list of audit_archive_retrieval_collection.
compartmentId String
The OCID of the compartment that contains archive retrieval.
id String
The provider-assigned unique ID for this managed resource.
accessLevel String
auditArchiveRetrievalId String
compartmentIdInSubtree Boolean
displayName String
The display name of the archive retrieval. The name does not have to be unique, and is changeable.
filters List<Property Map>
state String
The current state of the archive retrieval.
targetId String
The OCID of the target associated with the archive retrieval.
timeOfExpiry String
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.

Supporting Types

GetAuditArchiveRetrievalsAuditArchiveRetrievalCollection

items This property is required. List<Property Map>

GetAuditArchiveRetrievalsAuditArchiveRetrievalCollectionItem

AuditEventCount This property is required. string
Total count of audit events to be retrieved from the archive for the specified date range.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
DefinedTags This property is required. 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 This property is required. string
Description of the archive retrieval.
DisplayName This property is required. string
A filter to return only resources that match the specified display name.
EndDate This property is required. string
End month of the archive retrieval, in the format defined by RFC3339.
ErrorInfo This property is required. string
The Error details of a failed archive retrieval.
FreeformTags This property is required. 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 This property is required. string
The OCID of the archive retrieval.
LifecycleDetails This property is required. string
Details about the current state of the archive retrieval.
StartDate This property is required. string
Start month of the archive retrieval, in the format defined by RFC3339.
State This property is required. string
A filter to return only resources that matches the specified lifecycle state.
SystemTags This property is required. 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 This property is required. string
The OCID of the target associated with the archive retrieval.
TimeCompleted This property is required. string
The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
TimeOfExpiry This property is required. string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
TimeRequested This property is required. string
The date time when archive retrieval was requested, in the format defined by RFC3339.
AuditEventCount This property is required. string
Total count of audit events to be retrieved from the archive for the specified date range.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
DefinedTags This property is required. 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 This property is required. string
Description of the archive retrieval.
DisplayName This property is required. string
A filter to return only resources that match the specified display name.
EndDate This property is required. string
End month of the archive retrieval, in the format defined by RFC3339.
ErrorInfo This property is required. string
The Error details of a failed archive retrieval.
FreeformTags This property is required. 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 This property is required. string
The OCID of the archive retrieval.
LifecycleDetails This property is required. string
Details about the current state of the archive retrieval.
StartDate This property is required. string
Start month of the archive retrieval, in the format defined by RFC3339.
State This property is required. string
A filter to return only resources that matches the specified lifecycle state.
SystemTags This property is required. 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 This property is required. string
The OCID of the target associated with the archive retrieval.
TimeCompleted This property is required. string
The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
TimeOfExpiry This property is required. string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
TimeRequested This property is required. string
The date time when archive retrieval was requested, in the format defined by RFC3339.
auditEventCount This property is required. String
Total count of audit events to be retrieved from the archive for the specified date range.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. 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 This property is required. String
Description of the archive retrieval.
displayName This property is required. String
A filter to return only resources that match the specified display name.
endDate This property is required. String
End month of the archive retrieval, in the format defined by RFC3339.
errorInfo This property is required. String
The Error details of a failed archive retrieval.
freeformTags This property is required. 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 This property is required. String
The OCID of the archive retrieval.
lifecycleDetails This property is required. String
Details about the current state of the archive retrieval.
startDate This property is required. String
Start month of the archive retrieval, in the format defined by RFC3339.
state This property is required. String
A filter to return only resources that matches the specified lifecycle state.
systemTags This property is required. 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 This property is required. String
The OCID of the target associated with the archive retrieval.
timeCompleted This property is required. String
The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
timeOfExpiry This property is required. String
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
timeRequested This property is required. String
The date time when archive retrieval was requested, in the format defined by RFC3339.
auditEventCount This property is required. string
Total count of audit events to be retrieved from the archive for the specified date range.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. {[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 This property is required. string
Description of the archive retrieval.
displayName This property is required. string
A filter to return only resources that match the specified display name.
endDate This property is required. string
End month of the archive retrieval, in the format defined by RFC3339.
errorInfo This property is required. string
The Error details of a failed archive retrieval.
freeformTags This property is required. {[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 This property is required. string
The OCID of the archive retrieval.
lifecycleDetails This property is required. string
Details about the current state of the archive retrieval.
startDate This property is required. string
Start month of the archive retrieval, in the format defined by RFC3339.
state This property is required. string
A filter to return only resources that matches the specified lifecycle state.
systemTags This property is required. {[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 This property is required. string
The OCID of the target associated with the archive retrieval.
timeCompleted This property is required. string
The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
timeOfExpiry This property is required. string
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
timeRequested This property is required. string
The date time when archive retrieval was requested, in the format defined by RFC3339.
audit_event_count This property is required. str
Total count of audit events to be retrieved from the archive for the specified date range.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
defined_tags This property is required. 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 This property is required. str
Description of the archive retrieval.
display_name This property is required. str
A filter to return only resources that match the specified display name.
end_date This property is required. str
End month of the archive retrieval, in the format defined by RFC3339.
error_info This property is required. str
The Error details of a failed archive retrieval.
freeform_tags This property is required. 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 This property is required. str
The OCID of the archive retrieval.
lifecycle_details This property is required. str
Details about the current state of the archive retrieval.
start_date This property is required. str
Start month of the archive retrieval, in the format defined by RFC3339.
state This property is required. str
A filter to return only resources that matches the specified lifecycle state.
system_tags This property is required. 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 This property is required. str
The OCID of the target associated with the archive retrieval.
time_completed This property is required. str
The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
time_of_expiry This property is required. str
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
time_requested This property is required. str
The date time when archive retrieval was requested, in the format defined by RFC3339.
auditEventCount This property is required. String
Total count of audit events to be retrieved from the archive for the specified date range.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. 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 This property is required. String
Description of the archive retrieval.
displayName This property is required. String
A filter to return only resources that match the specified display name.
endDate This property is required. String
End month of the archive retrieval, in the format defined by RFC3339.
errorInfo This property is required. String
The Error details of a failed archive retrieval.
freeformTags This property is required. 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 This property is required. String
The OCID of the archive retrieval.
lifecycleDetails This property is required. String
Details about the current state of the archive retrieval.
startDate This property is required. String
Start month of the archive retrieval, in the format defined by RFC3339.
state This property is required. String
A filter to return only resources that matches the specified lifecycle state.
systemTags This property is required. 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 This property is required. String
The OCID of the target associated with the archive retrieval.
timeCompleted This property is required. String
The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
timeOfExpiry This property is required. String
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
timeRequested This property is required. String
The date time when archive retrieval was requested, in the format defined by RFC3339.

GetAuditArchiveRetrievalsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi