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 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 dictionarydata "oci_data_safe_get_crypto_assessment_findings" "name" {
# arguments
}The following arguments are supported:
- Crypto
Assessment stringId - The OCID of the crypto assessment.
- Category string
- A filter to return only findings in the specified category key.
- Filters
List<Get
Crypto Assessment Findings Filter> - Finding
Key string - A filter to return only findings with the specified finding key.
- 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 findings with the specified status.
- Title string
- A filter to return only findings with the specified title.
- Crypto
Assessment stringId - The OCID of the crypto assessment.
- Category string
- A filter to return only findings in the specified category key.
- Filters
[]Get
Crypto Assessment Findings Filter - Finding
Key string - A filter to return only findings with the specified finding key.
- 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 findings with the specified status.
- Title string
- A filter to return only findings with the specified title.
- crypto_
assessment_ stringid - 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_ 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 findings with the specified status.
- title string
- A filter to return only findings with the specified title.
- crypto
Assessment StringId - The OCID of the crypto assessment.
- category String
- A filter to return only findings in the specified category key.
- filters
List<Get
Crypto Assessment Findings Filter> - finding
Key String - A filter to return only findings with the specified finding key.
- 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 findings with the specified status.
- title String
- A filter to return only findings with the specified title.
- crypto
Assessment stringId - The OCID of the crypto assessment.
- category string
- A filter to return only findings in the specified category key.
- filters
Get
Crypto Assessment Findings Filter[] - finding
Key string - A filter to return only findings with the specified finding key.
- 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 findings with the specified status.
- title string
- A filter to return only findings with the specified title.
- crypto_
assessment_ strid - The OCID of the crypto assessment.
- category str
- A filter to return only findings in the specified category key.
- filters
Sequence[Get
Crypto Assessment Findings Filter] - finding_
key str - A filter to return only findings with the specified finding key.
- 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 findings with the specified status.
- title str
- A filter to return only findings with the specified title.
- crypto
Assessment StringId - The OCID of the crypto assessment.
- category String
- A filter to return only findings in the specified category key.
- filters List<Property Map>
- finding
Key String - A filter to return only findings with the specified finding key.
- 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 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:
- Crypto
Assessment List<GetFinding Collections Crypto Assessment Findings Crypto Assessment Finding Collection> - The list of crypto_assessment_finding_collection.
- Crypto
Assessment stringId - Id string
- The provider-assigned unique ID for this managed resource.
- Category string
- Category value recorded for the finding.
- Filters
List<Get
Crypto Assessment Findings Filter> - Finding
Key string - Unique key identifier for the finding.
- Is
Quantum boolReadiness Check - 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 []GetFinding Collections Crypto Assessment Findings Crypto Assessment Finding Collection - The list of crypto_assessment_finding_collection.
- Crypto
Assessment stringId - Id string
- The provider-assigned unique ID for this managed resource.
- Category string
- Category value recorded for the finding.
- Filters
[]Get
Crypto Assessment Findings Filter - Finding
Key string - Unique key identifier for the finding.
- Is
Quantum boolReadiness Check - 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_ list(object)finding_ collections - The list of crypto_assessment_finding_collection.
- crypto_
assessment_ stringid - 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_ boolreadiness_ check - 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 List<GetFinding Collections Crypto Assessment Findings Crypto Assessment Finding Collection> - The list of crypto_assessment_finding_collection.
- crypto
Assessment StringId - id String
- The provider-assigned unique ID for this managed resource.
- category String
- Category value recorded for the finding.
- filters
List<Get
Crypto Assessment Findings Filter> - finding
Key String - Unique key identifier for the finding.
- is
Quantum BooleanReadiness Check - 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 GetFinding Collections Crypto Assessment Findings Crypto Assessment Finding Collection[] - The list of crypto_assessment_finding_collection.
- crypto
Assessment stringId - id string
- The provider-assigned unique ID for this managed resource.
- category string
- Category value recorded for the finding.
- filters
Get
Crypto Assessment Findings Filter[] - finding
Key string - Unique key identifier for the finding.
- is
Quantum booleanReadiness Check - 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_ Sequence[Getfinding_ collections Crypto Assessment Findings Crypto Assessment Finding Collection] - The list of crypto_assessment_finding_collection.
- crypto_
assessment_ strid - id str
- The provider-assigned unique ID for this managed resource.
- category str
- Category value recorded for the finding.
- filters
Sequence[Get
Crypto Assessment Findings Filter] - finding_
key str - Unique key identifier for the finding.
- is_
quantum_ boolreadiness_ check - 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.
- crypto
Assessment List<Property Map>Finding Collections - The list of crypto_assessment_finding_collection.
- crypto
Assessment StringId - id String
- The provider-assigned unique ID for this managed resource.
- category String
- Category value recorded for the finding.
- filters List<Property Map>
- finding
Key String - Unique key identifier for the finding.
- is
Quantum BooleanReadiness Check - 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
- 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<Get
Crypto Assessment Findings Crypto Assessment Finding Collection Item> - Array of crypto deviation findings.
- Summaries
List<Get
Crypto Assessment Findings Crypto Assessment Finding Collection Summary> - Aggregate finding counts for the specified crypto assessment.
- Target
Id 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
[]Get
Crypto Assessment Findings Crypto Assessment Finding Collection Item - Array of crypto deviation findings.
- Summaries
[]Get
Crypto Assessment Findings Crypto Assessment Finding Collection Summary - Aggregate finding counts for the specified crypto assessment.
- Target
Id 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.
- 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<Get
Crypto Assessment Findings Crypto Assessment Finding Collection Item> - Array of crypto deviation findings.
- summaries
List<Get
Crypto Assessment Findings Crypto Assessment Finding Collection Summary> - Aggregate finding counts for the specified crypto assessment.
- target
Id 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
Get
Crypto Assessment Findings Crypto Assessment Finding Collection Item[] - Array of crypto deviation findings.
- summaries
Get
Crypto Assessment Findings Crypto Assessment Finding Collection Summary[] - Aggregate finding counts for the specified crypto assessment.
- target
Id 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[Get
Crypto Assessment Findings Crypto Assessment Finding Collection Item] - Array of crypto deviation findings.
- summaries
Sequence[Get
Crypto Assessment Findings Crypto Assessment Finding Collection Summary] - Aggregate finding counts for the specified crypto assessment.
- target_
id str - 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<Property Map>
- Array of crypto deviation findings.
- summaries List<Property Map>
- Aggregate finding counts for the specified crypto assessment.
- target
Id 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.
- 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 boolReadiness Check - 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 int
- 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.
- 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 boolReadiness Check - A filter to return only findings that are or are not part of quantum-readiness checks.
- Observed
Values []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.
- 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.
- 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_ boolreadiness_ check - 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.
- 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 BooleanReadiness Check - 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 Integer
- 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.
- 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 booleanReadiness Check - A filter to return only findings that are or are not part of quantum-readiness checks.
- observed
Values 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 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_ boolreadiness_ check - 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.
- 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 BooleanReadiness Check - 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.
GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummary
- Backup
Statuses List<GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Backup Status> - Aggregate finding counts for one crypto finding category.
- Critical int
- FAIL or EVALUATE findings with priority 1.
- Data
Encryption List<GetStatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Data Encryption Status> - 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 List<GetStatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Network Encryption Status> - Aggregate finding counts for one crypto finding category.
- Status
Counts Dictionary<string, string> - 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 List<GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Wallet Status> - Aggregate finding counts for one crypto finding category.
- Backup
Statuses []GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Backup Status - Aggregate finding counts for one crypto finding category.
- Critical int
- FAIL or EVALUATE findings with priority 1.
- Data
Encryption []GetStatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Data Encryption Status - 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 []GetStatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Network Encryption Status - Aggregate finding counts for one crypto finding category.
- Status
Counts map[string]string - 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 []GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Wallet Status - 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_ list(object)statuses - 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_ list(object)statuses - 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.
- backup
Statuses List<GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Backup Status> - Aggregate finding counts for one crypto finding category.
- critical Integer
- FAIL or EVALUATE findings with priority 1.
- data
Encryption List<GetStatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Data Encryption Status> - 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.
- network
Encryption List<GetStatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Network Encryption Status> - Aggregate finding counts for one crypto finding category.
- status
Counts Map<String,String> - Counts keyed by finding status. All supported statuses are included with a zero count when absent.
- total
Checks Integer - Total findings across all statuses in this category.
- total
Findings Integer - Findings with FAIL or EVALUATE status.
- wallet
Statuses List<GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Wallet Status> - Aggregate finding counts for one crypto finding category.
- backup
Statuses GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Backup Status[] - Aggregate finding counts for one crypto finding category.
- critical number
- FAIL or EVALUATE findings with priority 1.
- data
Encryption GetStatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Data Encryption Status[] - 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 GetStatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Network Encryption Status[] - Aggregate finding counts for one crypto finding category.
- status
Counts {[key: string]: 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 GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Wallet Status[] - Aggregate finding counts for one crypto finding category.
- backup_
statuses Sequence[GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Backup Status] - Aggregate finding counts for one crypto finding category.
- critical int
- FAIL or EVALUATE findings with priority 1.
- data_
encryption_ Sequence[Getstatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Data Encryption Status] - 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_ Sequence[Getstatuses Crypto Assessment Findings Crypto Assessment Finding Collection Summary Network Encryption Status] - 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[GetCrypto Assessment Findings Crypto Assessment Finding Collection Summary Wallet Status] - Aggregate finding counts for one crypto finding category.
- backup
Statuses List<Property Map> - Aggregate finding counts for one crypto finding category.
- critical Number
- FAIL or EVALUATE findings with priority 1.
- data
Encryption List<Property Map>Statuses - 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 List<Property Map>Statuses - 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<Property Map> - Aggregate finding counts for one crypto finding category.
GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryBackupStatus
- 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 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.
- 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.
- pass
Checks Integer - Findings with PASS status.
- total
Checks Integer - 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 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.
- pass
Checks Number - Findings with PASS status.
- total
Checks Number - Total findings across all statuses in this category.
GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryDataEncryptionStatus
- 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 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.
- 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.
- pass
Checks Integer - Findings with PASS status.
- total
Checks Integer - 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 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.
- pass
Checks Number - Findings with PASS status.
- total
Checks Number - Total findings across all statuses in this category.
GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryNetworkEncryptionStatus
- 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 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.
- 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.
- pass
Checks Integer - Findings with PASS status.
- total
Checks Integer - 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 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.
- pass
Checks Number - Findings with PASS status.
- total
Checks Number - Total findings across all statuses in this category.
GetCryptoAssessmentFindingsCryptoAssessmentFindingCollectionSummaryWalletStatus
- 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 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.
- 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.
- pass
Checks Integer - Findings with PASS status.
- total
Checks Integer - 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 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.
- pass
Checks Number - Findings with PASS status.
- total
Checks Number - Total findings across all statuses in this category.
GetCryptoAssessmentFindingsFilter
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