Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi
This data source provides the list of Crypto Assessment Backup Sets in Oracle Cloud Infrastructure Data Safe service.
Gets backup set summaries across targets in a compartment. Use assessmentId to narrow results to one crypto assessment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCryptoAssessmentBackupSets = oci.datasafe.getCryptoAssessmentBackupSets({
compartmentId: compartmentId,
accessLevel: cryptoAssessmentBackupSetAccessLevel,
assessmentId: testAssessment.id,
assessmentType: cryptoAssessmentBackupSetAssessmentType,
backupSetKey: cryptoAssessmentBackupSetBackupSetKey,
compartmentIdInSubtree: cryptoAssessmentBackupSetCompartmentIdInSubtree === "true",
isEncrypted: cryptoAssessmentBackupSetIsEncrypted === "true",
targetId: testTarget.id,
targetIds: cryptoAssessmentBackupSetTargetIds,
});
import pulumi
import pulumi_oci as oci
test_crypto_assessment_backup_sets = oci.datasafe.get_crypto_assessment_backup_sets(compartment_id=compartment_id,
access_level=crypto_assessment_backup_set_access_level,
assessment_id=test_assessment["id"],
assessment_type=crypto_assessment_backup_set_assessment_type,
backup_set_key=crypto_assessment_backup_set_backup_set_key,
compartment_id_in_subtree=crypto_assessment_backup_set_compartment_id_in_subtree == "true",
is_encrypted=crypto_assessment_backup_set_is_encrypted == "true",
target_id=test_target["id"],
target_ids=crypto_assessment_backup_set_target_ids)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v5/go/oci/datasafe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datasafe.GetCryptoAssessmentBackupSets(ctx, &datasafe.GetCryptoAssessmentBackupSetsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(cryptoAssessmentBackupSetAccessLevel),
AssessmentId: pulumi.StringRef(testAssessment.Id),
AssessmentType: pulumi.StringRef(cryptoAssessmentBackupSetAssessmentType),
BackupSetKey: pulumi.StringRef(cryptoAssessmentBackupSetBackupSetKey),
CompartmentIdInSubtree: pulumi.BoolRef(cryptoAssessmentBackupSetCompartmentIdInSubtree),
IsEncrypted: pulumi.BoolRef(cryptoAssessmentBackupSetIsEncrypted),
TargetId: pulumi.StringRef(testTarget.Id),
TargetIds: pulumi.ToArray(cryptoAssessmentBackupSetTargetIds),
}, 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 testCryptoAssessmentBackupSets = Oci.DataSafe.GetCryptoAssessmentBackupSets.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = cryptoAssessmentBackupSetAccessLevel,
AssessmentId = testAssessment.Id,
AssessmentType = cryptoAssessmentBackupSetAssessmentType,
BackupSetKey = cryptoAssessmentBackupSetBackupSetKey,
CompartmentIdInSubtree = cryptoAssessmentBackupSetCompartmentIdInSubtree,
IsEncrypted = cryptoAssessmentBackupSetIsEncrypted,
TargetId = testTarget.Id,
TargetIds = cryptoAssessmentBackupSetTargetIds,
});
});
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.GetCryptoAssessmentBackupSetsArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 testCryptoAssessmentBackupSets = DataSafeFunctions.getCryptoAssessmentBackupSets(GetCryptoAssessmentBackupSetsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(cryptoAssessmentBackupSetAccessLevel)
.assessmentId(testAssessment.id())
.assessmentType(cryptoAssessmentBackupSetAssessmentType)
.backupSetKey(cryptoAssessmentBackupSetBackupSetKey)
.compartmentIdInSubtree(cryptoAssessmentBackupSetCompartmentIdInSubtree)
.isEncrypted(cryptoAssessmentBackupSetIsEncrypted)
.targetId(testTarget.id())
.targetIds(cryptoAssessmentBackupSetTargetIds)
.build());
}
}
variables:
testCryptoAssessmentBackupSets:
fn::invoke:
function: oci:DataSafe:getCryptoAssessmentBackupSets
arguments:
compartmentId: ${compartmentId}
accessLevel: ${cryptoAssessmentBackupSetAccessLevel}
assessmentId: ${testAssessment.id}
assessmentType: ${cryptoAssessmentBackupSetAssessmentType}
backupSetKey: ${cryptoAssessmentBackupSetBackupSetKey}
compartmentIdInSubtree: ${cryptoAssessmentBackupSetCompartmentIdInSubtree}
isEncrypted: ${cryptoAssessmentBackupSetIsEncrypted}
targetId: ${testTarget.id}
targetIds: ${cryptoAssessmentBackupSetTargetIds}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_datasafe_getcryptoassessmentbackupsets" "testCryptoAssessmentBackupSets" {
compartment_id = compartmentId
access_level = cryptoAssessmentBackupSetAccessLevel
assessment_id = testAssessment.id
assessment_type = cryptoAssessmentBackupSetAssessmentType
backup_set_key = cryptoAssessmentBackupSetBackupSetKey
compartment_id_in_subtree = cryptoAssessmentBackupSetCompartmentIdInSubtree
is_encrypted = cryptoAssessmentBackupSetIsEncrypted
target_id = testTarget.id
target_ids = cryptoAssessmentBackupSetTargetIds
}
Using getCryptoAssessmentBackupSets
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 getCryptoAssessmentBackupSets(args: GetCryptoAssessmentBackupSetsArgs, opts?: InvokeOptions): Promise<GetCryptoAssessmentBackupSetsResult>
function getCryptoAssessmentBackupSetsOutput(args: GetCryptoAssessmentBackupSetsOutputArgs, opts?: InvokeOutputOptions): Output<GetCryptoAssessmentBackupSetsResult>def get_crypto_assessment_backup_sets(access_level: Optional[str] = None,
assessment_id: Optional[str] = None,
assessment_type: Optional[str] = None,
backup_set_key: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
filters: Optional[Sequence[GetCryptoAssessmentBackupSetsFilter]] = None,
is_encrypted: Optional[bool] = None,
target_id: Optional[str] = None,
target_ids: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetCryptoAssessmentBackupSetsResult
def get_crypto_assessment_backup_sets_output(access_level: pulumi.Input[Optional[str]] = None,
assessment_id: pulumi.Input[Optional[str]] = None,
assessment_type: pulumi.Input[Optional[str]] = None,
backup_set_key: pulumi.Input[Optional[str]] = None,
compartment_id: pulumi.Input[Optional[str]] = None,
compartment_id_in_subtree: pulumi.Input[Optional[bool]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetCryptoAssessmentBackupSetsFilterArgs]]]] = None,
is_encrypted: pulumi.Input[Optional[bool]] = None,
target_id: pulumi.Input[Optional[str]] = None,
target_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetCryptoAssessmentBackupSetsResult]func GetCryptoAssessmentBackupSets(ctx *Context, args *GetCryptoAssessmentBackupSetsArgs, opts ...InvokeOption) (*GetCryptoAssessmentBackupSetsResult, error)
func GetCryptoAssessmentBackupSetsOutput(ctx *Context, args *GetCryptoAssessmentBackupSetsOutputArgs, opts ...InvokeOption) GetCryptoAssessmentBackupSetsResultOutput> Note: This function is named GetCryptoAssessmentBackupSets in the Go SDK.
public static class GetCryptoAssessmentBackupSets
{
public static Task<GetCryptoAssessmentBackupSetsResult> InvokeAsync(GetCryptoAssessmentBackupSetsArgs args, InvokeOptions? opts = null)
public static Output<GetCryptoAssessmentBackupSetsResult> Invoke(GetCryptoAssessmentBackupSetsInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetCryptoAssessmentBackupSetsResult> Invoke(GetCryptoAssessmentBackupSetsInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetCryptoAssessmentBackupSetsResult> getCryptoAssessmentBackupSets(GetCryptoAssessmentBackupSetsArgs args, InvokeOptions options)
public static Output<GetCryptoAssessmentBackupSetsResult> getCryptoAssessmentBackupSets(GetCryptoAssessmentBackupSetsArgs args, InvokeOptions options)
public static Output<GetCryptoAssessmentBackupSetsResult> getCryptoAssessmentBackupSets(GetCryptoAssessmentBackupSetsArgs args, InvokeOutputOptions options)
fn::invoke:
function: oci:DataSafe/getCryptoAssessmentBackupSets:getCryptoAssessmentBackupSets
arguments:
# arguments dictionarydata "oci_data_safe_get_crypto_assessment_backup_sets" "name" {
# arguments
}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.
- Assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- Assessment
Type string - A filter to return targets from assessments of the specified type.
- Backup
Set stringKey - Filters backup set summary rows to an exact matching backupSetKey.
- 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.
- Filters
List<Get
Crypto Assessment Backup Sets Filter> - Is
Encrypted bool - Filters backup set summary rows by whether the backup set is encrypted.
- Target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- Target
Ids List<string> - A filter to return only resources associated with any of the specified target OCIDs.
- 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.
- Assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- Assessment
Type string - A filter to return targets from assessments of the specified type.
- Backup
Set stringKey - Filters backup set summary rows to an exact matching backupSetKey.
- 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.
- Filters
[]Get
Crypto Assessment Backup Sets Filter - Is
Encrypted bool - Filters backup set summary rows by whether the backup set is encrypted.
- Target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- Target
Ids []string - A filter to return only resources associated with any of the specified target OCIDs.
- 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.
- assessment_
id string - A filter to return only resources associated with the specified crypto assessment OCID.
- assessment_
type string - A filter to return targets from assessments of the specified type.
- backup_
set_ stringkey - Filters backup set summary rows to an exact matching backupSetKey.
- 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.
- filters list(object)
- is_
encrypted bool - Filters backup set summary rows by whether the backup set is encrypted.
- target_
id string - A filter to return only inventory rows associated with the specified target OCID.
- target_
ids list(string) - A filter to return only resources associated with any of the specified target OCIDs.
- 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.
- assessment
Id String - A filter to return only resources associated with the specified crypto assessment OCID.
- assessment
Type String - A filter to return targets from assessments of the specified type.
- backup
Set StringKey - Filters backup set summary rows to an exact matching backupSetKey.
- 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.
- filters
List<Get
Crypto Assessment Backup Sets Filter> - is
Encrypted Boolean - Filters backup set summary rows by whether the backup set is encrypted.
- target
Id String - A filter to return only inventory rows associated with the specified target OCID.
- target
Ids List<String> - A filter to return only resources associated with any of the specified target OCIDs.
- 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.
- assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- assessment
Type string - A filter to return targets from assessments of the specified type.
- backup
Set stringKey - Filters backup set summary rows to an exact matching backupSetKey.
- 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.
- filters
Get
Crypto Assessment Backup Sets Filter[] - is
Encrypted boolean - Filters backup set summary rows by whether the backup set is encrypted.
- target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- target
Ids string[] - A filter to return only resources associated with any of the specified target OCIDs.
- 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.
- assessment_
id str - A filter to return only resources associated with the specified crypto assessment OCID.
- assessment_
type str - A filter to return targets from assessments of the specified type.
- backup_
set_ strkey - Filters backup set summary rows to an exact matching backupSetKey.
- 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.
- filters
Sequence[Get
Crypto Assessment Backup Sets Filter] - is_
encrypted bool - Filters backup set summary rows by whether the backup set is encrypted.
- target_
id str - A filter to return only inventory rows associated with the specified target OCID.
- target_
ids Sequence[str] - A filter to return only resources associated with any of the specified target OCIDs.
- 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.
- assessment
Id String - A filter to return only resources associated with the specified crypto assessment OCID.
- assessment
Type String - A filter to return targets from assessments of the specified type.
- backup
Set StringKey - Filters backup set summary rows to an exact matching backupSetKey.
- 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.
- filters List<Property Map>
- is
Encrypted Boolean - Filters backup set summary rows by whether the backup set is encrypted.
- target
Id String - A filter to return only inventory rows associated with the specified target OCID.
- target
Ids List<String> - A filter to return only resources associated with any of the specified target OCIDs.
getCryptoAssessmentBackupSets Result
The following output properties are available:
- Compartment
Id string - Crypto
Assessment List<GetBackup Set Collections Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection> - The list of crypto_assessment_backup_set_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Assessment
Id string - OCID of the crypto assessment that discovered the backup set.
- Assessment
Type string - Backup
Set stringKey - Backup set key.
- Compartment
Id boolIn Subtree - Filters
List<Get
Crypto Assessment Backup Sets Filter> - Is
Encrypted bool - Indicates whether the backup set is encrypted.
- Target
Id string - OCID of the target database associated with the backup set.
- Target
Ids List<string>
- Compartment
Id string - Crypto
Assessment []GetBackup Set Collections Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection - The list of crypto_assessment_backup_set_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Assessment
Id string - OCID of the crypto assessment that discovered the backup set.
- Assessment
Type string - Backup
Set stringKey - Backup set key.
- Compartment
Id boolIn Subtree - Filters
[]Get
Crypto Assessment Backup Sets Filter - Is
Encrypted bool - Indicates whether the backup set is encrypted.
- Target
Id string - OCID of the target database associated with the backup set.
- Target
Ids []string
- compartment_
id string - crypto_
assessment_ list(object)backup_ set_ collections - The list of crypto_assessment_backup_set_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- access_
level string - assessment_
id string - OCID of the crypto assessment that discovered the backup set.
- assessment_
type string - backup_
set_ stringkey - Backup set key.
- compartment_
id_ boolin_ subtree - filters list(object)
- is_
encrypted bool - Indicates whether the backup set is encrypted.
- target_
id string - OCID of the target database associated with the backup set.
- target_
ids list(string)
- compartment
Id String - crypto
Assessment List<GetBackup Set Collections Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection> - The list of crypto_assessment_backup_set_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - assessment
Id String - OCID of the crypto assessment that discovered the backup set.
- assessment
Type String - backup
Set StringKey - Backup set key.
- compartment
Id BooleanIn Subtree - filters
List<Get
Crypto Assessment Backup Sets Filter> - is
Encrypted Boolean - Indicates whether the backup set is encrypted.
- target
Id String - OCID of the target database associated with the backup set.
- target
Ids List<String>
- compartment
Id string - crypto
Assessment GetBackup Set Collections Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection[] - The list of crypto_assessment_backup_set_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- access
Level string - assessment
Id string - OCID of the crypto assessment that discovered the backup set.
- assessment
Type string - backup
Set stringKey - Backup set key.
- compartment
Id booleanIn Subtree - filters
Get
Crypto Assessment Backup Sets Filter[] - is
Encrypted boolean - Indicates whether the backup set is encrypted.
- target
Id string - OCID of the target database associated with the backup set.
- target
Ids string[]
- compartment_
id str - crypto_
assessment_ Sequence[Getbackup_ set_ collections Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection] - The list of crypto_assessment_backup_set_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- access_
level str - assessment_
id str - OCID of the crypto assessment that discovered the backup set.
- assessment_
type str - backup_
set_ strkey - Backup set key.
- compartment_
id_ boolin_ subtree - filters
Sequence[Get
Crypto Assessment Backup Sets Filter] - is_
encrypted bool - Indicates whether the backup set is encrypted.
- target_
id str - OCID of the target database associated with the backup set.
- target_
ids Sequence[str]
- compartment
Id String - crypto
Assessment List<Property Map>Backup Set Collections - The list of crypto_assessment_backup_set_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - assessment
Id String - OCID of the crypto assessment that discovered the backup set.
- assessment
Type String - backup
Set StringKey - Backup set key.
- compartment
Id BooleanIn Subtree - filters List<Property Map>
- is
Encrypted Boolean - Indicates whether the backup set is encrypted.
- target
Id String - OCID of the target database associated with the backup set.
- target
Ids List<String>
Supporting Types
GetCryptoAssessmentBackupSetsCryptoAssessmentBackupSetCollection
- Items
List<Get
Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection Item> - Backup set summary items for the specified crypto assessment.
- Items
[]Get
Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection Item - Backup set summary items for the specified crypto assessment.
- items list(object)
- Backup set summary items for the specified crypto assessment.
- items
List<Get
Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection Item> - Backup set summary items for the specified crypto assessment.
- items
Get
Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection Item[] - Backup set summary items for the specified crypto assessment.
- items
Sequence[Get
Crypto Assessment Backup Sets Crypto Assessment Backup Set Collection Item] - Backup set summary items for the specified crypto assessment.
- items List<Property Map>
- Backup set summary items for the specified crypto assessment.
GetCryptoAssessmentBackupSetsCryptoAssessmentBackupSetCollectionItem
- Algorithm
Observed string - Encryption algorithm observed for the backup set when encryption is enabled.
- Assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- Backup
Pieces int - Number of backup pieces in the set.
- Backup
Set stringKey - Filters backup set summary rows to an exact matching backupSetKey.
- Backup
Type string - Backup type observed for the set.
- Cipher
Mode stringObserved - Cipher mode observed for the backup set when encryption is enabled.
- Is
Compressed bool - Indicates whether the backup set is compressed.
- Is
Encrypted bool - Filters backup set summary rows by whether the backup set is encrypted.
- Set
Stamp string - Backup set stamp.
- Size
In doubleGbs - Backup set size in gigabytes.
- Status string
- Current status of the backup set.
- Target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- Time
Created string - Backup set creation time in RFC3339 format.
- Time
Last stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- Algorithm
Observed string - Encryption algorithm observed for the backup set when encryption is enabled.
- Assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- Backup
Pieces int - Number of backup pieces in the set.
- Backup
Set stringKey - Filters backup set summary rows to an exact matching backupSetKey.
- Backup
Type string - Backup type observed for the set.
- Cipher
Mode stringObserved - Cipher mode observed for the backup set when encryption is enabled.
- Is
Compressed bool - Indicates whether the backup set is compressed.
- Is
Encrypted bool - Filters backup set summary rows by whether the backup set is encrypted.
- Set
Stamp string - Backup set stamp.
- Size
In float64Gbs - Backup set size in gigabytes.
- Status string
- Current status of the backup set.
- Target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- Time
Created string - Backup set creation time in RFC3339 format.
- Time
Last stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- algorithm_
observed string - Encryption algorithm observed for the backup set when encryption is enabled.
- assessment_
id string - A filter to return only resources associated with the specified crypto assessment OCID.
- backup_
pieces number - Number of backup pieces in the set.
- backup_
set_ stringkey - Filters backup set summary rows to an exact matching backupSetKey.
- backup_
type string - Backup type observed for the set.
- cipher_
mode_ stringobserved - Cipher mode observed for the backup set when encryption is enabled.
- is_
compressed bool - Indicates whether the backup set is compressed.
- is_
encrypted bool - Filters backup set summary rows by whether the backup set is encrypted.
- set_
stamp string - Backup set stamp.
- size_
in_ numbergbs - Backup set size in gigabytes.
- status string
- Current status of the backup set.
- target_
id string - A filter to return only inventory rows associated with the specified target OCID.
- time_
created string - Backup set creation time in RFC3339 format.
- time_
last_ stringassessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- algorithm
Observed String - Encryption algorithm observed for the backup set when encryption is enabled.
- assessment
Id String - A filter to return only resources associated with the specified crypto assessment OCID.
- backup
Pieces Integer - Number of backup pieces in the set.
- backup
Set StringKey - Filters backup set summary rows to an exact matching backupSetKey.
- backup
Type String - Backup type observed for the set.
- cipher
Mode StringObserved - Cipher mode observed for the backup set when encryption is enabled.
- is
Compressed Boolean - Indicates whether the backup set is compressed.
- is
Encrypted Boolean - Filters backup set summary rows by whether the backup set is encrypted.
- set
Stamp String - Backup set stamp.
- size
In DoubleGbs - Backup set size in gigabytes.
- status String
- Current status of the backup set.
- target
Id String - A filter to return only inventory rows associated with the specified target OCID.
- time
Created String - Backup set creation time in RFC3339 format.
- time
Last StringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- algorithm
Observed string - Encryption algorithm observed for the backup set when encryption is enabled.
- assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- backup
Pieces number - Number of backup pieces in the set.
- backup
Set stringKey - Filters backup set summary rows to an exact matching backupSetKey.
- backup
Type string - Backup type observed for the set.
- cipher
Mode stringObserved - Cipher mode observed for the backup set when encryption is enabled.
- is
Compressed boolean - Indicates whether the backup set is compressed.
- is
Encrypted boolean - Filters backup set summary rows by whether the backup set is encrypted.
- set
Stamp string - Backup set stamp.
- size
In numberGbs - Backup set size in gigabytes.
- status string
- Current status of the backup set.
- target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- time
Created string - Backup set creation time in RFC3339 format.
- time
Last stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- algorithm_
observed str - Encryption algorithm observed for the backup set when encryption is enabled.
- assessment_
id str - A filter to return only resources associated with the specified crypto assessment OCID.
- backup_
pieces int - Number of backup pieces in the set.
- backup_
set_ strkey - Filters backup set summary rows to an exact matching backupSetKey.
- backup_
type str - Backup type observed for the set.
- cipher_
mode_ strobserved - Cipher mode observed for the backup set when encryption is enabled.
- is_
compressed bool - Indicates whether the backup set is compressed.
- is_
encrypted bool - Filters backup set summary rows by whether the backup set is encrypted.
- set_
stamp str - Backup set stamp.
- size_
in_ floatgbs - Backup set size in gigabytes.
- status str
- Current status of the backup set.
- target_
id str - A filter to return only inventory rows associated with the specified target OCID.
- time_
created str - Backup set creation time in RFC3339 format.
- time_
last_ strassessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- algorithm
Observed String - Encryption algorithm observed for the backup set when encryption is enabled.
- assessment
Id String - A filter to return only resources associated with the specified crypto assessment OCID.
- backup
Pieces Number - Number of backup pieces in the set.
- backup
Set StringKey - Filters backup set summary rows to an exact matching backupSetKey.
- backup
Type String - Backup type observed for the set.
- cipher
Mode StringObserved - Cipher mode observed for the backup set when encryption is enabled.
- is
Compressed Boolean - Indicates whether the backup set is compressed.
- is
Encrypted Boolean - Filters backup set summary rows by whether the backup set is encrypted.
- set
Stamp String - Backup set stamp.
- size
In NumberGbs - Backup set size in gigabytes.
- status String
- Current status of the backup set.
- target
Id String - A filter to return only inventory rows associated with the specified target OCID.
- time
Created String - Backup set creation time in RFC3339 format.
- time
Last StringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
GetCryptoAssessmentBackupSetsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi