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 Analytics in Oracle Cloud Infrastructure Data Safe service.
Lists findings in a compartment with the number of affected targets.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCryptoAssessmentFindingAnalytics = oci.datasafe.getCryptoAssessmentFindingAnalytics({
compartmentId: compartmentId,
accessLevel: cryptoAssessmentFindingAnalyticAccessLevel,
category: cryptoAssessmentFindingAnalyticCategory,
compartmentIdInSubtree: cryptoAssessmentFindingAnalyticCompartmentIdInSubtree === "true",
findingKeys: cryptoAssessmentFindingAnalyticFindingKey,
isQuantumReadinessCheck: cryptoAssessmentFindingAnalyticIsQuantumReadinessCheck === "true",
});
import pulumi
import pulumi_oci as oci
test_crypto_assessment_finding_analytics = oci.datasafe.get_crypto_assessment_finding_analytics(compartment_id=compartment_id,
access_level=crypto_assessment_finding_analytic_access_level,
category=crypto_assessment_finding_analytic_category,
compartment_id_in_subtree=crypto_assessment_finding_analytic_compartment_id_in_subtree == "true",
finding_keys=crypto_assessment_finding_analytic_finding_key,
is_quantum_readiness_check=crypto_assessment_finding_analytic_is_quantum_readiness_check == "true")
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.GetCryptoAssessmentFindingAnalytics(ctx, &datasafe.GetCryptoAssessmentFindingAnalyticsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(cryptoAssessmentFindingAnalyticAccessLevel),
Category: pulumi.StringRef(cryptoAssessmentFindingAnalyticCategory),
CompartmentIdInSubtree: pulumi.BoolRef(cryptoAssessmentFindingAnalyticCompartmentIdInSubtree),
FindingKeys: pulumi.ToArray(cryptoAssessmentFindingAnalyticFindingKey),
IsQuantumReadinessCheck: pulumi.BoolRef(cryptoAssessmentFindingAnalyticIsQuantumReadinessCheck),
}, 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 testCryptoAssessmentFindingAnalytics = Oci.DataSafe.GetCryptoAssessmentFindingAnalytics.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = cryptoAssessmentFindingAnalyticAccessLevel,
Category = cryptoAssessmentFindingAnalyticCategory,
CompartmentIdInSubtree = cryptoAssessmentFindingAnalyticCompartmentIdInSubtree,
FindingKeys = cryptoAssessmentFindingAnalyticFindingKey,
IsQuantumReadinessCheck = cryptoAssessmentFindingAnalyticIsQuantumReadinessCheck,
});
});
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.GetCryptoAssessmentFindingAnalyticsArgs;
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 testCryptoAssessmentFindingAnalytics = DataSafeFunctions.getCryptoAssessmentFindingAnalytics(GetCryptoAssessmentFindingAnalyticsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(cryptoAssessmentFindingAnalyticAccessLevel)
.category(cryptoAssessmentFindingAnalyticCategory)
.compartmentIdInSubtree(cryptoAssessmentFindingAnalyticCompartmentIdInSubtree)
.findingKeys(cryptoAssessmentFindingAnalyticFindingKey)
.isQuantumReadinessCheck(cryptoAssessmentFindingAnalyticIsQuantumReadinessCheck)
.build());
}
}
variables:
testCryptoAssessmentFindingAnalytics:
fn::invoke:
function: oci:DataSafe:getCryptoAssessmentFindingAnalytics
arguments:
compartmentId: ${compartmentId}
accessLevel: ${cryptoAssessmentFindingAnalyticAccessLevel}
category: ${cryptoAssessmentFindingAnalyticCategory}
compartmentIdInSubtree: ${cryptoAssessmentFindingAnalyticCompartmentIdInSubtree}
findingKeys: ${cryptoAssessmentFindingAnalyticFindingKey}
isQuantumReadinessCheck: ${cryptoAssessmentFindingAnalyticIsQuantumReadinessCheck}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_datasafe_getcryptoassessmentfindinganalytics" "testCryptoAssessmentFindingAnalytics" {
compartment_id = compartmentId
access_level = cryptoAssessmentFindingAnalyticAccessLevel
category = cryptoAssessmentFindingAnalyticCategory
compartment_id_in_subtree = cryptoAssessmentFindingAnalyticCompartmentIdInSubtree
finding_keys = cryptoAssessmentFindingAnalyticFindingKey
is_quantum_readiness_check = cryptoAssessmentFindingAnalyticIsQuantumReadinessCheck
}
Using getCryptoAssessmentFindingAnalytics
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 getCryptoAssessmentFindingAnalytics(args: GetCryptoAssessmentFindingAnalyticsArgs, opts?: InvokeOptions): Promise<GetCryptoAssessmentFindingAnalyticsResult>
function getCryptoAssessmentFindingAnalyticsOutput(args: GetCryptoAssessmentFindingAnalyticsOutputArgs, opts?: InvokeOutputOptions): Output<GetCryptoAssessmentFindingAnalyticsResult>def get_crypto_assessment_finding_analytics(access_level: Optional[str] = None,
category: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
filters: Optional[Sequence[GetCryptoAssessmentFindingAnalyticsFilter]] = None,
finding_keys: Optional[Sequence[str]] = None,
is_quantum_readiness_check: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetCryptoAssessmentFindingAnalyticsResult
def get_crypto_assessment_finding_analytics_output(access_level: pulumi.Input[Optional[str]] = None,
category: 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[GetCryptoAssessmentFindingAnalyticsFilterArgs]]]] = None,
finding_keys: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
is_quantum_readiness_check: pulumi.Input[Optional[bool]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetCryptoAssessmentFindingAnalyticsResult]func GetCryptoAssessmentFindingAnalytics(ctx *Context, args *GetCryptoAssessmentFindingAnalyticsArgs, opts ...InvokeOption) (*GetCryptoAssessmentFindingAnalyticsResult, error)
func GetCryptoAssessmentFindingAnalyticsOutput(ctx *Context, args *GetCryptoAssessmentFindingAnalyticsOutputArgs, opts ...InvokeOption) GetCryptoAssessmentFindingAnalyticsResultOutput> Note: This function is named GetCryptoAssessmentFindingAnalytics in the Go SDK.
public static class GetCryptoAssessmentFindingAnalytics
{
public static Task<GetCryptoAssessmentFindingAnalyticsResult> InvokeAsync(GetCryptoAssessmentFindingAnalyticsArgs args, InvokeOptions? opts = null)
public static Output<GetCryptoAssessmentFindingAnalyticsResult> Invoke(GetCryptoAssessmentFindingAnalyticsInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetCryptoAssessmentFindingAnalyticsResult> Invoke(GetCryptoAssessmentFindingAnalyticsInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetCryptoAssessmentFindingAnalyticsResult> getCryptoAssessmentFindingAnalytics(GetCryptoAssessmentFindingAnalyticsArgs args, InvokeOptions options)
public static Output<GetCryptoAssessmentFindingAnalyticsResult> getCryptoAssessmentFindingAnalytics(GetCryptoAssessmentFindingAnalyticsArgs args, InvokeOptions options)
public static Output<GetCryptoAssessmentFindingAnalyticsResult> getCryptoAssessmentFindingAnalytics(GetCryptoAssessmentFindingAnalyticsArgs args, InvokeOutputOptions options)
fn::invoke:
function: oci:DataSafe/getCryptoAssessmentFindingAnalytics:getCryptoAssessmentFindingAnalytics
arguments:
# arguments dictionarydata "oci_data_safe_get_crypto_assessment_finding_analytics" "name" {
# arguments
}The following arguments are supported:
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Category string
- A filter to return only findings in the specified category key.
- 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 Analytics Filter> - Finding
Keys List<string> - A filter to return only findings with any of the specified finding keys.
- Is
Quantum boolReadiness Check - A filter to return only findings that are or are not part of quantum-readiness checks.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Category string
- A filter to return only findings in the specified category key.
- 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 Analytics Filter - Finding
Keys []string - A filter to return only findings with any of the specified finding keys.
- Is
Quantum boolReadiness Check - A filter to return only findings that are or are not part of quantum-readiness checks.
- compartment_
id string - A filter to return only resources that match the specified compartment OCID.
- access_
level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- category string
- A filter to return only findings in the specified category key.
- 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)
- finding_
keys list(string) - A filter to return only findings with any of the specified finding keys.
- is_
quantum_ boolreadiness_ check - A filter to return only findings that are or are not part of quantum-readiness checks.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- category String
- A filter to return only findings in the specified category key.
- 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 Analytics Filter> - finding
Keys List<String> - A filter to return only findings with any of the specified finding keys.
- is
Quantum BooleanReadiness Check - A filter to return only findings that are or are not part of quantum-readiness checks.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- category string
- A filter to return only findings in the specified category key.
- 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 Analytics Filter[] - finding
Keys string[] - A filter to return only findings with any of the specified finding keys.
- is
Quantum booleanReadiness Check - A filter to return only findings that are or are not part of quantum-readiness checks.
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- access_
level str - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- category str
- A filter to return only findings in the specified category key.
- 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 Analytics Filter] - finding_
keys Sequence[str] - A filter to return only findings with any of the specified finding keys.
- is_
quantum_ boolreadiness_ check - A filter to return only findings that are or are not part of quantum-readiness checks.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- category String
- A filter to return only findings in the specified category key.
- 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>
- finding
Keys List<String> - A filter to return only findings with any of the specified finding keys.
- is
Quantum BooleanReadiness Check - A filter to return only findings that are or are not part of quantum-readiness checks.
getCryptoAssessmentFindingAnalytics Result
The following output properties are available:
- Compartment
Id string - Crypto
Assessment List<GetFinding Analytics Collections Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection> - The list of crypto_assessment_finding_analytics_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Category string
- Category key to which the finding belongs.
- Compartment
Id boolIn Subtree - Filters
List<Get
Crypto Assessment Finding Analytics Filter> - Finding
Keys List<string> - Unique key of the finding.
- Is
Quantum boolReadiness Check
- Compartment
Id string - Crypto
Assessment []GetFinding Analytics Collections Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection - The list of crypto_assessment_finding_analytics_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Category string
- Category key to which the finding belongs.
- Compartment
Id boolIn Subtree - Filters
[]Get
Crypto Assessment Finding Analytics Filter - Finding
Keys []string - Unique key of the finding.
- Is
Quantum boolReadiness Check
- compartment_
id string - crypto_
assessment_ list(object)finding_ analytics_ collections - The list of crypto_assessment_finding_analytics_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- access_
level string - category string
- Category key to which the finding belongs.
- compartment_
id_ boolin_ subtree - filters list(object)
- finding_
keys list(string) - Unique key of the finding.
- is_
quantum_ boolreadiness_ check
- compartment
Id String - crypto
Assessment List<GetFinding Analytics Collections Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection> - The list of crypto_assessment_finding_analytics_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - category String
- Category key to which the finding belongs.
- compartment
Id BooleanIn Subtree - filters
List<Get
Crypto Assessment Finding Analytics Filter> - finding
Keys List<String> - Unique key of the finding.
- is
Quantum BooleanReadiness Check
- compartment
Id string - crypto
Assessment GetFinding Analytics Collections Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection[] - The list of crypto_assessment_finding_analytics_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- access
Level string - category string
- Category key to which the finding belongs.
- compartment
Id booleanIn Subtree - filters
Get
Crypto Assessment Finding Analytics Filter[] - finding
Keys string[] - Unique key of the finding.
- is
Quantum booleanReadiness Check
- compartment_
id str - crypto_
assessment_ Sequence[Getfinding_ analytics_ collections Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection] - The list of crypto_assessment_finding_analytics_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- access_
level str - category str
- Category key to which the finding belongs.
- compartment_
id_ boolin_ subtree - filters
Sequence[Get
Crypto Assessment Finding Analytics Filter] - finding_
keys Sequence[str] - Unique key of the finding.
- is_
quantum_ boolreadiness_ check
- compartment
Id String - crypto
Assessment List<Property Map>Finding Analytics Collections - The list of crypto_assessment_finding_analytics_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - category String
- Category key to which the finding belongs.
- compartment
Id BooleanIn Subtree - filters List<Property Map>
- finding
Keys List<String> - Unique key of the finding.
- is
Quantum BooleanReadiness Check
Supporting Types
GetCryptoAssessmentFindingAnalyticsCryptoAssessmentFindingAnalyticsCollection
- Items
List<Get
Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection Item> - Array of crypto finding analytics summaries.
- Items
[]Get
Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection Item - Array of crypto finding analytics summaries.
- items list(object)
- Array of crypto finding analytics summaries.
- items
List<Get
Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection Item> - Array of crypto finding analytics summaries.
- items
Get
Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection Item[] - Array of crypto finding analytics summaries.
- items
Sequence[Get
Crypto Assessment Finding Analytics Crypto Assessment Finding Analytics Collection Item] - Array of crypto finding analytics summaries.
- items List<Property Map>
- Array of crypto finding analytics summaries.
GetCryptoAssessmentFindingAnalyticsCryptoAssessmentFindingAnalyticsCollectionItem
- Category string
- A filter to return only findings in the specified category key.
- Finding
Key string - A filter to return only findings with any of the specified finding keys.
- 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.
- Short
Remediation string - Short remediation for the finding.
- Short
Summary string - Short summary of the finding.
- Target
Count int - Number of targets impacted by this finding in the queried scope.
- Title string
- Display title of the finding.
- Category string
- A filter to return only findings in the specified category key.
- Finding
Key string - A filter to return only findings with any of the specified finding keys.
- 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.
- Short
Remediation string - Short remediation for the finding.
- Short
Summary string - Short summary of the finding.
- Target
Count int - Number of targets impacted by this finding in the queried scope.
- Title string
- Display title of the finding.
- category string
- A filter to return only findings in the specified category key.
- finding_
key string - A filter to return only findings with any of the specified finding keys.
- 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.
- short_
remediation string - Short remediation for the finding.
- short_
summary string - Short summary of the finding.
- target_
count number - Number of targets impacted by this finding in the queried scope.
- title string
- Display title of the finding.
- category String
- A filter to return only findings in the specified category key.
- finding
Key String - A filter to return only findings with any of the specified finding keys.
- 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.
- short
Remediation String - Short remediation for the finding.
- short
Summary String - Short summary of the finding.
- target
Count Integer - Number of targets impacted by this finding in the queried scope.
- title String
- Display title of the finding.
- category string
- A filter to return only findings in the specified category key.
- finding
Key string - A filter to return only findings with any of the specified finding keys.
- 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.
- short
Remediation string - Short remediation for the finding.
- short
Summary string - Short summary of the finding.
- target
Count number - Number of targets impacted by this finding in the queried scope.
- title string
- Display title of the finding.
- category str
- A filter to return only findings in the specified category key.
- finding_
key str - A filter to return only findings with any of the specified finding keys.
- 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.
- short_
remediation str - Short remediation for the finding.
- short_
summary str - Short summary of the finding.
- target_
count int - Number of targets impacted by this finding in the queried scope.
- title str
- Display title of the finding.
- category String
- A filter to return only findings in the specified category key.
- finding
Key String - A filter to return only findings with any of the specified finding keys.
- 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.
- short
Remediation String - Short remediation for the finding.
- short
Summary String - Short summary of the finding.
- target
Count Number - Number of targets impacted by this finding in the queried scope.
- title String
- Display title of the finding.
GetCryptoAssessmentFindingAnalyticsFilter
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