1. Registry
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. DataSafe
  6. getCryptoAssessmentFindingTargets
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 Assessment Finding Targets in Oracle Cloud Infrastructure Data Safe service.

    For a selected finding, lists targets where it occurs in assessments.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCryptoAssessmentFindingTargets = oci.datasafe.getCryptoAssessmentFindingTargets({
        compartmentId: compartmentId,
        findingKeys: cryptoAssessmentFindingTargetFindingKey,
        accessLevel: cryptoAssessmentFindingTargetAccessLevel,
        assessmentType: cryptoAssessmentFindingTargetAssessmentType,
        compartmentIdInSubtree: cryptoAssessmentFindingTargetCompartmentIdInSubtree === "true",
        isQuantumReadinessCheck: cryptoAssessmentFindingTargetIsQuantumReadinessCheck === "true",
        status: cryptoAssessmentFindingTargetStatus,
        targetId: testTarget.id,
        targetIds: cryptoAssessmentFindingTargetTargetIds,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_crypto_assessment_finding_targets = oci.datasafe.get_crypto_assessment_finding_targets(compartment_id=compartment_id,
        finding_keys=crypto_assessment_finding_target_finding_key,
        access_level=crypto_assessment_finding_target_access_level,
        assessment_type=crypto_assessment_finding_target_assessment_type,
        compartment_id_in_subtree=crypto_assessment_finding_target_compartment_id_in_subtree == "true",
        is_quantum_readiness_check=crypto_assessment_finding_target_is_quantum_readiness_check == "true",
        status=crypto_assessment_finding_target_status,
        target_id=test_target["id"],
        target_ids=crypto_assessment_finding_target_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.GetCryptoAssessmentFindingTargets(ctx, &datasafe.GetCryptoAssessmentFindingTargetsArgs{
    			CompartmentId:           compartmentId,
    			FindingKeys:             pulumi.ToArray(cryptoAssessmentFindingTargetFindingKey),
    			AccessLevel:             pulumi.StringRef(cryptoAssessmentFindingTargetAccessLevel),
    			AssessmentType:          pulumi.StringRef(cryptoAssessmentFindingTargetAssessmentType),
    			CompartmentIdInSubtree:  pulumi.BoolRef(cryptoAssessmentFindingTargetCompartmentIdInSubtree),
    			IsQuantumReadinessCheck: pulumi.BoolRef(cryptoAssessmentFindingTargetIsQuantumReadinessCheck),
    			Status:                  pulumi.StringRef(cryptoAssessmentFindingTargetStatus),
    			TargetId:                pulumi.StringRef(testTarget.Id),
    			TargetIds:               pulumi.ToArray(cryptoAssessmentFindingTargetTargetIds),
    		}, 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 testCryptoAssessmentFindingTargets = Oci.DataSafe.GetCryptoAssessmentFindingTargets.Invoke(new()
        {
            CompartmentId = compartmentId,
            FindingKeys = cryptoAssessmentFindingTargetFindingKey,
            AccessLevel = cryptoAssessmentFindingTargetAccessLevel,
            AssessmentType = cryptoAssessmentFindingTargetAssessmentType,
            CompartmentIdInSubtree = cryptoAssessmentFindingTargetCompartmentIdInSubtree,
            IsQuantumReadinessCheck = cryptoAssessmentFindingTargetIsQuantumReadinessCheck,
            Status = cryptoAssessmentFindingTargetStatus,
            TargetId = testTarget.Id,
            TargetIds = cryptoAssessmentFindingTargetTargetIds,
        });
    
    });
    
    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.GetCryptoAssessmentFindingTargetsArgs;
    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 testCryptoAssessmentFindingTargets = DataSafeFunctions.getCryptoAssessmentFindingTargets(GetCryptoAssessmentFindingTargetsArgs.builder()
                .compartmentId(compartmentId)
                .findingKeys(cryptoAssessmentFindingTargetFindingKey)
                .accessLevel(cryptoAssessmentFindingTargetAccessLevel)
                .assessmentType(cryptoAssessmentFindingTargetAssessmentType)
                .compartmentIdInSubtree(cryptoAssessmentFindingTargetCompartmentIdInSubtree)
                .isQuantumReadinessCheck(cryptoAssessmentFindingTargetIsQuantumReadinessCheck)
                .status(cryptoAssessmentFindingTargetStatus)
                .targetId(testTarget.id())
                .targetIds(cryptoAssessmentFindingTargetTargetIds)
                .build());
    
        }
    }
    
    variables:
      testCryptoAssessmentFindingTargets:
        fn::invoke:
          function: oci:DataSafe:getCryptoAssessmentFindingTargets
          arguments:
            compartmentId: ${compartmentId}
            findingKeys: ${cryptoAssessmentFindingTargetFindingKey}
            accessLevel: ${cryptoAssessmentFindingTargetAccessLevel}
            assessmentType: ${cryptoAssessmentFindingTargetAssessmentType}
            compartmentIdInSubtree: ${cryptoAssessmentFindingTargetCompartmentIdInSubtree}
            isQuantumReadinessCheck: ${cryptoAssessmentFindingTargetIsQuantumReadinessCheck}
            status: ${cryptoAssessmentFindingTargetStatus}
            targetId: ${testTarget.id}
            targetIds: ${cryptoAssessmentFindingTargetTargetIds}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_datasafe_getcryptoassessmentfindingtargets" "testCryptoAssessmentFindingTargets" {
      compartment_id             = compartmentId
      finding_keys               = cryptoAssessmentFindingTargetFindingKey
      access_level               = cryptoAssessmentFindingTargetAccessLevel
      assessment_type            = cryptoAssessmentFindingTargetAssessmentType
      compartment_id_in_subtree  = cryptoAssessmentFindingTargetCompartmentIdInSubtree
      is_quantum_readiness_check = cryptoAssessmentFindingTargetIsQuantumReadinessCheck
      status                     = cryptoAssessmentFindingTargetStatus
      target_id                  = testTarget.id
      target_ids                 = cryptoAssessmentFindingTargetTargetIds
    }
    

    Using getCryptoAssessmentFindingTargets

    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 getCryptoAssessmentFindingTargets(args: GetCryptoAssessmentFindingTargetsArgs, opts?: InvokeOptions): Promise<GetCryptoAssessmentFindingTargetsResult>
    function getCryptoAssessmentFindingTargetsOutput(args: GetCryptoAssessmentFindingTargetsOutputArgs, opts?: InvokeOutputOptions): Output<GetCryptoAssessmentFindingTargetsResult>
    def get_crypto_assessment_finding_targets(access_level: Optional[str] = None,
                                              assessment_type: Optional[str] = None,
                                              compartment_id: Optional[str] = None,
                                              compartment_id_in_subtree: Optional[bool] = None,
                                              filters: Optional[Sequence[GetCryptoAssessmentFindingTargetsFilter]] = None,
                                              finding_keys: Optional[Sequence[str]] = None,
                                              is_quantum_readiness_check: Optional[bool] = None,
                                              status: Optional[str] = None,
                                              target_id: Optional[str] = None,
                                              target_ids: Optional[Sequence[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetCryptoAssessmentFindingTargetsResult
    def get_crypto_assessment_finding_targets_output(access_level: 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,
                                              filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetCryptoAssessmentFindingTargetsFilterArgs]]]] = None,
                                              finding_keys: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                              is_quantum_readiness_check: pulumi.Input[Optional[bool]] = None,
                                              status: 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[GetCryptoAssessmentFindingTargetsResult]
    func GetCryptoAssessmentFindingTargets(ctx *Context, args *GetCryptoAssessmentFindingTargetsArgs, opts ...InvokeOption) (*GetCryptoAssessmentFindingTargetsResult, error)
    func GetCryptoAssessmentFindingTargetsOutput(ctx *Context, args *GetCryptoAssessmentFindingTargetsOutputArgs, opts ...InvokeOption) GetCryptoAssessmentFindingTargetsResultOutput

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

    public static class GetCryptoAssessmentFindingTargets 
    {
        public static Task<GetCryptoAssessmentFindingTargetsResult> InvokeAsync(GetCryptoAssessmentFindingTargetsArgs args, InvokeOptions? opts = null)
        public static Output<GetCryptoAssessmentFindingTargetsResult> Invoke(GetCryptoAssessmentFindingTargetsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetCryptoAssessmentFindingTargetsResult> Invoke(GetCryptoAssessmentFindingTargetsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetCryptoAssessmentFindingTargetsResult> getCryptoAssessmentFindingTargets(GetCryptoAssessmentFindingTargetsArgs args, InvokeOptions options)
    public static Output<GetCryptoAssessmentFindingTargetsResult> getCryptoAssessmentFindingTargets(GetCryptoAssessmentFindingTargetsArgs args, InvokeOptions options)
    public static Output<GetCryptoAssessmentFindingTargetsResult> getCryptoAssessmentFindingTargets(GetCryptoAssessmentFindingTargetsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: oci:DataSafe/getCryptoAssessmentFindingTargets:getCryptoAssessmentFindingTargets
      arguments:
        # arguments dictionary
    data "oci_data_safe_get_crypto_assessment_finding_targets" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    FindingKeys List<string>
    The finding keys for which target occurrences are listed.
    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.
    AssessmentType string
    A filter to return targets from assessments of the specified type.
    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.
    Filters List<GetCryptoAssessmentFindingTargetsFilter>
    IsQuantumReadinessCheck bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    Status string
    A filter to return only finding target rows with the specified status.
    TargetId string
    Filters results to targets with an exact matching target OCID.
    TargetIds List<string>
    A filter to return only resources associated with any of the specified target OCIDs.
    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    FindingKeys []string
    The finding keys for which target occurrences are listed.
    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.
    AssessmentType string
    A filter to return targets from assessments of the specified type.
    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.
    Filters []GetCryptoAssessmentFindingTargetsFilter
    IsQuantumReadinessCheck bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    Status string
    A filter to return only finding target rows with the specified status.
    TargetId string
    Filters results to targets with an exact matching target OCID.
    TargetIds []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.
    finding_keys list(string)
    The finding keys for which target occurrences are listed.
    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_type string
    A filter to return targets from assessments of the specified type.
    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.
    filters list(object)
    is_quantum_readiness_check bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    status string
    A filter to return only finding target rows with the specified status.
    target_id string
    Filters results to targets with an exact matching target OCID.
    target_ids list(string)
    A filter to return only resources associated with any of the specified target OCIDs.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    findingKeys List<String>
    The finding keys for which target occurrences are listed.
    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.
    assessmentType String
    A filter to return targets from assessments of the specified type.
    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.
    filters List<GetCryptoAssessmentFindingTargetsFilter>
    isQuantumReadinessCheck Boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    status String
    A filter to return only finding target rows with the specified status.
    targetId String
    Filters results to targets with an exact matching target OCID.
    targetIds List<String>
    A filter to return only resources associated with any of the specified target OCIDs.
    compartmentId string
    A filter to return only resources that match the specified compartment OCID.
    findingKeys string[]
    The finding keys for which target occurrences are listed.
    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.
    assessmentType string
    A filter to return targets from assessments of the specified type.
    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.
    filters GetCryptoAssessmentFindingTargetsFilter[]
    isQuantumReadinessCheck boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    status string
    A filter to return only finding target rows with the specified status.
    targetId string
    Filters results to targets with an exact matching target OCID.
    targetIds 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.
    finding_keys Sequence[str]
    The finding keys for which target occurrences are listed.
    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_type str
    A filter to return targets from assessments of the specified type.
    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.
    filters Sequence[GetCryptoAssessmentFindingTargetsFilter]
    is_quantum_readiness_check bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    status str
    A filter to return only finding target rows with the specified status.
    target_id str
    Filters results to targets with an exact matching target OCID.
    target_ids Sequence[str]
    A filter to return only resources associated with any of the specified target OCIDs.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    findingKeys List<String>
    The finding keys for which target occurrences are listed.
    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.
    assessmentType String
    A filter to return targets from assessments of the specified type.
    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.
    filters List<Property Map>
    isQuantumReadinessCheck Boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    status String
    A filter to return only finding target rows with the specified status.
    targetId String
    Filters results to targets with an exact matching target OCID.
    targetIds List<String>
    A filter to return only resources associated with any of the specified target OCIDs.

    getCryptoAssessmentFindingTargets Result

    The following output properties are available:

    CompartmentId string
    CryptoAssessmentFindingTargetCollections List<GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollection>
    The list of crypto_assessment_finding_target_collection.
    FindingKeys List<string>
    Unique key of the finding affecting this target.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    AssessmentType string
    CompartmentIdInSubtree bool
    Filters List<GetCryptoAssessmentFindingTargetsFilter>
    IsQuantumReadinessCheck bool
    Indicates whether this finding is part of quantum-readiness checks.
    Status string
    TargetId string
    The OCID of the affected target.
    TargetIds List<string>
    CompartmentId string
    CryptoAssessmentFindingTargetCollections []GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollection
    The list of crypto_assessment_finding_target_collection.
    FindingKeys []string
    Unique key of the finding affecting this target.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    AssessmentType string
    CompartmentIdInSubtree bool
    Filters []GetCryptoAssessmentFindingTargetsFilter
    IsQuantumReadinessCheck bool
    Indicates whether this finding is part of quantum-readiness checks.
    Status string
    TargetId string
    The OCID of the affected target.
    TargetIds []string
    compartment_id string
    crypto_assessment_finding_target_collections list(object)
    The list of crypto_assessment_finding_target_collection.
    finding_keys list(string)
    Unique key of the finding affecting this target.
    id string
    The provider-assigned unique ID for this managed resource.
    access_level string
    assessment_type string
    compartment_id_in_subtree bool
    filters list(object)
    is_quantum_readiness_check bool
    Indicates whether this finding is part of quantum-readiness checks.
    status string
    target_id string
    The OCID of the affected target.
    target_ids list(string)
    compartmentId String
    cryptoAssessmentFindingTargetCollections List<GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollection>
    The list of crypto_assessment_finding_target_collection.
    findingKeys List<String>
    Unique key of the finding affecting this target.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    assessmentType String
    compartmentIdInSubtree Boolean
    filters List<GetCryptoAssessmentFindingTargetsFilter>
    isQuantumReadinessCheck Boolean
    Indicates whether this finding is part of quantum-readiness checks.
    status String
    targetId String
    The OCID of the affected target.
    targetIds List<String>
    compartmentId string
    cryptoAssessmentFindingTargetCollections GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollection[]
    The list of crypto_assessment_finding_target_collection.
    findingKeys string[]
    Unique key of the finding affecting this target.
    id string
    The provider-assigned unique ID for this managed resource.
    accessLevel string
    assessmentType string
    compartmentIdInSubtree boolean
    filters GetCryptoAssessmentFindingTargetsFilter[]
    isQuantumReadinessCheck boolean
    Indicates whether this finding is part of quantum-readiness checks.
    status string
    targetId string
    The OCID of the affected target.
    targetIds string[]
    compartment_id str
    crypto_assessment_finding_target_collections Sequence[GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollection]
    The list of crypto_assessment_finding_target_collection.
    finding_keys Sequence[str]
    Unique key of the finding affecting this target.
    id str
    The provider-assigned unique ID for this managed resource.
    access_level str
    assessment_type str
    compartment_id_in_subtree bool
    filters Sequence[GetCryptoAssessmentFindingTargetsFilter]
    is_quantum_readiness_check bool
    Indicates whether this finding is part of quantum-readiness checks.
    status str
    target_id str
    The OCID of the affected target.
    target_ids Sequence[str]
    compartmentId String
    cryptoAssessmentFindingTargetCollections List<Property Map>
    The list of crypto_assessment_finding_target_collection.
    findingKeys List<String>
    Unique key of the finding affecting this target.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    assessmentType String
    compartmentIdInSubtree Boolean
    filters List<Property Map>
    isQuantumReadinessCheck Boolean
    Indicates whether this finding is part of quantum-readiness checks.
    status String
    targetId String
    The OCID of the affected target.
    targetIds List<String>

    Supporting Types

    GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollection

    items list(object)
    Array of target-level finding occurrences.
    items List<Property Map>
    Array of target-level finding occurrences.

    GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollectionItem

    AssessmentId string
    The crypto assessment OCID associated with this finding occurrence.
    DatabaseVersion string
    Database version of the affected target.
    FindingKey string
    The finding keys for which target occurrences are listed.
    IsQuantumReadinessCheck bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    ObservedValue string
    The observed value for the selected finding on this target.
    Priority int
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    Severity string
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    TargetId string
    Filters results to targets with an exact matching target OCID.
    AssessmentId string
    The crypto assessment OCID associated with this finding occurrence.
    DatabaseVersion string
    Database version of the affected target.
    FindingKey string
    The finding keys for which target occurrences are listed.
    IsQuantumReadinessCheck bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    ObservedValue string
    The observed value for the selected finding on this target.
    Priority int
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    Severity string
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    TargetId string
    Filters results to targets with an exact matching target OCID.
    assessment_id string
    The crypto assessment OCID associated with this finding occurrence.
    database_version string
    Database version of the affected target.
    finding_key string
    The finding keys for which target occurrences are listed.
    is_quantum_readiness_check bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observed_value string
    The observed value for the selected finding on this target.
    priority number
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    severity string
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    target_id string
    Filters results to targets with an exact matching target OCID.
    assessmentId String
    The crypto assessment OCID associated with this finding occurrence.
    databaseVersion String
    Database version of the affected target.
    findingKey String
    The finding keys for which target occurrences are listed.
    isQuantumReadinessCheck Boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observedValue String
    The observed value for the selected finding on this target.
    priority Integer
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    severity String
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    targetId String
    Filters results to targets with an exact matching target OCID.
    assessmentId string
    The crypto assessment OCID associated with this finding occurrence.
    databaseVersion string
    Database version of the affected target.
    findingKey string
    The finding keys for which target occurrences are listed.
    isQuantumReadinessCheck boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observedValue string
    The observed value for the selected finding on this target.
    priority number
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    severity string
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    targetId string
    Filters results to targets with an exact matching target OCID.
    assessment_id str
    The crypto assessment OCID associated with this finding occurrence.
    database_version str
    Database version of the affected target.
    finding_key str
    The finding keys for which target occurrences are listed.
    is_quantum_readiness_check bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observed_value str
    The observed value for the selected finding on this target.
    priority int
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    severity str
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    target_id str
    Filters results to targets with an exact matching target OCID.
    assessmentId String
    The crypto assessment OCID associated with this finding occurrence.
    databaseVersion String
    Database version of the affected target.
    findingKey String
    The finding keys for which target occurrences are listed.
    isQuantumReadinessCheck Boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observedValue String
    The observed value for the selected finding on this target.
    priority Number
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    severity String
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    targetId String
    Filters results to targets with an exact matching target OCID.

    GetCryptoAssessmentFindingTargetsFilter

    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