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

    Lists crypto deviation findings for the specified crypto assessment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCryptoAssessmentFindings = oci.datasafe.getCryptoAssessmentFindings({
        cryptoAssessmentId: testCryptoAssessment.id,
        category: cryptoAssessmentFindingCategory,
        findingKey: cryptoAssessmentFindingFindingKey,
        isQuantumReadinessCheck: cryptoAssessmentFindingIsQuantumReadinessCheck === "true",
        status: cryptoAssessmentFindingStatus,
        title: cryptoAssessmentFindingTitle,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_crypto_assessment_findings = oci.datasafe.get_crypto_assessment_findings(crypto_assessment_id=test_crypto_assessment["id"],
        category=crypto_assessment_finding_category,
        finding_key=crypto_assessment_finding_finding_key,
        is_quantum_readiness_check=crypto_assessment_finding_is_quantum_readiness_check == "true",
        status=crypto_assessment_finding_status,
        title=crypto_assessment_finding_title)
    
    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.GetCryptoAssessmentFindings(ctx, &datasafe.GetCryptoAssessmentFindingsArgs{
    			CryptoAssessmentId:      testCryptoAssessment.Id,
    			Category:                pulumi.StringRef(cryptoAssessmentFindingCategory),
    			FindingKey:              pulumi.StringRef(cryptoAssessmentFindingFindingKey),
    			IsQuantumReadinessCheck: pulumi.BoolRef(cryptoAssessmentFindingIsQuantumReadinessCheck),
    			Status:                  pulumi.StringRef(cryptoAssessmentFindingStatus),
    			Title:                   pulumi.StringRef(cryptoAssessmentFindingTitle),
    		}, 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 testCryptoAssessmentFindings = Oci.DataSafe.GetCryptoAssessmentFindings.Invoke(new()
        {
            CryptoAssessmentId = testCryptoAssessment.Id,
            Category = cryptoAssessmentFindingCategory,
            FindingKey = cryptoAssessmentFindingFindingKey,
            IsQuantumReadinessCheck = cryptoAssessmentFindingIsQuantumReadinessCheck,
            Status = cryptoAssessmentFindingStatus,
            Title = cryptoAssessmentFindingTitle,
        });
    
    });
    
    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.GetCryptoAssessmentFindingsArgs;
    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 testCryptoAssessmentFindings = DataSafeFunctions.getCryptoAssessmentFindings(GetCryptoAssessmentFindingsArgs.builder()
                .cryptoAssessmentId(testCryptoAssessment.id())
                .category(cryptoAssessmentFindingCategory)
                .findingKey(cryptoAssessmentFindingFindingKey)
                .isQuantumReadinessCheck(cryptoAssessmentFindingIsQuantumReadinessCheck)
                .status(cryptoAssessmentFindingStatus)
                .title(cryptoAssessmentFindingTitle)
                .build());
    
        }
    }
    
    variables:
      testCryptoAssessmentFindings:
        fn::invoke:
          function: oci:DataSafe:getCryptoAssessmentFindings
          arguments:
            cryptoAssessmentId: ${testCryptoAssessment.id}
            category: ${cryptoAssessmentFindingCategory}
            findingKey: ${cryptoAssessmentFindingFindingKey}
            isQuantumReadinessCheck: ${cryptoAssessmentFindingIsQuantumReadinessCheck}
            status: ${cryptoAssessmentFindingStatus}
            title: ${cryptoAssessmentFindingTitle}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_datasafe_getcryptoassessmentfindings" "testCryptoAssessmentFindings" {
      crypto_assessment_id       = testCryptoAssessment.id
      category                   = cryptoAssessmentFindingCategory
      finding_key                = cryptoAssessmentFindingFindingKey
      is_quantum_readiness_check = cryptoAssessmentFindingIsQuantumReadinessCheck
      status                     = cryptoAssessmentFindingStatus
      title                      = cryptoAssessmentFindingTitle
    }
    

    Using getCryptoAssessmentFindings

    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 getCryptoAssessmentFindings(args: GetCryptoAssessmentFindingsArgs, opts?: InvokeOptions): Promise<GetCryptoAssessmentFindingsResult>
    function getCryptoAssessmentFindingsOutput(args: GetCryptoAssessmentFindingsOutputArgs, opts?: InvokeOutputOptions): Output<GetCryptoAssessmentFindingsResult>
    def get_crypto_assessment_findings(category: Optional[str] = None,
                                       crypto_assessment_id: Optional[str] = None,
                                       filters: Optional[Sequence[GetCryptoAssessmentFindingsFilter]] = None,
                                       finding_key: Optional[str] = None,
                                       is_quantum_readiness_check: Optional[bool] = None,
                                       status: Optional[str] = None,
                                       title: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetCryptoAssessmentFindingsResult
    def get_crypto_assessment_findings_output(category: pulumi.Input[Optional[str]] = None,
                                       crypto_assessment_id: pulumi.Input[Optional[str]] = None,
                                       filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetCryptoAssessmentFindingsFilterArgs]]]] = None,
                                       finding_key: pulumi.Input[Optional[str]] = None,
                                       is_quantum_readiness_check: pulumi.Input[Optional[bool]] = None,
                                       status: pulumi.Input[Optional[str]] = None,
                                       title: pulumi.Input[Optional[str]] = None,
                                       opts: Optional[InvokeOutputOptions] = None) -> Output[GetCryptoAssessmentFindingsResult]
    func GetCryptoAssessmentFindings(ctx *Context, args *GetCryptoAssessmentFindingsArgs, opts ...InvokeOption) (*GetCryptoAssessmentFindingsResult, error)
    func GetCryptoAssessmentFindingsOutput(ctx *Context, args *GetCryptoAssessmentFindingsOutputArgs, opts ...InvokeOption) GetCryptoAssessmentFindingsResultOutput

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

    public static class GetCryptoAssessmentFindings 
    {
        public static Task<GetCryptoAssessmentFindingsResult> InvokeAsync(GetCryptoAssessmentFindingsArgs args, InvokeOptions? opts = null)
        public static Output<GetCryptoAssessmentFindingsResult> Invoke(GetCryptoAssessmentFindingsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetCryptoAssessmentFindingsResult> Invoke(GetCryptoAssessmentFindingsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetCryptoAssessmentFindingsResult> getCryptoAssessmentFindings(GetCryptoAssessmentFindingsArgs args, InvokeOptions options)
    public static Output<GetCryptoAssessmentFindingsResult> getCryptoAssessmentFindings(GetCryptoAssessmentFindingsArgs args, InvokeOptions options)
    public static Output<GetCryptoAssessmentFindingsResult> getCryptoAssessmentFindings(GetCryptoAssessmentFindingsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: oci:DataSafe/getCryptoAssessmentFindings:getCryptoAssessmentFindings
      arguments:
        # arguments dictionary
    data "oci_data_safe_get_crypto_assessment_findings" "name" {
        # arguments
    }

    The following arguments are supported:

    CryptoAssessmentId string
    The OCID of the crypto assessment.
    Category string
    A filter to return only findings in the specified category key.
    Filters List<GetCryptoAssessmentFindingsFilter>
    FindingKey string
    A filter to return only findings with the specified finding key.
    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 findings with the specified status.
    Title string
    A filter to return only findings with the specified title.
    CryptoAssessmentId string
    The OCID of the crypto assessment.
    Category string
    A filter to return only findings in the specified category key.
    Filters []GetCryptoAssessmentFindingsFilter
    FindingKey string
    A filter to return only findings with the specified finding key.
    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 findings with the specified status.
    Title string
    A filter to return only findings with the specified title.
    crypto_assessment_id string
    The OCID of the crypto assessment.
    category string
    A filter to return only findings in the specified category key.
    filters list(object)
    finding_key string
    A filter to return only findings with the specified finding key.
    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 findings with the specified status.
    title string
    A filter to return only findings with the specified title.
    cryptoAssessmentId String
    The OCID of the crypto assessment.
    category String
    A filter to return only findings in the specified category key.
    filters List<GetCryptoAssessmentFindingsFilter>
    findingKey String
    A filter to return only findings with the specified finding key.
    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 findings with the specified status.
    title String
    A filter to return only findings with the specified title.
    cryptoAssessmentId string
    The OCID of the crypto assessment.
    category string
    A filter to return only findings in the specified category key.
    filters GetCryptoAssessmentFindingsFilter[]
    findingKey string
    A filter to return only findings with the specified finding key.
    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 findings with the specified status.
    title string
    A filter to return only findings with the specified title.
    crypto_assessment_id str
    The OCID of the crypto assessment.
    category str
    A filter to return only findings in the specified category key.
    filters Sequence[GetCryptoAssessmentFindingsFilter]
    finding_key str
    A filter to return only findings with the specified finding key.
    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 findings with the specified status.
    title str
    A filter to return only findings with the specified title.
    cryptoAssessmentId String
    The OCID of the crypto assessment.
    category String
    A filter to return only findings in the specified category key.
    filters List<Property Map>
    findingKey String
    A filter to return only findings with the specified finding key.
    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 findings with the specified status.
    title String
    A filter to return only findings with the specified title.

    getCryptoAssessmentFindings Result

    The following output properties are available:

    CryptoAssessmentFindingCollections List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollection>
    The list of crypto_assessment_finding_collection.
    CryptoAssessmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Category string
    Category value recorded for the finding.
    Filters List<GetCryptoAssessmentFindingsFilter>
    FindingKey string
    Unique key identifier for the finding.
    IsQuantumReadinessCheck bool
    Indicates whether this finding is part of quantum-readiness checks.
    Status string
    Status recorded for the finding.
    Title string
    Human-readable title for the finding.
    CryptoAssessmentFindingCollections []GetCryptoAssessmentFindingsCryptoAssessmentFindingCollection
    The list of crypto_assessment_finding_collection.
    CryptoAssessmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Category string
    Category value recorded for the finding.
    Filters []GetCryptoAssessmentFindingsFilter
    FindingKey string
    Unique key identifier for the finding.
    IsQuantumReadinessCheck bool
    Indicates whether this finding is part of quantum-readiness checks.
    Status string
    Status recorded for the finding.
    Title string
    Human-readable title for the finding.
    crypto_assessment_finding_collections list(object)
    The list of crypto_assessment_finding_collection.
    crypto_assessment_id string
    id string
    The provider-assigned unique ID for this managed resource.
    category string
    Category value recorded for the finding.
    filters list(object)
    finding_key string
    Unique key identifier for the finding.
    is_quantum_readiness_check bool
    Indicates whether this finding is part of quantum-readiness checks.
    status string
    Status recorded for the finding.
    title string
    Human-readable title for the finding.
    cryptoAssessmentFindingCollections List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollection>
    The list of crypto_assessment_finding_collection.
    cryptoAssessmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    category String
    Category value recorded for the finding.
    filters List<GetCryptoAssessmentFindingsFilter>
    findingKey String
    Unique key identifier for the finding.
    isQuantumReadinessCheck Boolean
    Indicates whether this finding is part of quantum-readiness checks.
    status String
    Status recorded for the finding.
    title String
    Human-readable title for the finding.
    cryptoAssessmentFindingCollections GetCryptoAssessmentFindingsCryptoAssessmentFindingCollection[]
    The list of crypto_assessment_finding_collection.
    cryptoAssessmentId string
    id string
    The provider-assigned unique ID for this managed resource.
    category string
    Category value recorded for the finding.
    filters GetCryptoAssessmentFindingsFilter[]
    findingKey string
    Unique key identifier for the finding.
    isQuantumReadinessCheck boolean
    Indicates whether this finding is part of quantum-readiness checks.
    status string
    Status recorded for the finding.
    title string
    Human-readable title for the finding.
    crypto_assessment_finding_collections Sequence[GetCryptoAssessmentFindingsCryptoAssessmentFindingCollection]
    The list of crypto_assessment_finding_collection.
    crypto_assessment_id str
    id str
    The provider-assigned unique ID for this managed resource.
    category str
    Category value recorded for the finding.
    filters Sequence[GetCryptoAssessmentFindingsFilter]
    finding_key str
    Unique key identifier for the finding.
    is_quantum_readiness_check bool
    Indicates whether this finding is part of quantum-readiness checks.
    status str
    Status recorded for the finding.
    title str
    Human-readable title for the finding.
    cryptoAssessmentFindingCollections List<Property Map>
    The list of crypto_assessment_finding_collection.
    cryptoAssessmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    category String
    Category value recorded for the finding.
    filters List<Property Map>
    findingKey String
    Unique key identifier for the finding.
    isQuantumReadinessCheck Boolean
    Indicates whether this finding is part of quantum-readiness checks.
    status String
    Status recorded for the finding.
    title String
    Human-readable title for the finding.

    Supporting Types

    GetCryptoAssessmentFindingsCryptoAssessmentFindingCollection

    AssessmentType string
    Assessment type recorded in the findings table.
    DatabaseVersion string
    Database version for the target database associated with the specified crypto assessment.
    Items List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionItem>
    Array of crypto deviation findings.
    Summaries List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummary>
    Aggregate finding counts for the specified crypto assessment.
    TargetId string
    The OCID of the target database for the specified crypto assessment.
    AssessmentType string
    Assessment type recorded in the findings table.
    DatabaseVersion string
    Database version for the target database associated with the specified crypto assessment.
    Items []GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionItem
    Array of crypto deviation findings.
    Summaries []GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummary
    Aggregate finding counts for the specified crypto assessment.
    TargetId string
    The OCID of the target database for the specified crypto assessment.
    assessment_type string
    Assessment type recorded in the findings table.
    database_version string
    Database version for the target database associated with the specified crypto assessment.
    items list(object)
    Array of crypto deviation findings.
    summaries list(object)
    Aggregate finding counts for the specified crypto assessment.
    target_id string
    The OCID of the target database for the specified crypto assessment.
    assessmentType String
    Assessment type recorded in the findings table.
    databaseVersion String
    Database version for the target database associated with the specified crypto assessment.
    items List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionItem>
    Array of crypto deviation findings.
    summaries List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummary>
    Aggregate finding counts for the specified crypto assessment.
    targetId String
    The OCID of the target database for the specified crypto assessment.
    assessmentType string
    Assessment type recorded in the findings table.
    databaseVersion string
    Database version for the target database associated with the specified crypto assessment.
    items GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionItem[]
    Array of crypto deviation findings.
    summaries GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummary[]
    Aggregate finding counts for the specified crypto assessment.
    targetId string
    The OCID of the target database for the specified crypto assessment.
    assessment_type str
    Assessment type recorded in the findings table.
    database_version str
    Database version for the target database associated with the specified crypto assessment.
    items Sequence[GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionItem]
    Array of crypto deviation findings.
    summaries Sequence[GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummary]
    Aggregate finding counts for the specified crypto assessment.
    target_id str
    The OCID of the target database for the specified crypto assessment.
    assessmentType String
    Assessment type recorded in the findings table.
    databaseVersion String
    Database version for the target database associated with the specified crypto assessment.
    items List<Property Map>
    Array of crypto deviation findings.
    summaries List<Property Map>
    Aggregate finding counts for the specified crypto assessment.
    targetId String
    The OCID of the target database for the specified crypto assessment.

    GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionItem

    Category string
    A filter to return only findings in the specified category key.
    Compliance string
    Compliance mapping recorded for the finding.
    ExpectedValue string
    Expected value recorded for the finding.
    FindingKey string
    A filter to return only findings with the specified finding key.
    IsQuantumReadinessCheck bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    ObservedValues List<string>
    Observed values recorded for the finding.
    Priority int
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    RecommendedValue string
    Recommended value recorded for the finding.
    Remediation string
    Remediation text recorded for the finding.
    Severity string
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    ShortRemediation string
    Short remediation for the finding.
    ShortSummary string
    Short summary of the finding.
    Status string
    A filter to return only findings with the specified status.
    Summary string
    Aggregate finding counts for the specified crypto assessment.
    Title string
    A filter to return only findings with the specified title.
    Url string
    URL recorded for the finding.
    Category string
    A filter to return only findings in the specified category key.
    Compliance string
    Compliance mapping recorded for the finding.
    ExpectedValue string
    Expected value recorded for the finding.
    FindingKey string
    A filter to return only findings with the specified finding key.
    IsQuantumReadinessCheck bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    ObservedValues []string
    Observed values recorded for the finding.
    Priority int
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    RecommendedValue string
    Recommended value recorded for the finding.
    Remediation string
    Remediation text recorded for the finding.
    Severity string
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    ShortRemediation string
    Short remediation for the finding.
    ShortSummary string
    Short summary of the finding.
    Status string
    A filter to return only findings with the specified status.
    Summary string
    Aggregate finding counts for the specified crypto assessment.
    Title string
    A filter to return only findings with the specified title.
    Url string
    URL recorded for the finding.
    category string
    A filter to return only findings in the specified category key.
    compliance string
    Compliance mapping recorded for the finding.
    expected_value string
    Expected value recorded for the finding.
    finding_key string
    A filter to return only findings with the specified finding key.
    is_quantum_readiness_check bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observed_values list(string)
    Observed values recorded for the finding.
    priority number
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    recommended_value string
    Recommended value recorded for the finding.
    remediation string
    Remediation text recorded for the finding.
    severity string
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    short_remediation string
    Short remediation for the finding.
    short_summary string
    Short summary of the finding.
    status string
    A filter to return only findings with the specified status.
    summary string
    Aggregate finding counts for the specified crypto assessment.
    title string
    A filter to return only findings with the specified title.
    url string
    URL recorded for the finding.
    category String
    A filter to return only findings in the specified category key.
    compliance String
    Compliance mapping recorded for the finding.
    expectedValue String
    Expected value recorded for the finding.
    findingKey String
    A filter to return only findings with the specified finding key.
    isQuantumReadinessCheck Boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observedValues List<String>
    Observed values recorded for the finding.
    priority Integer
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    recommendedValue String
    Recommended value recorded for the finding.
    remediation String
    Remediation text recorded for the finding.
    severity String
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    shortRemediation String
    Short remediation for the finding.
    shortSummary String
    Short summary of the finding.
    status String
    A filter to return only findings with the specified status.
    summary String
    Aggregate finding counts for the specified crypto assessment.
    title String
    A filter to return only findings with the specified title.
    url String
    URL recorded for the finding.
    category string
    A filter to return only findings in the specified category key.
    compliance string
    Compliance mapping recorded for the finding.
    expectedValue string
    Expected value recorded for the finding.
    findingKey string
    A filter to return only findings with the specified finding key.
    isQuantumReadinessCheck boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observedValues string[]
    Observed values recorded for the finding.
    priority number
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    recommendedValue string
    Recommended value recorded for the finding.
    remediation string
    Remediation text recorded for the finding.
    severity string
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    shortRemediation string
    Short remediation for the finding.
    shortSummary string
    Short summary of the finding.
    status string
    A filter to return only findings with the specified status.
    summary string
    Aggregate finding counts for the specified crypto assessment.
    title string
    A filter to return only findings with the specified title.
    url string
    URL recorded for the finding.
    category str
    A filter to return only findings in the specified category key.
    compliance str
    Compliance mapping recorded for the finding.
    expected_value str
    Expected value recorded for the finding.
    finding_key str
    A filter to return only findings with the specified finding key.
    is_quantum_readiness_check bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observed_values Sequence[str]
    Observed values recorded for the finding.
    priority int
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    recommended_value str
    Recommended value recorded for the finding.
    remediation str
    Remediation text recorded for the finding.
    severity str
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    short_remediation str
    Short remediation for the finding.
    short_summary str
    Short summary of the finding.
    status str
    A filter to return only findings with the specified status.
    summary str
    Aggregate finding counts for the specified crypto assessment.
    title str
    A filter to return only findings with the specified title.
    url str
    URL recorded for the finding.
    category String
    A filter to return only findings in the specified category key.
    compliance String
    Compliance mapping recorded for the finding.
    expectedValue String
    Expected value recorded for the finding.
    findingKey String
    A filter to return only findings with the specified finding key.
    isQuantumReadinessCheck Boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    observedValues List<String>
    Observed values recorded for the finding.
    priority Number
    Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.
    recommendedValue String
    Recommended value recorded for the finding.
    remediation String
    Remediation text recorded for the finding.
    severity String
    Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.
    shortRemediation String
    Short remediation for the finding.
    shortSummary String
    Short summary of the finding.
    status String
    A filter to return only findings with the specified status.
    summary String
    Aggregate finding counts for the specified crypto assessment.
    title String
    A filter to return only findings with the specified title.
    url String
    URL recorded for the finding.

    GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummary

    BackupStatuses List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryBackupStatus>
    Aggregate finding counts for one crypto finding category.
    Critical int
    FAIL or EVALUATE findings with priority 1.
    DataEncryptionStatuses List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryDataEncryptionStatus>
    Aggregate finding counts for one crypto finding category.
    High int
    FAIL or EVALUATE findings with priority 2.
    Low int
    FAIL or EVALUATE findings with priority 4.
    Med int
    FAIL or EVALUATE findings with priority 3.
    NetworkEncryptionStatuses List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryNetworkEncryptionStatus>
    Aggregate finding counts for one crypto finding category.
    StatusCounts Dictionary<string, string>
    Counts keyed by finding status. All supported statuses are included with a zero count when absent.
    TotalChecks int
    Total findings across all statuses in this category.
    TotalFindings int
    Findings with FAIL or EVALUATE status.
    WalletStatuses List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryWalletStatus>
    Aggregate finding counts for one crypto finding category.
    BackupStatuses []GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryBackupStatus
    Aggregate finding counts for one crypto finding category.
    Critical int
    FAIL or EVALUATE findings with priority 1.
    DataEncryptionStatuses []GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryDataEncryptionStatus
    Aggregate finding counts for one crypto finding category.
    High int
    FAIL or EVALUATE findings with priority 2.
    Low int
    FAIL or EVALUATE findings with priority 4.
    Med int
    FAIL or EVALUATE findings with priority 3.
    NetworkEncryptionStatuses []GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryNetworkEncryptionStatus
    Aggregate finding counts for one crypto finding category.
    StatusCounts map[string]string
    Counts keyed by finding status. All supported statuses are included with a zero count when absent.
    TotalChecks int
    Total findings across all statuses in this category.
    TotalFindings int
    Findings with FAIL or EVALUATE status.
    WalletStatuses []GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryWalletStatus
    Aggregate finding counts for one crypto finding category.
    backup_statuses list(object)
    Aggregate finding counts for one crypto finding category.
    critical number
    FAIL or EVALUATE findings with priority 1.
    data_encryption_statuses list(object)
    Aggregate finding counts for one crypto finding category.
    high number
    FAIL or EVALUATE findings with priority 2.
    low number
    FAIL or EVALUATE findings with priority 4.
    med number
    FAIL or EVALUATE findings with priority 3.
    network_encryption_statuses list(object)
    Aggregate finding counts for one crypto finding category.
    status_counts map(string)
    Counts keyed by finding status. All supported statuses are included with a zero count when absent.
    total_checks number
    Total findings across all statuses in this category.
    total_findings number
    Findings with FAIL or EVALUATE status.
    wallet_statuses list(object)
    Aggregate finding counts for one crypto finding category.
    backupStatuses List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryBackupStatus>
    Aggregate finding counts for one crypto finding category.
    critical Integer
    FAIL or EVALUATE findings with priority 1.
    dataEncryptionStatuses List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryDataEncryptionStatus>
    Aggregate finding counts for one crypto finding category.
    high Integer
    FAIL or EVALUATE findings with priority 2.
    low Integer
    FAIL or EVALUATE findings with priority 4.
    med Integer
    FAIL or EVALUATE findings with priority 3.
    networkEncryptionStatuses List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryNetworkEncryptionStatus>
    Aggregate finding counts for one crypto finding category.
    statusCounts Map<String,String>
    Counts keyed by finding status. All supported statuses are included with a zero count when absent.
    totalChecks Integer
    Total findings across all statuses in this category.
    totalFindings Integer
    Findings with FAIL or EVALUATE status.
    walletStatuses List<GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryWalletStatus>
    Aggregate finding counts for one crypto finding category.
    backupStatuses GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryBackupStatus[]
    Aggregate finding counts for one crypto finding category.
    critical number
    FAIL or EVALUATE findings with priority 1.
    dataEncryptionStatuses GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryDataEncryptionStatus[]
    Aggregate finding counts for one crypto finding category.
    high number
    FAIL or EVALUATE findings with priority 2.
    low number
    FAIL or EVALUATE findings with priority 4.
    med number
    FAIL or EVALUATE findings with priority 3.
    networkEncryptionStatuses GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryNetworkEncryptionStatus[]
    Aggregate finding counts for one crypto finding category.
    statusCounts {[key: string]: string}
    Counts keyed by finding status. All supported statuses are included with a zero count when absent.
    totalChecks number
    Total findings across all statuses in this category.
    totalFindings number
    Findings with FAIL or EVALUATE status.
    walletStatuses GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryWalletStatus[]
    Aggregate finding counts for one crypto finding category.
    backup_statuses Sequence[GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryBackupStatus]
    Aggregate finding counts for one crypto finding category.
    critical int
    FAIL or EVALUATE findings with priority 1.
    data_encryption_statuses Sequence[GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryDataEncryptionStatus]
    Aggregate finding counts for one crypto finding category.
    high int
    FAIL or EVALUATE findings with priority 2.
    low int
    FAIL or EVALUATE findings with priority 4.
    med int
    FAIL or EVALUATE findings with priority 3.
    network_encryption_statuses Sequence[GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryNetworkEncryptionStatus]
    Aggregate finding counts for one crypto finding category.
    status_counts Mapping[str, str]
    Counts keyed by finding status. All supported statuses are included with a zero count when absent.
    total_checks int
    Total findings across all statuses in this category.
    total_findings int
    Findings with FAIL or EVALUATE status.
    wallet_statuses Sequence[GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryWalletStatus]
    Aggregate finding counts for one crypto finding category.
    backupStatuses List<Property Map>
    Aggregate finding counts for one crypto finding category.
    critical Number
    FAIL or EVALUATE findings with priority 1.
    dataEncryptionStatuses List<Property Map>
    Aggregate finding counts for one crypto finding category.
    high Number
    FAIL or EVALUATE findings with priority 2.
    low Number
    FAIL or EVALUATE findings with priority 4.
    med Number
    FAIL or EVALUATE findings with priority 3.
    networkEncryptionStatuses List<Property Map>
    Aggregate finding counts for one crypto finding category.
    statusCounts Map<String>
    Counts keyed by finding status. All supported statuses are included with a zero count when absent.
    totalChecks Number
    Total findings across all statuses in this category.
    totalFindings Number
    Findings with FAIL or EVALUATE status.
    walletStatuses List<Property Map>
    Aggregate finding counts for one crypto finding category.

    GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryBackupStatus

    Findings int
    Findings with FAIL or EVALUATE status.
    PassChecks int
    Findings with PASS status.
    TotalChecks int
    Total findings across all statuses in this category.
    Findings int
    Findings with FAIL or EVALUATE status.
    PassChecks int
    Findings with PASS status.
    TotalChecks int
    Total findings across all statuses in this category.
    findings number
    Findings with FAIL or EVALUATE status.
    pass_checks number
    Findings with PASS status.
    total_checks number
    Total findings across all statuses in this category.
    findings Integer
    Findings with FAIL or EVALUATE status.
    passChecks Integer
    Findings with PASS status.
    totalChecks Integer
    Total findings across all statuses in this category.
    findings number
    Findings with FAIL or EVALUATE status.
    passChecks number
    Findings with PASS status.
    totalChecks number
    Total findings across all statuses in this category.
    findings int
    Findings with FAIL or EVALUATE status.
    pass_checks int
    Findings with PASS status.
    total_checks int
    Total findings across all statuses in this category.
    findings Number
    Findings with FAIL or EVALUATE status.
    passChecks Number
    Findings with PASS status.
    totalChecks Number
    Total findings across all statuses in this category.

    GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryDataEncryptionStatus

    Findings int
    Findings with FAIL or EVALUATE status.
    PassChecks int
    Findings with PASS status.
    TotalChecks int
    Total findings across all statuses in this category.
    Findings int
    Findings with FAIL or EVALUATE status.
    PassChecks int
    Findings with PASS status.
    TotalChecks int
    Total findings across all statuses in this category.
    findings number
    Findings with FAIL or EVALUATE status.
    pass_checks number
    Findings with PASS status.
    total_checks number
    Total findings across all statuses in this category.
    findings Integer
    Findings with FAIL or EVALUATE status.
    passChecks Integer
    Findings with PASS status.
    totalChecks Integer
    Total findings across all statuses in this category.
    findings number
    Findings with FAIL or EVALUATE status.
    passChecks number
    Findings with PASS status.
    totalChecks number
    Total findings across all statuses in this category.
    findings int
    Findings with FAIL or EVALUATE status.
    pass_checks int
    Findings with PASS status.
    total_checks int
    Total findings across all statuses in this category.
    findings Number
    Findings with FAIL or EVALUATE status.
    passChecks Number
    Findings with PASS status.
    totalChecks Number
    Total findings across all statuses in this category.

    GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryNetworkEncryptionStatus

    Findings int
    Findings with FAIL or EVALUATE status.
    PassChecks int
    Findings with PASS status.
    TotalChecks int
    Total findings across all statuses in this category.
    Findings int
    Findings with FAIL or EVALUATE status.
    PassChecks int
    Findings with PASS status.
    TotalChecks int
    Total findings across all statuses in this category.
    findings number
    Findings with FAIL or EVALUATE status.
    pass_checks number
    Findings with PASS status.
    total_checks number
    Total findings across all statuses in this category.
    findings Integer
    Findings with FAIL or EVALUATE status.
    passChecks Integer
    Findings with PASS status.
    totalChecks Integer
    Total findings across all statuses in this category.
    findings number
    Findings with FAIL or EVALUATE status.
    passChecks number
    Findings with PASS status.
    totalChecks number
    Total findings across all statuses in this category.
    findings int
    Findings with FAIL or EVALUATE status.
    pass_checks int
    Findings with PASS status.
    total_checks int
    Total findings across all statuses in this category.
    findings Number
    Findings with FAIL or EVALUATE status.
    passChecks Number
    Findings with PASS status.
    totalChecks Number
    Total findings across all statuses in this category.

    GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryWalletStatus

    Findings int
    Findings with FAIL or EVALUATE status.
    PassChecks int
    Findings with PASS status.
    TotalChecks int
    Total findings across all statuses in this category.
    Findings int
    Findings with FAIL or EVALUATE status.
    PassChecks int
    Findings with PASS status.
    TotalChecks int
    Total findings across all statuses in this category.
    findings number
    Findings with FAIL or EVALUATE status.
    pass_checks number
    Findings with PASS status.
    total_checks number
    Total findings across all statuses in this category.
    findings Integer
    Findings with FAIL or EVALUATE status.
    passChecks Integer
    Findings with PASS status.
    totalChecks Integer
    Total findings across all statuses in this category.
    findings number
    Findings with FAIL or EVALUATE status.
    passChecks number
    Findings with PASS status.
    totalChecks number
    Total findings across all statuses in this category.
    findings int
    Findings with FAIL or EVALUATE status.
    pass_checks int
    Findings with PASS status.
    total_checks int
    Total findings across all statuses in this category.
    findings Number
    Findings with FAIL or EVALUATE status.
    passChecks Number
    Findings with PASS status.
    totalChecks Number
    Total findings across all statuses in this category.

    GetCryptoAssessmentFindingsFilter

    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