1. Registry
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. DataSafe
  6. getCryptoAssessments
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
oci logo oci logo
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi

    This data source provides the list of Crypto Assessments in Oracle Cloud Infrastructure Data Safe service.

    Gets a list of crypto assessments with filtering and pagination support.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCryptoAssessments = oci.datasafe.getCryptoAssessments({
        compartmentId: compartmentId,
        accessLevel: cryptoAssessmentAccessLevel,
        assessmentId: testAssessment.id,
        compartmentIdInSubtree: cryptoAssessmentCompartmentIdInSubtree === "true",
        displayName: cryptoAssessmentDisplayName,
        isAssessmentScheduled: cryptoAssessmentIsAssessmentScheduled === "true",
        postureCategories: cryptoAssessmentPostureCategory,
        state: cryptoAssessmentState,
        targetDatabaseGroupId: testTargetDatabaseGroup.id,
        targetId: testTarget.id,
        targetIds: cryptoAssessmentTargetIds,
        targetType: cryptoAssessmentTargetType,
        type: cryptoAssessmentType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_crypto_assessments = oci.datasafe.get_crypto_assessments(compartment_id=compartment_id,
        access_level=crypto_assessment_access_level,
        assessment_id=test_assessment["id"],
        compartment_id_in_subtree=crypto_assessment_compartment_id_in_subtree == "true",
        display_name=crypto_assessment_display_name,
        is_assessment_scheduled=crypto_assessment_is_assessment_scheduled == "true",
        posture_categories=crypto_assessment_posture_category,
        state=crypto_assessment_state,
        target_database_group_id=test_target_database_group["id"],
        target_id=test_target["id"],
        target_ids=crypto_assessment_target_ids,
        target_type=crypto_assessment_target_type,
        type=crypto_assessment_type)
    
    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.GetCryptoAssessments(ctx, &datasafe.GetCryptoAssessmentsArgs{
    			CompartmentId:          compartmentId,
    			AccessLevel:            pulumi.StringRef(cryptoAssessmentAccessLevel),
    			AssessmentId:           pulumi.StringRef(testAssessment.Id),
    			CompartmentIdInSubtree: pulumi.BoolRef(cryptoAssessmentCompartmentIdInSubtree),
    			DisplayName:            pulumi.StringRef(cryptoAssessmentDisplayName),
    			IsAssessmentScheduled:  pulumi.BoolRef(cryptoAssessmentIsAssessmentScheduled),
    			PostureCategories:      pulumi.ToArray(cryptoAssessmentPostureCategory),
    			State:                  pulumi.StringRef(cryptoAssessmentState),
    			TargetDatabaseGroupId:  pulumi.StringRef(testTargetDatabaseGroup.Id),
    			TargetId:               pulumi.StringRef(testTarget.Id),
    			TargetIds:              pulumi.ToArray(cryptoAssessmentTargetIds),
    			TargetType:             pulumi.StringRef(cryptoAssessmentTargetType),
    			Type:                   pulumi.StringRef(cryptoAssessmentType),
    		}, 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 testCryptoAssessments = Oci.DataSafe.GetCryptoAssessments.Invoke(new()
        {
            CompartmentId = compartmentId,
            AccessLevel = cryptoAssessmentAccessLevel,
            AssessmentId = testAssessment.Id,
            CompartmentIdInSubtree = cryptoAssessmentCompartmentIdInSubtree,
            DisplayName = cryptoAssessmentDisplayName,
            IsAssessmentScheduled = cryptoAssessmentIsAssessmentScheduled,
            PostureCategories = cryptoAssessmentPostureCategory,
            State = cryptoAssessmentState,
            TargetDatabaseGroupId = testTargetDatabaseGroup.Id,
            TargetId = testTarget.Id,
            TargetIds = cryptoAssessmentTargetIds,
            TargetType = cryptoAssessmentTargetType,
            Type = cryptoAssessmentType,
        });
    
    });
    
    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.GetCryptoAssessmentsArgs;
    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 testCryptoAssessments = DataSafeFunctions.getCryptoAssessments(GetCryptoAssessmentsArgs.builder()
                .compartmentId(compartmentId)
                .accessLevel(cryptoAssessmentAccessLevel)
                .assessmentId(testAssessment.id())
                .compartmentIdInSubtree(cryptoAssessmentCompartmentIdInSubtree)
                .displayName(cryptoAssessmentDisplayName)
                .isAssessmentScheduled(cryptoAssessmentIsAssessmentScheduled)
                .postureCategories(cryptoAssessmentPostureCategory)
                .state(cryptoAssessmentState)
                .targetDatabaseGroupId(testTargetDatabaseGroup.id())
                .targetId(testTarget.id())
                .targetIds(cryptoAssessmentTargetIds)
                .targetType(cryptoAssessmentTargetType)
                .type(cryptoAssessmentType)
                .build());
    
        }
    }
    
    variables:
      testCryptoAssessments:
        fn::invoke:
          function: oci:DataSafe:getCryptoAssessments
          arguments:
            compartmentId: ${compartmentId}
            accessLevel: ${cryptoAssessmentAccessLevel}
            assessmentId: ${testAssessment.id}
            compartmentIdInSubtree: ${cryptoAssessmentCompartmentIdInSubtree}
            displayName: ${cryptoAssessmentDisplayName}
            isAssessmentScheduled: ${cryptoAssessmentIsAssessmentScheduled}
            postureCategories: ${cryptoAssessmentPostureCategory}
            state: ${cryptoAssessmentState}
            targetDatabaseGroupId: ${testTargetDatabaseGroup.id}
            targetId: ${testTarget.id}
            targetIds: ${cryptoAssessmentTargetIds}
            targetType: ${cryptoAssessmentTargetType}
            type: ${cryptoAssessmentType}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_datasafe_getcryptoassessments" "testCryptoAssessments" {
      compartment_id            = compartmentId
      access_level              = cryptoAssessmentAccessLevel
      assessment_id             = testAssessment.id
      compartment_id_in_subtree = cryptoAssessmentCompartmentIdInSubtree
      display_name              = cryptoAssessmentDisplayName
      is_assessment_scheduled   = cryptoAssessmentIsAssessmentScheduled
      posture_categories        = cryptoAssessmentPostureCategory
      state                     = cryptoAssessmentState
      target_database_group_id  = testTargetDatabaseGroup.id
      target_id                 = testTarget.id
      target_ids                = cryptoAssessmentTargetIds
      target_type               = cryptoAssessmentTargetType
      type                      = cryptoAssessmentType
    }
    

    Using getCryptoAssessments

    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 getCryptoAssessments(args: GetCryptoAssessmentsArgs, opts?: InvokeOptions): Promise<GetCryptoAssessmentsResult>
    function getCryptoAssessmentsOutput(args: GetCryptoAssessmentsOutputArgs, opts?: InvokeOutputOptions): Output<GetCryptoAssessmentsResult>
    def get_crypto_assessments(access_level: Optional[str] = None,
                               assessment_id: Optional[str] = None,
                               compartment_id: Optional[str] = None,
                               compartment_id_in_subtree: Optional[bool] = None,
                               display_name: Optional[str] = None,
                               filters: Optional[Sequence[GetCryptoAssessmentsFilter]] = None,
                               is_assessment_scheduled: Optional[bool] = None,
                               posture_categories: Optional[Sequence[str]] = None,
                               state: Optional[str] = None,
                               target_database_group_id: Optional[str] = None,
                               target_id: Optional[str] = None,
                               target_ids: Optional[Sequence[str]] = None,
                               target_type: Optional[str] = None,
                               type: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetCryptoAssessmentsResult
    def get_crypto_assessments_output(access_level: pulumi.Input[Optional[str]] = None,
                               assessment_id: pulumi.Input[Optional[str]] = None,
                               compartment_id: pulumi.Input[Optional[str]] = None,
                               compartment_id_in_subtree: pulumi.Input[Optional[bool]] = None,
                               display_name: pulumi.Input[Optional[str]] = None,
                               filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetCryptoAssessmentsFilterArgs]]]] = None,
                               is_assessment_scheduled: pulumi.Input[Optional[bool]] = None,
                               posture_categories: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                               state: pulumi.Input[Optional[str]] = None,
                               target_database_group_id: pulumi.Input[Optional[str]] = None,
                               target_id: pulumi.Input[Optional[str]] = None,
                               target_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                               target_type: pulumi.Input[Optional[str]] = None,
                               type: pulumi.Input[Optional[str]] = None,
                               opts: Optional[InvokeOutputOptions] = None) -> Output[GetCryptoAssessmentsResult]
    func GetCryptoAssessments(ctx *Context, args *GetCryptoAssessmentsArgs, opts ...InvokeOption) (*GetCryptoAssessmentsResult, error)
    func GetCryptoAssessmentsOutput(ctx *Context, args *GetCryptoAssessmentsOutputArgs, opts ...InvokeOption) GetCryptoAssessmentsResultOutput

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

    public static class GetCryptoAssessments 
    {
        public static Task<GetCryptoAssessmentsResult> InvokeAsync(GetCryptoAssessmentsArgs args, InvokeOptions? opts = null)
        public static Output<GetCryptoAssessmentsResult> Invoke(GetCryptoAssessmentsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetCryptoAssessmentsResult> Invoke(GetCryptoAssessmentsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetCryptoAssessmentsResult> getCryptoAssessments(GetCryptoAssessmentsArgs args, InvokeOptions options)
    public static Output<GetCryptoAssessmentsResult> getCryptoAssessments(GetCryptoAssessmentsArgs args, InvokeOptions options)
    public static Output<GetCryptoAssessmentsResult> getCryptoAssessments(GetCryptoAssessmentsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: oci:DataSafe/getCryptoAssessments:getCryptoAssessments
      arguments:
        # arguments dictionary
    data "oci_data_safe_get_crypto_assessments" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    AssessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    DisplayName string
    A filter to return only resources that match the specified display name.
    Filters List<GetCryptoAssessmentsFilter>
    IsAssessmentScheduled bool
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    PostureCategories List<string>
    A filter to return only crypto assessments that match any of the specified posture categories.
    State string
    A filter to return only resources that match the specified lifecycle state.
    TargetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    TargetId string
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    TargetIds List<string>
    A filter to return only resources associated with any of the specified target OCIDs.
    TargetType string
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    Type string
    A filter to return only crypto assessments that match the specified type.
    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    AssessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    DisplayName string
    A filter to return only resources that match the specified display name.
    Filters []GetCryptoAssessmentsFilter
    IsAssessmentScheduled bool
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    PostureCategories []string
    A filter to return only crypto assessments that match any of the specified posture categories.
    State string
    A filter to return only resources that match the specified lifecycle state.
    TargetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    TargetId string
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    TargetIds []string
    A filter to return only resources associated with any of the specified target OCIDs.
    TargetType string
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    Type string
    A filter to return only crypto assessments that match the specified type.
    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.
    compartment_id_in_subtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    display_name string
    A filter to return only resources that match the specified display name.
    filters list(object)
    is_assessment_scheduled bool
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    posture_categories list(string)
    A filter to return only crypto assessments that match any of the specified posture categories.
    state string
    A filter to return only resources that match the specified lifecycle state.
    target_database_group_id string
    A filter to return the target database group that matches the specified OCID.
    target_id string
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    target_ids list(string)
    A filter to return only resources associated with any of the specified target OCIDs.
    target_type string
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    type string
    A filter to return only crypto assessments that match the specified type.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    assessmentId String
    A filter to return only resources associated with the specified crypto assessment OCID.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName String
    A filter to return only resources that match the specified display name.
    filters List<GetCryptoAssessmentsFilter>
    isAssessmentScheduled Boolean
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    postureCategories List<String>
    A filter to return only crypto assessments that match any of the specified posture categories.
    state String
    A filter to return only resources that match the specified lifecycle state.
    targetDatabaseGroupId String
    A filter to return the target database group that matches the specified OCID.
    targetId String
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    targetIds List<String>
    A filter to return only resources associated with any of the specified target OCIDs.
    targetType String
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    type String
    A filter to return only crypto assessments that match the specified type.
    compartmentId string
    A filter to return only resources that match the specified compartment OCID.
    accessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    assessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    compartmentIdInSubtree boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName string
    A filter to return only resources that match the specified display name.
    filters GetCryptoAssessmentsFilter[]
    isAssessmentScheduled boolean
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    postureCategories string[]
    A filter to return only crypto assessments that match any of the specified posture categories.
    state string
    A filter to return only resources that match the specified lifecycle state.
    targetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    targetId string
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    targetIds string[]
    A filter to return only resources associated with any of the specified target OCIDs.
    targetType string
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    type string
    A filter to return only crypto assessments that match the specified type.
    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.
    compartment_id_in_subtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    display_name str
    A filter to return only resources that match the specified display name.
    filters Sequence[GetCryptoAssessmentsFilter]
    is_assessment_scheduled bool
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    posture_categories Sequence[str]
    A filter to return only crypto assessments that match any of the specified posture categories.
    state str
    A filter to return only resources that match the specified lifecycle state.
    target_database_group_id str
    A filter to return the target database group that matches the specified OCID.
    target_id str
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    target_ids Sequence[str]
    A filter to return only resources associated with any of the specified target OCIDs.
    target_type str
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    type str
    A filter to return only crypto assessments that match the specified type.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    assessmentId String
    A filter to return only resources associated with the specified crypto assessment OCID.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName String
    A filter to return only resources that match the specified display name.
    filters List<Property Map>
    isAssessmentScheduled Boolean
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    postureCategories List<String>
    A filter to return only crypto assessments that match any of the specified posture categories.
    state String
    A filter to return only resources that match the specified lifecycle state.
    targetDatabaseGroupId String
    A filter to return the target database group that matches the specified OCID.
    targetId String
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    targetIds List<String>
    A filter to return only resources associated with any of the specified target OCIDs.
    targetType String
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    type String
    A filter to return only crypto assessments that match the specified type.

    getCryptoAssessments Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains the crypto assessment.
    CryptoAssessmentCollections List<GetCryptoAssessmentsCryptoAssessmentCollection>
    The list of crypto_assessment_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    AssessmentId string
    CompartmentIdInSubtree bool
    DisplayName string
    The display name of the crypto assessment.
    Filters List<GetCryptoAssessmentsFilter>
    IsAssessmentScheduled bool
    Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
    PostureCategories List<string>
    Overall posture category for the crypto assessment.
    State string
    The current lifecycle state of the crypto assessment.
    TargetDatabaseGroupId string
    The OCID of the target database group. This is returned when targetType is TARGET_DATABASE_GROUP.
    TargetId string
    The OCID of the target database.
    TargetIds List<string>
    TargetType string
    The target type of the crypto assessment.
    Type string
    The type of this crypto assessment.
    CompartmentId string
    The OCID of the compartment that contains the crypto assessment.
    CryptoAssessmentCollections []GetCryptoAssessmentsCryptoAssessmentCollection
    The list of crypto_assessment_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    AssessmentId string
    CompartmentIdInSubtree bool
    DisplayName string
    The display name of the crypto assessment.
    Filters []GetCryptoAssessmentsFilter
    IsAssessmentScheduled bool
    Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
    PostureCategories []string
    Overall posture category for the crypto assessment.
    State string
    The current lifecycle state of the crypto assessment.
    TargetDatabaseGroupId string
    The OCID of the target database group. This is returned when targetType is TARGET_DATABASE_GROUP.
    TargetId string
    The OCID of the target database.
    TargetIds []string
    TargetType string
    The target type of the crypto assessment.
    Type string
    The type of this crypto assessment.
    compartment_id string
    The OCID of the compartment that contains the crypto assessment.
    crypto_assessment_collections list(object)
    The list of crypto_assessment_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    access_level string
    assessment_id string
    compartment_id_in_subtree bool
    display_name string
    The display name of the crypto assessment.
    filters list(object)
    is_assessment_scheduled bool
    Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
    posture_categories list(string)
    Overall posture category for the crypto assessment.
    state string
    The current lifecycle state of the crypto assessment.
    target_database_group_id string
    The OCID of the target database group. This is returned when targetType is TARGET_DATABASE_GROUP.
    target_id string
    The OCID of the target database.
    target_ids list(string)
    target_type string
    The target type of the crypto assessment.
    type string
    The type of this crypto assessment.
    compartmentId String
    The OCID of the compartment that contains the crypto assessment.
    cryptoAssessmentCollections List<GetCryptoAssessmentsCryptoAssessmentCollection>
    The list of crypto_assessment_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    assessmentId String
    compartmentIdInSubtree Boolean
    displayName String
    The display name of the crypto assessment.
    filters List<GetCryptoAssessmentsFilter>
    isAssessmentScheduled Boolean
    Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
    postureCategories List<String>
    Overall posture category for the crypto assessment.
    state String
    The current lifecycle state of the crypto assessment.
    targetDatabaseGroupId String
    The OCID of the target database group. This is returned when targetType is TARGET_DATABASE_GROUP.
    targetId String
    The OCID of the target database.
    targetIds List<String>
    targetType String
    The target type of the crypto assessment.
    type String
    The type of this crypto assessment.
    compartmentId string
    The OCID of the compartment that contains the crypto assessment.
    cryptoAssessmentCollections GetCryptoAssessmentsCryptoAssessmentCollection[]
    The list of crypto_assessment_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    accessLevel string
    assessmentId string
    compartmentIdInSubtree boolean
    displayName string
    The display name of the crypto assessment.
    filters GetCryptoAssessmentsFilter[]
    isAssessmentScheduled boolean
    Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
    postureCategories string[]
    Overall posture category for the crypto assessment.
    state string
    The current lifecycle state of the crypto assessment.
    targetDatabaseGroupId string
    The OCID of the target database group. This is returned when targetType is TARGET_DATABASE_GROUP.
    targetId string
    The OCID of the target database.
    targetIds string[]
    targetType string
    The target type of the crypto assessment.
    type string
    The type of this crypto assessment.
    compartment_id str
    The OCID of the compartment that contains the crypto assessment.
    crypto_assessment_collections Sequence[GetCryptoAssessmentsCryptoAssessmentCollection]
    The list of crypto_assessment_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    access_level str
    assessment_id str
    compartment_id_in_subtree bool
    display_name str
    The display name of the crypto assessment.
    filters Sequence[GetCryptoAssessmentsFilter]
    is_assessment_scheduled bool
    Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
    posture_categories Sequence[str]
    Overall posture category for the crypto assessment.
    state str
    The current lifecycle state of the crypto assessment.
    target_database_group_id str
    The OCID of the target database group. This is returned when targetType is TARGET_DATABASE_GROUP.
    target_id str
    The OCID of the target database.
    target_ids Sequence[str]
    target_type str
    The target type of the crypto assessment.
    type str
    The type of this crypto assessment.
    compartmentId String
    The OCID of the compartment that contains the crypto assessment.
    cryptoAssessmentCollections List<Property Map>
    The list of crypto_assessment_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    assessmentId String
    compartmentIdInSubtree Boolean
    displayName String
    The display name of the crypto assessment.
    filters List<Property Map>
    isAssessmentScheduled Boolean
    Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
    postureCategories List<String>
    Overall posture category for the crypto assessment.
    state String
    The current lifecycle state of the crypto assessment.
    targetDatabaseGroupId String
    The OCID of the target database group. This is returned when targetType is TARGET_DATABASE_GROUP.
    targetId String
    The OCID of the target database.
    targetIds List<String>
    targetType String
    The target type of the crypto assessment.
    type String
    The type of this crypto assessment.

    Supporting Types

    GetCryptoAssessmentsCryptoAssessmentCollection

    GetCryptoAssessmentsCryptoAssessmentCollectionItem

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    CryptoAssessmentId string
    CryptoPostures List<GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPosture>
    Cryptographic posture details captured by the assessment.
    CryptoProvider string
    Cryptographic provider and version information observed on the target.
    DatabaseArchitecture string
    The architecture of the assessed target database.
    DatabaseName string
    The name of the assessed target database.
    DatabaseVersion string
    The version of the assessed target database.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    Description string
    The description of the crypto assessment.
    DisplayName string
    A filter to return only resources that match the specified display name.
    FreeformTags 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 crypto assessment.
    IsAssessmentScheduled bool
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    IssueCount int
    Number of crypto issues detected in this assessment.
    LifecycleDetails string
    Details about the current lifecycle state of the crypto assessment.
    PostureCategory string
    A filter to return only crypto assessments that match any of the specified posture categories.
    Schedule string
    The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
    State string
    A filter to return only resources that match the specified lifecycle state.
    SystemTags 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"}
    TargetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    TargetId string
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    TargetType string
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    TargetsWithIssuesCount int
    Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
    TimeCreated string
    The date and time the crypto assessment was created, in RFC3339 format.
    TimeLastAssessed string
    The date and time the crypto posture was last assessed, in RFC3339 format.
    TimeUpdated string
    The date and time the crypto assessment was last updated, in RFC3339 format.
    TriggeredBy string
    The actor that created the assessment.
    Type string
    A filter to return only crypto assessments that match the specified type.
    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    CryptoAssessmentId string
    CryptoPostures []GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPosture
    Cryptographic posture details captured by the assessment.
    CryptoProvider string
    Cryptographic provider and version information observed on the target.
    DatabaseArchitecture string
    The architecture of the assessed target database.
    DatabaseName string
    The name of the assessed target database.
    DatabaseVersion string
    The version of the assessed target database.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    Description string
    The description of the crypto assessment.
    DisplayName string
    A filter to return only resources that match the specified display name.
    FreeformTags 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 crypto assessment.
    IsAssessmentScheduled bool
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    IssueCount int
    Number of crypto issues detected in this assessment.
    LifecycleDetails string
    Details about the current lifecycle state of the crypto assessment.
    PostureCategory string
    A filter to return only crypto assessments that match any of the specified posture categories.
    Schedule string
    The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
    State string
    A filter to return only resources that match the specified lifecycle state.
    SystemTags 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"}
    TargetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    TargetId string
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    TargetType string
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    TargetsWithIssuesCount int
    Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
    TimeCreated string
    The date and time the crypto assessment was created, in RFC3339 format.
    TimeLastAssessed string
    The date and time the crypto posture was last assessed, in RFC3339 format.
    TimeUpdated string
    The date and time the crypto assessment was last updated, in RFC3339 format.
    TriggeredBy string
    The actor that created the assessment.
    Type string
    A filter to return only crypto assessments that match the specified type.
    compartment_id string
    A filter to return only resources that match the specified compartment OCID.
    crypto_assessment_id string
    crypto_postures list(object)
    Cryptographic posture details captured by the assessment.
    crypto_provider string
    Cryptographic provider and version information observed on the target.
    database_architecture string
    The architecture of the assessed target database.
    database_name string
    The name of the assessed target database.
    database_version string
    The version of the assessed target database.
    defined_tags map(string)
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description string
    The description of the crypto assessment.
    display_name string
    A filter to return only resources that match the specified display name.
    freeform_tags 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 crypto assessment.
    is_assessment_scheduled bool
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    issue_count number
    Number of crypto issues detected in this assessment.
    lifecycle_details string
    Details about the current lifecycle state of the crypto assessment.
    posture_category string
    A filter to return only crypto assessments that match any of the specified posture categories.
    schedule string
    The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
    state string
    A filter to return only resources that match the specified lifecycle state.
    system_tags 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_database_group_id string
    A filter to return the target database group that matches the specified OCID.
    target_id string
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    target_type string
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    targets_with_issues_count number
    Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
    time_created string
    The date and time the crypto assessment was created, in RFC3339 format.
    time_last_assessed string
    The date and time the crypto posture was last assessed, in RFC3339 format.
    time_updated string
    The date and time the crypto assessment was last updated, in RFC3339 format.
    triggered_by string
    The actor that created the assessment.
    type string
    A filter to return only crypto assessments that match the specified type.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    cryptoAssessmentId String
    cryptoPostures List<GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPosture>
    Cryptographic posture details captured by the assessment.
    cryptoProvider String
    Cryptographic provider and version information observed on the target.
    databaseArchitecture String
    The architecture of the assessed target database.
    databaseName String
    The name of the assessed target database.
    databaseVersion String
    The version of the assessed target database.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description String
    The description of the crypto assessment.
    displayName String
    A filter to return only resources that match the specified display name.
    freeformTags 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 crypto assessment.
    isAssessmentScheduled Boolean
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    issueCount Integer
    Number of crypto issues detected in this assessment.
    lifecycleDetails String
    Details about the current lifecycle state of the crypto assessment.
    postureCategory String
    A filter to return only crypto assessments that match any of the specified posture categories.
    schedule String
    The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
    state String
    A filter to return only resources that match the specified lifecycle state.
    systemTags 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"}
    targetDatabaseGroupId String
    A filter to return the target database group that matches the specified OCID.
    targetId String
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    targetType String
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    targetsWithIssuesCount Integer
    Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
    timeCreated String
    The date and time the crypto assessment was created, in RFC3339 format.
    timeLastAssessed String
    The date and time the crypto posture was last assessed, in RFC3339 format.
    timeUpdated String
    The date and time the crypto assessment was last updated, in RFC3339 format.
    triggeredBy String
    The actor that created the assessment.
    type String
    A filter to return only crypto assessments that match the specified type.
    compartmentId string
    A filter to return only resources that match the specified compartment OCID.
    cryptoAssessmentId string
    cryptoPostures GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPosture[]
    Cryptographic posture details captured by the assessment.
    cryptoProvider string
    Cryptographic provider and version information observed on the target.
    databaseArchitecture string
    The architecture of the assessed target database.
    databaseName string
    The name of the assessed target database.
    databaseVersion string
    The version of the assessed target database.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description string
    The description of the crypto assessment.
    displayName string
    A filter to return only resources that match the specified display name.
    freeformTags {[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 crypto assessment.
    isAssessmentScheduled boolean
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    issueCount number
    Number of crypto issues detected in this assessment.
    lifecycleDetails string
    Details about the current lifecycle state of the crypto assessment.
    postureCategory string
    A filter to return only crypto assessments that match any of the specified posture categories.
    schedule string
    The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
    state string
    A filter to return only resources that match the specified lifecycle state.
    systemTags {[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"}
    targetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    targetId string
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    targetType string
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    targetsWithIssuesCount number
    Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
    timeCreated string
    The date and time the crypto assessment was created, in RFC3339 format.
    timeLastAssessed string
    The date and time the crypto posture was last assessed, in RFC3339 format.
    timeUpdated string
    The date and time the crypto assessment was last updated, in RFC3339 format.
    triggeredBy string
    The actor that created the assessment.
    type string
    A filter to return only crypto assessments that match the specified type.
    compartment_id str
    A filter to return only resources that match the specified compartment OCID.
    crypto_assessment_id str
    crypto_postures Sequence[GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPosture]
    Cryptographic posture details captured by the assessment.
    crypto_provider str
    Cryptographic provider and version information observed on the target.
    database_architecture str
    The architecture of the assessed target database.
    database_name str
    The name of the assessed target database.
    database_version str
    The version of the assessed target database.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description str
    The description of the crypto assessment.
    display_name str
    A filter to return only resources that match the specified display name.
    freeform_tags 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 crypto assessment.
    is_assessment_scheduled bool
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    issue_count int
    Number of crypto issues detected in this assessment.
    lifecycle_details str
    Details about the current lifecycle state of the crypto assessment.
    posture_category str
    A filter to return only crypto assessments that match any of the specified posture categories.
    schedule str
    The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
    state str
    A filter to return only resources that match the specified lifecycle state.
    system_tags 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_database_group_id str
    A filter to return the target database group that matches the specified OCID.
    target_id str
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    target_type str
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    targets_with_issues_count int
    Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
    time_created str
    The date and time the crypto assessment was created, in RFC3339 format.
    time_last_assessed str
    The date and time the crypto posture was last assessed, in RFC3339 format.
    time_updated str
    The date and time the crypto assessment was last updated, in RFC3339 format.
    triggered_by str
    The actor that created the assessment.
    type str
    A filter to return only crypto assessments that match the specified type.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    cryptoAssessmentId String
    cryptoPostures List<Property Map>
    Cryptographic posture details captured by the assessment.
    cryptoProvider String
    Cryptographic provider and version information observed on the target.
    databaseArchitecture String
    The architecture of the assessed target database.
    databaseName String
    The name of the assessed target database.
    databaseVersion String
    The version of the assessed target database.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description String
    The description of the crypto assessment.
    displayName String
    A filter to return only resources that match the specified display name.
    freeformTags 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 crypto assessment.
    isAssessmentScheduled Boolean
    A filter to return only crypto assessments whose scheduled execution state matches the specified value.
    issueCount Number
    Number of crypto issues detected in this assessment.
    lifecycleDetails String
    Details about the current lifecycle state of the crypto assessment.
    postureCategory String
    A filter to return only crypto assessments that match any of the specified posture categories.
    schedule String
    The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
    state String
    A filter to return only resources that match the specified lifecycle state.
    systemTags 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"}
    targetDatabaseGroupId String
    A filter to return the target database group that matches the specified OCID.
    targetId String
    A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
    targetType String
    A filter to return crypto assessments belonging to the specified target type. ListCryptoAssessments returns assessment rows; use targetDatabaseGroupId to list the underlying target database assessments for a group.
    targetsWithIssuesCount Number
    Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
    timeCreated String
    The date and time the crypto assessment was created, in RFC3339 format.
    timeLastAssessed String
    The date and time the crypto posture was last assessed, in RFC3339 format.
    timeUpdated String
    The date and time the crypto assessment was last updated, in RFC3339 format.
    triggeredBy String
    The actor that created the assessment.
    type String
    A filter to return only crypto assessments that match the specified type.

    GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPosture

    BackupStatus string
    Backup encryption status observed for the assessment.
    EncryptedBackupPiecesCount int
    Number of encrypted backup pieces.
    FipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    FipsStatus string
    Overall FIPS status for the assessment when the target uses common FIPS configuration.
    NetworkEncryptions List<string>
    Network encryption details.
    Nnes List<GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureNne>
    Native network encryption posture details.
    Tdes List<GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTde>
    Transparent data encryption posture details.
    Tls List<GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTl>
    TLS posture details.
    UnencryptedBackupPiecesCount int
    Number of unencrypted backup pieces.
    BackupStatus string
    Backup encryption status observed for the assessment.
    EncryptedBackupPiecesCount int
    Number of encrypted backup pieces.
    FipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    FipsStatus string
    Overall FIPS status for the assessment when the target uses common FIPS configuration.
    NetworkEncryptions []string
    Network encryption details.
    Nnes []GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureNne
    Native network encryption posture details.
    Tdes []GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTde
    Transparent data encryption posture details.
    Tls []GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTl
    TLS posture details.
    UnencryptedBackupPiecesCount int
    Number of unencrypted backup pieces.
    backup_status string
    Backup encryption status observed for the assessment.
    encrypted_backup_pieces_count number
    Number of encrypted backup pieces.
    fips_mode_configured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    fips_status string
    Overall FIPS status for the assessment when the target uses common FIPS configuration.
    network_encryptions list(string)
    Network encryption details.
    nnes list(object)
    Native network encryption posture details.
    tdes list(object)
    Transparent data encryption posture details.
    tls list(object)
    TLS posture details.
    unencrypted_backup_pieces_count number
    Number of unencrypted backup pieces.
    backupStatus String
    Backup encryption status observed for the assessment.
    encryptedBackupPiecesCount Integer
    Number of encrypted backup pieces.
    fipsModeConfigured String
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    fipsStatus String
    Overall FIPS status for the assessment when the target uses common FIPS configuration.
    networkEncryptions List<String>
    Network encryption details.
    nnes List<GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureNne>
    Native network encryption posture details.
    tdes List<GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTde>
    Transparent data encryption posture details.
    tls List<GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTl>
    TLS posture details.
    unencryptedBackupPiecesCount Integer
    Number of unencrypted backup pieces.
    backupStatus string
    Backup encryption status observed for the assessment.
    encryptedBackupPiecesCount number
    Number of encrypted backup pieces.
    fipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    fipsStatus string
    Overall FIPS status for the assessment when the target uses common FIPS configuration.
    networkEncryptions string[]
    Network encryption details.
    nnes GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureNne[]
    Native network encryption posture details.
    tdes GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTde[]
    Transparent data encryption posture details.
    tls GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTl[]
    TLS posture details.
    unencryptedBackupPiecesCount number
    Number of unencrypted backup pieces.
    backup_status str
    Backup encryption status observed for the assessment.
    encrypted_backup_pieces_count int
    Number of encrypted backup pieces.
    fips_mode_configured str
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    fips_status str
    Overall FIPS status for the assessment when the target uses common FIPS configuration.
    network_encryptions Sequence[str]
    Network encryption details.
    nnes Sequence[GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureNne]
    Native network encryption posture details.
    tdes Sequence[GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTde]
    Transparent data encryption posture details.
    tls Sequence[GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTl]
    TLS posture details.
    unencrypted_backup_pieces_count int
    Number of unencrypted backup pieces.
    backupStatus String
    Backup encryption status observed for the assessment.
    encryptedBackupPiecesCount Number
    Number of encrypted backup pieces.
    fipsModeConfigured String
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    fipsStatus String
    Overall FIPS status for the assessment when the target uses common FIPS configuration.
    networkEncryptions List<String>
    Network encryption details.
    nnes List<Property Map>
    Native network encryption posture details.
    tdes List<Property Map>
    Transparent data encryption posture details.
    tls List<Property Map>
    TLS posture details.
    unencryptedBackupPiecesCount Number
    Number of unencrypted backup pieces.

    GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureNne

    AreWeakOptionsAllowed string
    Indicates if weak NNE options are allowed.
    EncryptionConfigureds List<string>
    Configured TDE encryption algorithm.
    FipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    Integrities List<string>
    NNE integrity algorithm(s).
    KeyExchange string
    Observed NNE key exchange setting.
    QuantumReadiness string
    Quantum-readiness classification for TLS posture.
    ServerEncryption string
    Observed server-side encryption requirement.
    ServerIntegrities List<string>
    NNE server integrity algorithm(s).
    Status string
    TLS enablement status.
    AreWeakOptionsAllowed string
    Indicates if weak NNE options are allowed.
    EncryptionConfigureds []string
    Configured TDE encryption algorithm.
    FipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    Integrities []string
    NNE integrity algorithm(s).
    KeyExchange string
    Observed NNE key exchange setting.
    QuantumReadiness string
    Quantum-readiness classification for TLS posture.
    ServerEncryption string
    Observed server-side encryption requirement.
    ServerIntegrities []string
    NNE server integrity algorithm(s).
    Status string
    TLS enablement status.
    are_weak_options_allowed string
    Indicates if weak NNE options are allowed.
    encryption_configureds list(string)
    Configured TDE encryption algorithm.
    fips_mode_configured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrities list(string)
    NNE integrity algorithm(s).
    key_exchange string
    Observed NNE key exchange setting.
    quantum_readiness string
    Quantum-readiness classification for TLS posture.
    server_encryption string
    Observed server-side encryption requirement.
    server_integrities list(string)
    NNE server integrity algorithm(s).
    status string
    TLS enablement status.
    areWeakOptionsAllowed String
    Indicates if weak NNE options are allowed.
    encryptionConfigureds List<String>
    Configured TDE encryption algorithm.
    fipsModeConfigured String
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrities List<String>
    NNE integrity algorithm(s).
    keyExchange String
    Observed NNE key exchange setting.
    quantumReadiness String
    Quantum-readiness classification for TLS posture.
    serverEncryption String
    Observed server-side encryption requirement.
    serverIntegrities List<String>
    NNE server integrity algorithm(s).
    status String
    TLS enablement status.
    areWeakOptionsAllowed string
    Indicates if weak NNE options are allowed.
    encryptionConfigureds string[]
    Configured TDE encryption algorithm.
    fipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrities string[]
    NNE integrity algorithm(s).
    keyExchange string
    Observed NNE key exchange setting.
    quantumReadiness string
    Quantum-readiness classification for TLS posture.
    serverEncryption string
    Observed server-side encryption requirement.
    serverIntegrities string[]
    NNE server integrity algorithm(s).
    status string
    TLS enablement status.
    are_weak_options_allowed str
    Indicates if weak NNE options are allowed.
    encryption_configureds Sequence[str]
    Configured TDE encryption algorithm.
    fips_mode_configured str
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrities Sequence[str]
    NNE integrity algorithm(s).
    key_exchange str
    Observed NNE key exchange setting.
    quantum_readiness str
    Quantum-readiness classification for TLS posture.
    server_encryption str
    Observed server-side encryption requirement.
    server_integrities Sequence[str]
    NNE server integrity algorithm(s).
    status str
    TLS enablement status.
    areWeakOptionsAllowed String
    Indicates if weak NNE options are allowed.
    encryptionConfigureds List<String>
    Configured TDE encryption algorithm.
    fipsModeConfigured String
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrities List<String>
    NNE integrity algorithm(s).
    keyExchange String
    Observed NNE key exchange setting.
    quantumReadiness String
    Quantum-readiness classification for TLS posture.
    serverEncryption String
    Observed server-side encryption requirement.
    serverIntegrities List<String>
    NNE server integrity algorithm(s).
    status String
    TLS enablement status.

    GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTde

    DbCredentialsEncryptionObserved string
    Observed DB credentials encryption algorithm.
    EncryptedTablespacesCount int
    Number of encrypted tablespaces detected.
    EncryptionConfigureds List<string>
    Configured TDE encryption algorithm.
    FipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    IntegrityConfigureds List<string>
    Configured TDE integrity-related setting.
    KeyCacheStatus string
    The observed TDE key cache status.
    KeyStoreType string
    The observed TDE key store type.
    MasterKeyEncryptionAlgorithm string
    The observed encryption algorithm used by the master key.
    MasterKeyId string
    The observed TDE master key identifier.
    QuantumReadiness string
    Quantum-readiness classification for TLS posture.
    RedoEncryptionObserved string
    Observed redo log encryption algorithm.
    Status string
    TLS enablement status.
    TimeMasterKeyLastRotation string
    The last observed rotation time for the TDE master key, in RFC3339 format.
    UnencryptedTablespacesCount int
    Number of unencrypted tablespaces detected.
    WalletLocation string
    TLS wallet location observed on target.
    DbCredentialsEncryptionObserved string
    Observed DB credentials encryption algorithm.
    EncryptedTablespacesCount int
    Number of encrypted tablespaces detected.
    EncryptionConfigureds []string
    Configured TDE encryption algorithm.
    FipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    IntegrityConfigureds []string
    Configured TDE integrity-related setting.
    KeyCacheStatus string
    The observed TDE key cache status.
    KeyStoreType string
    The observed TDE key store type.
    MasterKeyEncryptionAlgorithm string
    The observed encryption algorithm used by the master key.
    MasterKeyId string
    The observed TDE master key identifier.
    QuantumReadiness string
    Quantum-readiness classification for TLS posture.
    RedoEncryptionObserved string
    Observed redo log encryption algorithm.
    Status string
    TLS enablement status.
    TimeMasterKeyLastRotation string
    The last observed rotation time for the TDE master key, in RFC3339 format.
    UnencryptedTablespacesCount int
    Number of unencrypted tablespaces detected.
    WalletLocation string
    TLS wallet location observed on target.
    db_credentials_encryption_observed string
    Observed DB credentials encryption algorithm.
    encrypted_tablespaces_count number
    Number of encrypted tablespaces detected.
    encryption_configureds list(string)
    Configured TDE encryption algorithm.
    fips_mode_configured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrity_configureds list(string)
    Configured TDE integrity-related setting.
    key_cache_status string
    The observed TDE key cache status.
    key_store_type string
    The observed TDE key store type.
    master_key_encryption_algorithm string
    The observed encryption algorithm used by the master key.
    master_key_id string
    The observed TDE master key identifier.
    quantum_readiness string
    Quantum-readiness classification for TLS posture.
    redo_encryption_observed string
    Observed redo log encryption algorithm.
    status string
    TLS enablement status.
    time_master_key_last_rotation string
    The last observed rotation time for the TDE master key, in RFC3339 format.
    unencrypted_tablespaces_count number
    Number of unencrypted tablespaces detected.
    wallet_location string
    TLS wallet location observed on target.
    dbCredentialsEncryptionObserved String
    Observed DB credentials encryption algorithm.
    encryptedTablespacesCount Integer
    Number of encrypted tablespaces detected.
    encryptionConfigureds List<String>
    Configured TDE encryption algorithm.
    fipsModeConfigured String
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrityConfigureds List<String>
    Configured TDE integrity-related setting.
    keyCacheStatus String
    The observed TDE key cache status.
    keyStoreType String
    The observed TDE key store type.
    masterKeyEncryptionAlgorithm String
    The observed encryption algorithm used by the master key.
    masterKeyId String
    The observed TDE master key identifier.
    quantumReadiness String
    Quantum-readiness classification for TLS posture.
    redoEncryptionObserved String
    Observed redo log encryption algorithm.
    status String
    TLS enablement status.
    timeMasterKeyLastRotation String
    The last observed rotation time for the TDE master key, in RFC3339 format.
    unencryptedTablespacesCount Integer
    Number of unencrypted tablespaces detected.
    walletLocation String
    TLS wallet location observed on target.
    dbCredentialsEncryptionObserved string
    Observed DB credentials encryption algorithm.
    encryptedTablespacesCount number
    Number of encrypted tablespaces detected.
    encryptionConfigureds string[]
    Configured TDE encryption algorithm.
    fipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrityConfigureds string[]
    Configured TDE integrity-related setting.
    keyCacheStatus string
    The observed TDE key cache status.
    keyStoreType string
    The observed TDE key store type.
    masterKeyEncryptionAlgorithm string
    The observed encryption algorithm used by the master key.
    masterKeyId string
    The observed TDE master key identifier.
    quantumReadiness string
    Quantum-readiness classification for TLS posture.
    redoEncryptionObserved string
    Observed redo log encryption algorithm.
    status string
    TLS enablement status.
    timeMasterKeyLastRotation string
    The last observed rotation time for the TDE master key, in RFC3339 format.
    unencryptedTablespacesCount number
    Number of unencrypted tablespaces detected.
    walletLocation string
    TLS wallet location observed on target.
    db_credentials_encryption_observed str
    Observed DB credentials encryption algorithm.
    encrypted_tablespaces_count int
    Number of encrypted tablespaces detected.
    encryption_configureds Sequence[str]
    Configured TDE encryption algorithm.
    fips_mode_configured str
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrity_configureds Sequence[str]
    Configured TDE integrity-related setting.
    key_cache_status str
    The observed TDE key cache status.
    key_store_type str
    The observed TDE key store type.
    master_key_encryption_algorithm str
    The observed encryption algorithm used by the master key.
    master_key_id str
    The observed TDE master key identifier.
    quantum_readiness str
    Quantum-readiness classification for TLS posture.
    redo_encryption_observed str
    Observed redo log encryption algorithm.
    status str
    TLS enablement status.
    time_master_key_last_rotation str
    The last observed rotation time for the TDE master key, in RFC3339 format.
    unencrypted_tablespaces_count int
    Number of unencrypted tablespaces detected.
    wallet_location str
    TLS wallet location observed on target.
    dbCredentialsEncryptionObserved String
    Observed DB credentials encryption algorithm.
    encryptedTablespacesCount Number
    Number of encrypted tablespaces detected.
    encryptionConfigureds List<String>
    Configured TDE encryption algorithm.
    fipsModeConfigured String
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    integrityConfigureds List<String>
    Configured TDE integrity-related setting.
    keyCacheStatus String
    The observed TDE key cache status.
    keyStoreType String
    The observed TDE key store type.
    masterKeyEncryptionAlgorithm String
    The observed encryption algorithm used by the master key.
    masterKeyId String
    The observed TDE master key identifier.
    quantumReadiness String
    Quantum-readiness classification for TLS posture.
    redoEncryptionObserved String
    Observed redo log encryption algorithm.
    status String
    TLS enablement status.
    timeMasterKeyLastRotation String
    The last observed rotation time for the TDE master key, in RFC3339 format.
    unencryptedTablespacesCount Number
    Number of unencrypted tablespaces detected.
    walletLocation String
    TLS wallet location observed on target.

    GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTl

    AreWeakCipherSuitesAllowed string
    Indicates if weak TLS cipher suites are allowed.
    CipherSuitesConfigureds List<string>
    TLS cipher suites configured on target.
    FipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    IsMtlsConfigured string
    Whether TLS client authentication is configured.
    QuantumReadiness string
    Quantum-readiness classification for TLS posture.
    RevocationMode string
    Certificate revocation checking mode.
    Status string
    TLS enablement status.
    Versions List<string>
    TLS versions configured on target.
    WalletLocation string
    TLS wallet location observed on target.
    AreWeakCipherSuitesAllowed string
    Indicates if weak TLS cipher suites are allowed.
    CipherSuitesConfigureds []string
    TLS cipher suites configured on target.
    FipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    IsMtlsConfigured string
    Whether TLS client authentication is configured.
    QuantumReadiness string
    Quantum-readiness classification for TLS posture.
    RevocationMode string
    Certificate revocation checking mode.
    Status string
    TLS enablement status.
    Versions []string
    TLS versions configured on target.
    WalletLocation string
    TLS wallet location observed on target.
    are_weak_cipher_suites_allowed string
    Indicates if weak TLS cipher suites are allowed.
    cipher_suites_configureds list(string)
    TLS cipher suites configured on target.
    fips_mode_configured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    is_mtls_configured string
    Whether TLS client authentication is configured.
    quantum_readiness string
    Quantum-readiness classification for TLS posture.
    revocation_mode string
    Certificate revocation checking mode.
    status string
    TLS enablement status.
    versions list(string)
    TLS versions configured on target.
    wallet_location string
    TLS wallet location observed on target.
    areWeakCipherSuitesAllowed String
    Indicates if weak TLS cipher suites are allowed.
    cipherSuitesConfigureds List<String>
    TLS cipher suites configured on target.
    fipsModeConfigured String
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    isMtlsConfigured String
    Whether TLS client authentication is configured.
    quantumReadiness String
    Quantum-readiness classification for TLS posture.
    revocationMode String
    Certificate revocation checking mode.
    status String
    TLS enablement status.
    versions List<String>
    TLS versions configured on target.
    walletLocation String
    TLS wallet location observed on target.
    areWeakCipherSuitesAllowed string
    Indicates if weak TLS cipher suites are allowed.
    cipherSuitesConfigureds string[]
    TLS cipher suites configured on target.
    fipsModeConfigured string
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    isMtlsConfigured string
    Whether TLS client authentication is configured.
    quantumReadiness string
    Quantum-readiness classification for TLS posture.
    revocationMode string
    Certificate revocation checking mode.
    status string
    TLS enablement status.
    versions string[]
    TLS versions configured on target.
    walletLocation string
    TLS wallet location observed on target.
    are_weak_cipher_suites_allowed str
    Indicates if weak TLS cipher suites are allowed.
    cipher_suites_configureds Sequence[str]
    TLS cipher suites configured on target.
    fips_mode_configured str
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    is_mtls_configured str
    Whether TLS client authentication is configured.
    quantum_readiness str
    Quantum-readiness classification for TLS posture.
    revocation_mode str
    Certificate revocation checking mode.
    status str
    TLS enablement status.
    versions Sequence[str]
    TLS versions configured on target.
    wallet_location str
    TLS wallet location observed on target.
    areWeakCipherSuitesAllowed String
    Indicates if weak TLS cipher suites are allowed.
    cipherSuitesConfigureds List<String>
    TLS cipher suites configured on target.
    fipsModeConfigured String
    FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
    isMtlsConfigured String
    Whether TLS client authentication is configured.
    quantumReadiness String
    Quantum-readiness classification for TLS posture.
    revocationMode String
    Certificate revocation checking mode.
    status String
    TLS enablement status.
    versions List<String>
    TLS versions configured on target.
    walletLocation String
    TLS wallet location observed on target.

    GetCryptoAssessmentsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name string
    values list(string)
    regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo oci logo
    Viewing docs for Oracle Cloud Infrastructure v5.1.0
    published on Friday, Sep 25, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial