Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi
This data source provides the list of Crypto Assessment 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 dictionarydata "oci_data_safe_get_crypto_assessment_finding_targets" "name" {
# arguments
}The following arguments are supported:
- 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 boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Filters
List<Get
Crypto Assessment Finding Targets Filter> - Is
Quantum boolReadiness Check - 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.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Finding
Keys []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 boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Filters
[]Get
Crypto Assessment Finding Targets Filter - Is
Quantum boolReadiness Check - 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 []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_ boolin_ subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters list(object)
- is_
quantum_ boolreadiness_ check - 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.
- 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 BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters
List<Get
Crypto Assessment Finding Targets Filter> - is
Quantum BooleanReadiness Check - 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.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- finding
Keys 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 booleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters
Get
Crypto Assessment Finding Targets Filter[] - is
Quantum booleanReadiness Check - 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 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_ boolin_ subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters
Sequence[Get
Crypto Assessment Finding Targets Filter] - is_
quantum_ boolreadiness_ check - 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.
- 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 BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters List<Property Map>
- is
Quantum BooleanReadiness Check - 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.
getCryptoAssessmentFindingTargets Result
The following output properties are available:
- Compartment
Id string - Crypto
Assessment List<GetFinding Target Collections Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection> - 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 boolIn Subtree - Filters
List<Get
Crypto Assessment Finding Targets Filter> - Is
Quantum boolReadiness Check - 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>
- Compartment
Id string - Crypto
Assessment []GetFinding Target Collections Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection - The list of crypto_assessment_finding_target_collection.
- Finding
Keys []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 boolIn Subtree - Filters
[]Get
Crypto Assessment Finding Targets Filter - Is
Quantum boolReadiness Check - Indicates whether this finding is part of quantum-readiness checks.
- Status string
- Target
Id string - The OCID of the affected target.
- Target
Ids []string
- compartment_
id string - crypto_
assessment_ list(object)finding_ target_ collections - 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_ boolin_ subtree - filters list(object)
- is_
quantum_ boolreadiness_ check - 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)
- compartment
Id String - crypto
Assessment List<GetFinding Target Collections Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection> - 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 BooleanIn Subtree - filters
List<Get
Crypto Assessment Finding Targets Filter> - is
Quantum BooleanReadiness Check - 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>
- compartment
Id string - crypto
Assessment GetFinding Target Collections Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection[] - The list of crypto_assessment_finding_target_collection.
- finding
Keys 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 booleanIn Subtree - filters
Get
Crypto Assessment Finding Targets Filter[] - is
Quantum booleanReadiness Check - Indicates whether this finding is part of quantum-readiness checks.
- status string
- target
Id string - The OCID of the affected target.
- target
Ids string[]
- compartment_
id str - crypto_
assessment_ Sequence[Getfinding_ target_ collections Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection] - 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_ boolin_ subtree - filters
Sequence[Get
Crypto Assessment Finding Targets Filter] - is_
quantum_ boolreadiness_ check - 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]
- compartment
Id String - crypto
Assessment List<Property Map>Finding Target Collections - 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 BooleanIn Subtree - filters List<Property Map>
- is
Quantum BooleanReadiness Check - 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>
Supporting Types
GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollection
- Items
List<Get
Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection Item> - Array of target-level finding occurrences.
- Items
[]Get
Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection Item - Array of target-level finding occurrences.
- items list(object)
- Array of target-level finding occurrences.
- items
List<Get
Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection Item> - Array of target-level finding occurrences.
- items
Get
Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection Item[] - Array of target-level finding occurrences.
- items
Sequence[Get
Crypto Assessment Finding Targets Crypto Assessment Finding Target Collection Item] - Array of target-level finding occurrences.
- items List<Property Map>
- Array of target-level finding occurrences.
GetCryptoAssessmentFindingTargetsCryptoAssessmentFindingTargetCollectionItem
- 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 boolReadiness Check - 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 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.
- Target
Id 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 boolReadiness Check - 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 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.
- Target
Id 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_ boolreadiness_ check - 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.
- 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 BooleanReadiness Check - 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 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.
- target
Id 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 booleanReadiness Check - 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.
- 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_ boolreadiness_ check - 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.
- 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 BooleanReadiness Check - 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.
GetCryptoAssessmentFindingTargetsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
published on Friday, Sep 25, 2026 by Pulumi