Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.DataSafe.getAuditArchiveRetrievals
Explore with Pulumi AI
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,
});
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)
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
})
}
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,
});
});
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());
}
}
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}
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>
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]
func GetAuditArchiveRetrievals(ctx *Context, args *GetAuditArchiveRetrievalsArgs, opts ...InvokeOption) (*GetAuditArchiveRetrievalsResult, error)
func GetAuditArchiveRetrievalsOutput(ctx *Context, args *GetAuditArchiveRetrievalsOutputArgs, opts ...InvokeOption) GetAuditArchiveRetrievalsResultOutput
> 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)
}
public static CompletableFuture<GetAuditArchiveRetrievalsResult> getAuditArchiveRetrievals(GetAuditArchiveRetrievalsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DataSafe/getAuditArchiveRetrievals:getAuditArchiveRetrievals
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
Archive stringRetrieval Id - OCID of the archive retrieval.
- 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 Archive Retrievals Filter> - State string
- A filter to return only resources that matches the specified lifecycle state.
- Target
Id string - The OCID of the target associated with the archive retrieval.
- Time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- 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
Archive stringRetrieval Id - OCID of the archive retrieval.
- 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 Archive Retrievals Filter - State string
- A filter to return only resources that matches the specified lifecycle state.
- Target
Id string - The OCID of the target associated with the archive retrieval.
- Time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- 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
Archive StringRetrieval Id - OCID of the archive retrieval.
- 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 Archive Retrievals Filter> - state String
- A filter to return only resources that matches the specified lifecycle state.
- target
Id String - The OCID of the target associated with the archive retrieval.
- time
Of StringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- 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
Archive stringRetrieval Id - OCID of the archive retrieval.
- 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 Archive Retrievals Filter[] - state string
- A filter to return only resources that matches the specified lifecycle state.
- target
Id string - The OCID of the target associated with the archive retrieval.
- time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- 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_
archive_ strretrieval_ id - OCID of the archive retrieval.
- 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 Archive Retrievals Filter] - 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_ strexpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- 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
Archive StringRetrieval Id - OCID of the archive retrieval.
- 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>
- state String
- A filter to return only resources that matches the specified lifecycle state.
- target
Id String - The OCID of the target associated with the archive retrieval.
- time
Of StringExpiry - 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:
- Audit
Archive List<GetRetrieval Collections Audit Archive Retrievals Audit Archive Retrieval Collection> - The list of audit_archive_retrieval_collection.
- Compartment
Id string - The OCID of the compartment that contains archive retrieval.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Audit
Archive stringRetrieval Id - Compartment
Id boolIn Subtree - Display
Name string - The display name of the archive retrieval. The name does not have to be unique, and is changeable.
- Filters
List<Get
Audit Archive Retrievals Filter> - State string
- The current state of the archive retrieval.
- Target
Id string - The OCID of the target associated with the archive retrieval.
- Time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- Audit
Archive []GetRetrieval Collections Audit Archive Retrievals Audit Archive Retrieval Collection - The list of audit_archive_retrieval_collection.
- Compartment
Id string - The OCID of the compartment that contains archive retrieval.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Audit
Archive stringRetrieval Id - Compartment
Id boolIn Subtree - Display
Name string - The display name of the archive retrieval. The name does not have to be unique, and is changeable.
- Filters
[]Get
Audit Archive Retrievals Filter - State string
- The current state of the archive retrieval.
- Target
Id string - The OCID of the target associated with the archive retrieval.
- Time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- audit
Archive List<GetRetrieval Collections Audit Archive Retrievals Audit Archive Retrieval Collection> - The list of audit_archive_retrieval_collection.
- compartment
Id String - The OCID of the compartment that contains archive retrieval.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - audit
Archive StringRetrieval Id - compartment
Id BooleanIn Subtree - display
Name String - The display name of the archive retrieval. The name does not have to be unique, and is changeable.
- filters
List<Get
Audit Archive Retrievals Filter> - state String
- The current state of the archive retrieval.
- target
Id String - The OCID of the target associated with the archive retrieval.
- time
Of StringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- audit
Archive GetRetrieval Collections Audit Archive Retrievals Audit Archive Retrieval Collection[] - The list of audit_archive_retrieval_collection.
- compartment
Id string - The OCID of the compartment that contains archive retrieval.
- id string
- The provider-assigned unique ID for this managed resource.
- access
Level string - audit
Archive stringRetrieval Id - compartment
Id booleanIn Subtree - display
Name string - The display name of the archive retrieval. The name does not have to be unique, and is changeable.
- filters
Get
Audit Archive Retrievals Filter[] - state string
- The current state of the archive retrieval.
- target
Id string - The OCID of the target associated with the archive retrieval.
- time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- audit_
archive_ Sequence[datasafe.retrieval_ collections Get Audit Archive Retrievals Audit Archive Retrieval Collection] - 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_ strretrieval_ id - compartment_
id_ boolin_ subtree - display_
name str - The display name of the archive retrieval. The name does not have to be unique, and is changeable.
- filters
Sequence[datasafe.
Get Audit Archive Retrievals Filter] - state str
- The current state of the archive retrieval.
- target_
id str - The OCID of the target associated with the archive retrieval.
- time_
of_ strexpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- audit
Archive List<Property Map>Retrieval Collections - The list of audit_archive_retrieval_collection.
- compartment
Id String - The OCID of the compartment that contains archive retrieval.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - audit
Archive StringRetrieval Id - compartment
Id BooleanIn Subtree - display
Name 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.
- target
Id String - The OCID of the target associated with the archive retrieval.
- time
Of StringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
Supporting Types
GetAuditArchiveRetrievalsAuditArchiveRetrievalCollection
GetAuditArchiveRetrievalsAuditArchiveRetrievalCollectionItem
- Audit
Event stringCount - Total count of audit events to be retrieved from the archive for the specified date range.
- 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
- Description of the archive retrieval.
- Display
Name string - A filter to return only resources that match the specified display name.
- End
Date string - End month of the archive retrieval, in the format defined by RFC3339.
- Error
Info string - The Error details of a failed archive retrieval.
- 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 archive retrieval.
- Lifecycle
Details string - Details about the current state of the archive retrieval.
- Start
Date string - Start month of the archive retrieval, in the format defined by RFC3339.
- State string
- A filter to return only resources that matches 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 - The OCID of the target associated with the archive retrieval.
- Time
Completed string - The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
- Time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- Time
Requested string - The date time when archive retrieval was requested, in the format defined by RFC3339.
- Audit
Event stringCount - Total count of audit events to be retrieved from the archive for the specified date range.
- 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
- Description of the archive retrieval.
- Display
Name string - A filter to return only resources that match the specified display name.
- End
Date string - End month of the archive retrieval, in the format defined by RFC3339.
- Error
Info string - The Error details of a failed archive retrieval.
- 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 archive retrieval.
- Lifecycle
Details string - Details about the current state of the archive retrieval.
- Start
Date string - Start month of the archive retrieval, in the format defined by RFC3339.
- State string
- A filter to return only resources that matches 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 - The OCID of the target associated with the archive retrieval.
- Time
Completed string - The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
- Time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- Time
Requested string - The date time when archive retrieval was requested, in the format defined by RFC3339.
- audit
Event StringCount - Total count of audit events to be retrieved from the archive for the specified date range.
- 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
- Description of the archive retrieval.
- display
Name String - A filter to return only resources that match the specified display name.
- end
Date String - End month of the archive retrieval, in the format defined by RFC3339.
- error
Info String - The Error details of a failed archive retrieval.
- 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 archive retrieval.
- lifecycle
Details String - Details about the current state of the archive retrieval.
- start
Date String - Start month of the archive retrieval, in the format defined by RFC3339.
- state String
- A filter to return only resources that matches 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 - The OCID of the target associated with the archive retrieval.
- time
Completed String - The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
- time
Of StringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- time
Requested String - The date time when archive retrieval was requested, in the format defined by RFC3339.
- audit
Event stringCount - Total count of audit events to be retrieved from the archive for the specified date range.
- 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
- Description of the archive retrieval.
- display
Name string - A filter to return only resources that match the specified display name.
- end
Date string - End month of the archive retrieval, in the format defined by RFC3339.
- error
Info string - The Error details of a failed archive retrieval.
- {[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 archive retrieval.
- lifecycle
Details string - Details about the current state of the archive retrieval.
- start
Date string - Start month of the archive retrieval, in the format defined by RFC3339.
- state string
- A filter to return only resources that matches 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 - The OCID of the target associated with the archive retrieval.
- time
Completed string - The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
- time
Of stringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- time
Requested string - The date time when archive retrieval was requested, in the format defined by RFC3339.
- audit_
event_ strcount - Total count of audit events to be retrieved from the archive for the specified date range.
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description str
- Description of the archive retrieval.
- display_
name str - A filter to return only resources that match the specified display name.
- end_
date str - End month of the archive retrieval, in the format defined by RFC3339.
- error_
info str - The Error details of a failed archive retrieval.
- 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 archive retrieval.
- lifecycle_
details str - Details about the current state of the archive retrieval.
- start_
date str - Start month of the archive retrieval, in the format defined by RFC3339.
- state str
- A filter to return only resources that matches 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 - The OCID of the target associated with the archive retrieval.
- time_
completed str - The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
- time_
of_ strexpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- time_
requested str - The date time when archive retrieval was requested, in the format defined by RFC3339.
- audit
Event StringCount - Total count of audit events to be retrieved from the archive for the specified date range.
- 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
- Description of the archive retrieval.
- display
Name String - A filter to return only resources that match the specified display name.
- end
Date String - End month of the archive retrieval, in the format defined by RFC3339.
- error
Info String - The Error details of a failed archive retrieval.
- 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 archive retrieval.
- lifecycle
Details String - Details about the current state of the archive retrieval.
- start
Date String - Start month of the archive retrieval, in the format defined by RFC3339.
- state String
- A filter to return only resources that matches 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 - The OCID of the target associated with the archive retrieval.
- time
Completed String - The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
- time
Of StringExpiry - The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
- time
Requested String - The date time when archive retrieval was requested, in the format defined by RFC3339.
GetAuditArchiveRetrievalsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.