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 Tde Objects in Oracle Cloud Infrastructure Data Safe service.
Lists TDE object encryption summaries across targets in a compartment. Use assessmentId to narrow results to one crypto assessment, and objectType to return either tablespace-level or column-level TDE observations.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCryptoAssessmentTdeObjects = oci.datasafe.getCryptoAssessmentTdeObjects({
compartmentId: compartmentId,
objectType: cryptoAssessmentTdeObjectObjectType,
accessLevel: cryptoAssessmentTdeObjectAccessLevel,
assessmentId: testAssessment.id,
assessmentType: cryptoAssessmentTdeObjectAssessmentType,
compartmentIdInSubtree: cryptoAssessmentTdeObjectCompartmentIdInSubtree === "true",
encryptionObserveds: cryptoAssessmentTdeObjectEncryptionObserved,
encryptionStatus: cryptoAssessmentTdeObjectEncryptionStatus,
quantumReadiness: cryptoAssessmentTdeObjectQuantumReadiness,
targetId: testTarget.id,
targetIds: cryptoAssessmentTdeObjectTargetIds,
});
import pulumi
import pulumi_oci as oci
test_crypto_assessment_tde_objects = oci.datasafe.get_crypto_assessment_tde_objects(compartment_id=compartment_id,
object_type=crypto_assessment_tde_object_object_type,
access_level=crypto_assessment_tde_object_access_level,
assessment_id=test_assessment["id"],
assessment_type=crypto_assessment_tde_object_assessment_type,
compartment_id_in_subtree=crypto_assessment_tde_object_compartment_id_in_subtree == "true",
encryption_observeds=crypto_assessment_tde_object_encryption_observed,
encryption_status=crypto_assessment_tde_object_encryption_status,
quantum_readiness=crypto_assessment_tde_object_quantum_readiness,
target_id=test_target["id"],
target_ids=crypto_assessment_tde_object_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.GetCryptoAssessmentTdeObjects(ctx, &datasafe.GetCryptoAssessmentTdeObjectsArgs{
CompartmentId: compartmentId,
ObjectType: cryptoAssessmentTdeObjectObjectType,
AccessLevel: pulumi.StringRef(cryptoAssessmentTdeObjectAccessLevel),
AssessmentId: pulumi.StringRef(testAssessment.Id),
AssessmentType: pulumi.StringRef(cryptoAssessmentTdeObjectAssessmentType),
CompartmentIdInSubtree: pulumi.BoolRef(cryptoAssessmentTdeObjectCompartmentIdInSubtree),
EncryptionObserveds: pulumi.ToArray(cryptoAssessmentTdeObjectEncryptionObserved),
EncryptionStatus: pulumi.StringRef(cryptoAssessmentTdeObjectEncryptionStatus),
QuantumReadiness: pulumi.StringRef(cryptoAssessmentTdeObjectQuantumReadiness),
TargetId: pulumi.StringRef(testTarget.Id),
TargetIds: pulumi.ToArray(cryptoAssessmentTdeObjectTargetIds),
}, 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 testCryptoAssessmentTdeObjects = Oci.DataSafe.GetCryptoAssessmentTdeObjects.Invoke(new()
{
CompartmentId = compartmentId,
ObjectType = cryptoAssessmentTdeObjectObjectType,
AccessLevel = cryptoAssessmentTdeObjectAccessLevel,
AssessmentId = testAssessment.Id,
AssessmentType = cryptoAssessmentTdeObjectAssessmentType,
CompartmentIdInSubtree = cryptoAssessmentTdeObjectCompartmentIdInSubtree,
EncryptionObserveds = cryptoAssessmentTdeObjectEncryptionObserved,
EncryptionStatus = cryptoAssessmentTdeObjectEncryptionStatus,
QuantumReadiness = cryptoAssessmentTdeObjectQuantumReadiness,
TargetId = testTarget.Id,
TargetIds = cryptoAssessmentTdeObjectTargetIds,
});
});
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.GetCryptoAssessmentTdeObjectsArgs;
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 testCryptoAssessmentTdeObjects = DataSafeFunctions.getCryptoAssessmentTdeObjects(GetCryptoAssessmentTdeObjectsArgs.builder()
.compartmentId(compartmentId)
.objectType(cryptoAssessmentTdeObjectObjectType)
.accessLevel(cryptoAssessmentTdeObjectAccessLevel)
.assessmentId(testAssessment.id())
.assessmentType(cryptoAssessmentTdeObjectAssessmentType)
.compartmentIdInSubtree(cryptoAssessmentTdeObjectCompartmentIdInSubtree)
.encryptionObserveds(cryptoAssessmentTdeObjectEncryptionObserved)
.encryptionStatus(cryptoAssessmentTdeObjectEncryptionStatus)
.quantumReadiness(cryptoAssessmentTdeObjectQuantumReadiness)
.targetId(testTarget.id())
.targetIds(cryptoAssessmentTdeObjectTargetIds)
.build());
}
}
variables:
testCryptoAssessmentTdeObjects:
fn::invoke:
function: oci:DataSafe:getCryptoAssessmentTdeObjects
arguments:
compartmentId: ${compartmentId}
objectType: ${cryptoAssessmentTdeObjectObjectType}
accessLevel: ${cryptoAssessmentTdeObjectAccessLevel}
assessmentId: ${testAssessment.id}
assessmentType: ${cryptoAssessmentTdeObjectAssessmentType}
compartmentIdInSubtree: ${cryptoAssessmentTdeObjectCompartmentIdInSubtree}
encryptionObserveds: ${cryptoAssessmentTdeObjectEncryptionObserved}
encryptionStatus: ${cryptoAssessmentTdeObjectEncryptionStatus}
quantumReadiness: ${cryptoAssessmentTdeObjectQuantumReadiness}
targetId: ${testTarget.id}
targetIds: ${cryptoAssessmentTdeObjectTargetIds}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_datasafe_getcryptoassessmenttdeobjects" "testCryptoAssessmentTdeObjects" {
compartment_id = compartmentId
object_type = cryptoAssessmentTdeObjectObjectType
access_level = cryptoAssessmentTdeObjectAccessLevel
assessment_id = testAssessment.id
assessment_type = cryptoAssessmentTdeObjectAssessmentType
compartment_id_in_subtree = cryptoAssessmentTdeObjectCompartmentIdInSubtree
encryption_observeds = cryptoAssessmentTdeObjectEncryptionObserved
encryption_status = cryptoAssessmentTdeObjectEncryptionStatus
quantum_readiness = cryptoAssessmentTdeObjectQuantumReadiness
target_id = testTarget.id
target_ids = cryptoAssessmentTdeObjectTargetIds
}
Using getCryptoAssessmentTdeObjects
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 getCryptoAssessmentTdeObjects(args: GetCryptoAssessmentTdeObjectsArgs, opts?: InvokeOptions): Promise<GetCryptoAssessmentTdeObjectsResult>
function getCryptoAssessmentTdeObjectsOutput(args: GetCryptoAssessmentTdeObjectsOutputArgs, opts?: InvokeOutputOptions): Output<GetCryptoAssessmentTdeObjectsResult>def get_crypto_assessment_tde_objects(access_level: Optional[str] = None,
assessment_id: Optional[str] = None,
assessment_type: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
encryption_observeds: Optional[Sequence[str]] = None,
encryption_status: Optional[str] = None,
filters: Optional[Sequence[GetCryptoAssessmentTdeObjectsFilter]] = None,
object_type: Optional[str] = None,
quantum_readiness: Optional[str] = None,
target_id: Optional[str] = None,
target_ids: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetCryptoAssessmentTdeObjectsResult
def get_crypto_assessment_tde_objects_output(access_level: pulumi.Input[Optional[str]] = None,
assessment_id: pulumi.Input[Optional[str]] = None,
assessment_type: pulumi.Input[Optional[str]] = None,
compartment_id: pulumi.Input[Optional[str]] = None,
compartment_id_in_subtree: pulumi.Input[Optional[bool]] = None,
encryption_observeds: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
encryption_status: pulumi.Input[Optional[str]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetCryptoAssessmentTdeObjectsFilterArgs]]]] = None,
object_type: pulumi.Input[Optional[str]] = None,
quantum_readiness: pulumi.Input[Optional[str]] = None,
target_id: pulumi.Input[Optional[str]] = None,
target_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetCryptoAssessmentTdeObjectsResult]func GetCryptoAssessmentTdeObjects(ctx *Context, args *GetCryptoAssessmentTdeObjectsArgs, opts ...InvokeOption) (*GetCryptoAssessmentTdeObjectsResult, error)
func GetCryptoAssessmentTdeObjectsOutput(ctx *Context, args *GetCryptoAssessmentTdeObjectsOutputArgs, opts ...InvokeOption) GetCryptoAssessmentTdeObjectsResultOutput> Note: This function is named GetCryptoAssessmentTdeObjects in the Go SDK.
public static class GetCryptoAssessmentTdeObjects
{
public static Task<GetCryptoAssessmentTdeObjectsResult> InvokeAsync(GetCryptoAssessmentTdeObjectsArgs args, InvokeOptions? opts = null)
public static Output<GetCryptoAssessmentTdeObjectsResult> Invoke(GetCryptoAssessmentTdeObjectsInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetCryptoAssessmentTdeObjectsResult> Invoke(GetCryptoAssessmentTdeObjectsInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetCryptoAssessmentTdeObjectsResult> getCryptoAssessmentTdeObjects(GetCryptoAssessmentTdeObjectsArgs args, InvokeOptions options)
public static Output<GetCryptoAssessmentTdeObjectsResult> getCryptoAssessmentTdeObjects(GetCryptoAssessmentTdeObjectsArgs args, InvokeOptions options)
public static Output<GetCryptoAssessmentTdeObjectsResult> getCryptoAssessmentTdeObjects(GetCryptoAssessmentTdeObjectsArgs args, InvokeOutputOptions options)
fn::invoke:
function: oci:DataSafe/getCryptoAssessmentTdeObjects:getCryptoAssessmentTdeObjects
arguments:
# arguments dictionarydata "oci_data_safe_get_crypto_assessment_tde_objects" "name" {
# arguments
}The following arguments are supported:
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Object
Type string - A required filter to return only TDE objects of the specified type.
- 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.
- 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.
- Encryption
Observeds List<string> - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- Encryption
Status string - Filters TDE object summary rows by derived encryption status. NOT_SUPPORTED maps to rows where encryptionObserved is NOT_SUPPORTED, UNENCRYPTED maps to rows where encryptionObserved is null or NONE, and ENCRYPTED maps to rows where the observed encryption algorithm is any other value.
- Filters
List<Get
Crypto Assessment Tde Objects Filter> - Quantum
Readiness string - Filters TDE object summary rows by quantum-readiness category.
- 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.
- Object
Type string - A required filter to return only TDE objects of the specified type.
- 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.
- 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.
- Encryption
Observeds []string - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- Encryption
Status string - Filters TDE object summary rows by derived encryption status. NOT_SUPPORTED maps to rows where encryptionObserved is NOT_SUPPORTED, UNENCRYPTED maps to rows where encryptionObserved is null or NONE, and ENCRYPTED maps to rows where the observed encryption algorithm is any other value.
- Filters
[]Get
Crypto Assessment Tde Objects Filter - Quantum
Readiness string - Filters TDE object summary rows by quantum-readiness category.
- 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.
- object_
type string - A required filter to return only TDE objects of the specified type.
- 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.
- 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.
- encryption_
observeds list(string) - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- encryption_
status string - Filters TDE object summary rows by derived encryption status. NOT_SUPPORTED maps to rows where encryptionObserved is NOT_SUPPORTED, UNENCRYPTED maps to rows where encryptionObserved is null or NONE, and ENCRYPTED maps to rows where the observed encryption algorithm is any other value.
- filters list(object)
- quantum_
readiness string - Filters TDE object summary rows by quantum-readiness category.
- 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.
- object
Type String - A required filter to return only TDE objects of the specified type.
- 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.
- 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.
- encryption
Observeds List<String> - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- encryption
Status String - Filters TDE object summary rows by derived encryption status. NOT_SUPPORTED maps to rows where encryptionObserved is NOT_SUPPORTED, UNENCRYPTED maps to rows where encryptionObserved is null or NONE, and ENCRYPTED maps to rows where the observed encryption algorithm is any other value.
- filters
List<Get
Crypto Assessment Tde Objects Filter> - quantum
Readiness String - Filters TDE object summary rows by quantum-readiness category.
- 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.
- object
Type string - A required filter to return only TDE objects of the specified type.
- 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.
- 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.
- encryption
Observeds string[] - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- encryption
Status string - Filters TDE object summary rows by derived encryption status. NOT_SUPPORTED maps to rows where encryptionObserved is NOT_SUPPORTED, UNENCRYPTED maps to rows where encryptionObserved is null or NONE, and ENCRYPTED maps to rows where the observed encryption algorithm is any other value.
- filters
Get
Crypto Assessment Tde Objects Filter[] - quantum
Readiness string - Filters TDE object summary rows by quantum-readiness category.
- 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.
- object_
type str - A required filter to return only TDE objects of the specified type.
- 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.
- 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.
- encryption_
observeds Sequence[str] - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- encryption_
status str - Filters TDE object summary rows by derived encryption status. NOT_SUPPORTED maps to rows where encryptionObserved is NOT_SUPPORTED, UNENCRYPTED maps to rows where encryptionObserved is null or NONE, and ENCRYPTED maps to rows where the observed encryption algorithm is any other value.
- filters
Sequence[Get
Crypto Assessment Tde Objects Filter] - quantum_
readiness str - Filters TDE object summary rows by quantum-readiness category.
- 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.
- object
Type String - A required filter to return only TDE objects of the specified type.
- 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.
- 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.
- encryption
Observeds List<String> - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- encryption
Status String - Filters TDE object summary rows by derived encryption status. NOT_SUPPORTED maps to rows where encryptionObserved is NOT_SUPPORTED, UNENCRYPTED maps to rows where encryptionObserved is null or NONE, and ENCRYPTED maps to rows where the observed encryption algorithm is any other value.
- filters List<Property Map>
- quantum
Readiness String - Filters TDE object summary rows by quantum-readiness category.
- 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.
getCryptoAssessmentTdeObjects Result
The following output properties are available:
- Compartment
Id string - Crypto
Assessment List<GetTde Object Collections Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection> - The list of crypto_assessment_tde_object_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Object
Type string - Access
Level string - Assessment
Id string - OCID of the crypto assessment that discovered the TDE object.
- Assessment
Type string - Compartment
Id boolIn Subtree - Encryption
Observeds List<string> - Encryption algorithm observed for the TDE object.
- Encryption
Status string - Filters
List<Get
Crypto Assessment Tde Objects Filter> - Quantum
Readiness string - Quantum-readiness classification for the observed TDE object encryption.
- Target
Id string - OCID of the target database associated with the TDE object.
- Target
Ids List<string>
- Compartment
Id string - Crypto
Assessment []GetTde Object Collections Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection - The list of crypto_assessment_tde_object_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Object
Type string - Access
Level string - Assessment
Id string - OCID of the crypto assessment that discovered the TDE object.
- Assessment
Type string - Compartment
Id boolIn Subtree - Encryption
Observeds []string - Encryption algorithm observed for the TDE object.
- Encryption
Status string - Filters
[]Get
Crypto Assessment Tde Objects Filter - Quantum
Readiness string - Quantum-readiness classification for the observed TDE object encryption.
- Target
Id string - OCID of the target database associated with the TDE object.
- Target
Ids []string
- compartment_
id string - crypto_
assessment_ list(object)tde_ object_ collections - The list of crypto_assessment_tde_object_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- object_
type string - access_
level string - assessment_
id string - OCID of the crypto assessment that discovered the TDE object.
- assessment_
type string - compartment_
id_ boolin_ subtree - encryption_
observeds list(string) - Encryption algorithm observed for the TDE object.
- encryption_
status string - filters list(object)
- quantum_
readiness string - Quantum-readiness classification for the observed TDE object encryption.
- target_
id string - OCID of the target database associated with the TDE object.
- target_
ids list(string)
- compartment
Id String - crypto
Assessment List<GetTde Object Collections Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection> - The list of crypto_assessment_tde_object_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- object
Type String - access
Level String - assessment
Id String - OCID of the crypto assessment that discovered the TDE object.
- assessment
Type String - compartment
Id BooleanIn Subtree - encryption
Observeds List<String> - Encryption algorithm observed for the TDE object.
- encryption
Status String - filters
List<Get
Crypto Assessment Tde Objects Filter> - quantum
Readiness String - Quantum-readiness classification for the observed TDE object encryption.
- target
Id String - OCID of the target database associated with the TDE object.
- target
Ids List<String>
- compartment
Id string - crypto
Assessment GetTde Object Collections Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection[] - The list of crypto_assessment_tde_object_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- object
Type string - access
Level string - assessment
Id string - OCID of the crypto assessment that discovered the TDE object.
- assessment
Type string - compartment
Id booleanIn Subtree - encryption
Observeds string[] - Encryption algorithm observed for the TDE object.
- encryption
Status string - filters
Get
Crypto Assessment Tde Objects Filter[] - quantum
Readiness string - Quantum-readiness classification for the observed TDE object encryption.
- target
Id string - OCID of the target database associated with the TDE object.
- target
Ids string[]
- compartment_
id str - crypto_
assessment_ Sequence[Gettde_ object_ collections Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection] - The list of crypto_assessment_tde_object_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- object_
type str - access_
level str - assessment_
id str - OCID of the crypto assessment that discovered the TDE object.
- assessment_
type str - compartment_
id_ boolin_ subtree - encryption_
observeds Sequence[str] - Encryption algorithm observed for the TDE object.
- encryption_
status str - filters
Sequence[Get
Crypto Assessment Tde Objects Filter] - quantum_
readiness str - Quantum-readiness classification for the observed TDE object encryption.
- target_
id str - OCID of the target database associated with the TDE object.
- target_
ids Sequence[str]
- compartment
Id String - crypto
Assessment List<Property Map>Tde Object Collections - The list of crypto_assessment_tde_object_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- object
Type String - access
Level String - assessment
Id String - OCID of the crypto assessment that discovered the TDE object.
- assessment
Type String - compartment
Id BooleanIn Subtree - encryption
Observeds List<String> - Encryption algorithm observed for the TDE object.
- encryption
Status String - filters List<Property Map>
- quantum
Readiness String - Quantum-readiness classification for the observed TDE object encryption.
- target
Id String - OCID of the target database associated with the TDE object.
- target
Ids List<String>
Supporting Types
GetCryptoAssessmentTdeObjectsCryptoAssessmentTdeObjectCollection
- Items
List<Get
Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection Item> - TDE object encryption summary items.
- Items
[]Get
Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection Item - TDE object encryption summary items.
- items list(object)
- TDE object encryption summary items.
- items
List<Get
Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection Item> - TDE object encryption summary items.
- items
Get
Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection Item[] - TDE object encryption summary items.
- items
Sequence[Get
Crypto Assessment Tde Objects Crypto Assessment Tde Object Collection Item] - TDE object encryption summary items.
- items List<Property Map>
- TDE object encryption summary items.
GetCryptoAssessmentTdeObjectsCryptoAssessmentTdeObjectCollectionItem
- Assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- Column
Name string - Name of the encrypted column. This field is returned when objectType is COLUMN.
- Encryption
Observed string - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- Mode
Observed string - Encryption mode observed for the tablespace. This field is returned when objectType is TABLESPACE.
- Quantum
Readiness string - Filters TDE object summary rows by quantum-readiness category.
- Schema
Name string - Name of the schema containing the encrypted column. This field is returned when objectType is COLUMN.
- Size
In doubleGbs - Tablespace size in gigabytes. This field is returned when objectType is TABLESPACE.
- Table
Name string - Name of the table containing the encrypted column. This field is returned when objectType is COLUMN.
- Tablespace
Name string - Name of the tablespace. This field is returned when objectType is TABLESPACE.
- Target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- Time
Last stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- Assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- Column
Name string - Name of the encrypted column. This field is returned when objectType is COLUMN.
- Encryption
Observed string - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- Mode
Observed string - Encryption mode observed for the tablespace. This field is returned when objectType is TABLESPACE.
- Quantum
Readiness string - Filters TDE object summary rows by quantum-readiness category.
- Schema
Name string - Name of the schema containing the encrypted column. This field is returned when objectType is COLUMN.
- Size
In float64Gbs - Tablespace size in gigabytes. This field is returned when objectType is TABLESPACE.
- Table
Name string - Name of the table containing the encrypted column. This field is returned when objectType is COLUMN.
- Tablespace
Name string - Name of the tablespace. This field is returned when objectType is TABLESPACE.
- Target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- Time
Last stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- assessment_
id string - A filter to return only resources associated with the specified crypto assessment OCID.
- column_
name string - Name of the encrypted column. This field is returned when objectType is COLUMN.
- encryption_
observed string - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- mode_
observed string - Encryption mode observed for the tablespace. This field is returned when objectType is TABLESPACE.
- quantum_
readiness string - Filters TDE object summary rows by quantum-readiness category.
- schema_
name string - Name of the schema containing the encrypted column. This field is returned when objectType is COLUMN.
- size_
in_ numbergbs - Tablespace size in gigabytes. This field is returned when objectType is TABLESPACE.
- table_
name string - Name of the table containing the encrypted column. This field is returned when objectType is COLUMN.
- tablespace_
name string - Name of the tablespace. This field is returned when objectType is TABLESPACE.
- target_
id string - A filter to return only inventory rows associated with the specified target OCID.
- time_
last_ stringassessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- assessment
Id String - A filter to return only resources associated with the specified crypto assessment OCID.
- column
Name String - Name of the encrypted column. This field is returned when objectType is COLUMN.
- encryption
Observed String - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- mode
Observed String - Encryption mode observed for the tablespace. This field is returned when objectType is TABLESPACE.
- quantum
Readiness String - Filters TDE object summary rows by quantum-readiness category.
- schema
Name String - Name of the schema containing the encrypted column. This field is returned when objectType is COLUMN.
- size
In DoubleGbs - Tablespace size in gigabytes. This field is returned when objectType is TABLESPACE.
- table
Name String - Name of the table containing the encrypted column. This field is returned when objectType is COLUMN.
- tablespace
Name String - Name of the tablespace. This field is returned when objectType is TABLESPACE.
- target
Id String - A filter to return only inventory rows associated with the specified target OCID.
- time
Last StringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- assessment
Id string - A filter to return only resources associated with the specified crypto assessment OCID.
- column
Name string - Name of the encrypted column. This field is returned when objectType is COLUMN.
- encryption
Observed string - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- mode
Observed string - Encryption mode observed for the tablespace. This field is returned when objectType is TABLESPACE.
- quantum
Readiness string - Filters TDE object summary rows by quantum-readiness category.
- schema
Name string - Name of the schema containing the encrypted column. This field is returned when objectType is COLUMN.
- size
In numberGbs - Tablespace size in gigabytes. This field is returned when objectType is TABLESPACE.
- table
Name string - Name of the table containing the encrypted column. This field is returned when objectType is COLUMN.
- tablespace
Name string - Name of the tablespace. This field is returned when objectType is TABLESPACE.
- target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- time
Last stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- assessment_
id str - A filter to return only resources associated with the specified crypto assessment OCID.
- column_
name str - Name of the encrypted column. This field is returned when objectType is COLUMN.
- encryption_
observed str - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- mode_
observed str - Encryption mode observed for the tablespace. This field is returned when objectType is TABLESPACE.
- quantum_
readiness str - Filters TDE object summary rows by quantum-readiness category.
- schema_
name str - Name of the schema containing the encrypted column. This field is returned when objectType is COLUMN.
- size_
in_ floatgbs - Tablespace size in gigabytes. This field is returned when objectType is TABLESPACE.
- table_
name str - Name of the table containing the encrypted column. This field is returned when objectType is COLUMN.
- tablespace_
name str - Name of the tablespace. This field is returned when objectType is TABLESPACE.
- target_
id str - A filter to return only inventory rows associated with the specified target OCID.
- time_
last_ strassessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- assessment
Id String - A filter to return only resources associated with the specified crypto assessment OCID.
- column
Name String - Name of the encrypted column. This field is returned when objectType is COLUMN.
- encryption
Observed String - Filters TDE object summary rows by any of the specified observed encryption algorithms.
- mode
Observed String - Encryption mode observed for the tablespace. This field is returned when objectType is TABLESPACE.
- quantum
Readiness String - Filters TDE object summary rows by quantum-readiness category.
- schema
Name String - Name of the schema containing the encrypted column. This field is returned when objectType is COLUMN.
- size
In NumberGbs - Tablespace size in gigabytes. This field is returned when objectType is TABLESPACE.
- table
Name String - Name of the table containing the encrypted column. This field is returned when objectType is COLUMN.
- tablespace
Name String - Name of the tablespace. This field is returned when objectType is TABLESPACE.
- target
Id String - A filter to return only inventory rows associated with the specified target OCID.
- time
Last StringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
GetCryptoAssessmentTdeObjectsFilter
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