1. Registry
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. DataSafe
  6. getCryptoAssessmentFindingAnalytics
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi
oci logo oci logo
Viewing docs for Oracle Cloud Infrastructure v5.1.0
published on Friday, Sep 25, 2026 by Pulumi

    This data source provides the list of Crypto Assessment Finding 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 dictionary
    data "oci_data_safe_get_crypto_assessment_finding_analytics" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    Category string
    A filter to return only findings in the specified category key.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    Filters List<GetCryptoAssessmentFindingAnalyticsFilter>
    FindingKeys List<string>
    A filter to return only findings with any of the specified finding keys.
    IsQuantumReadinessCheck bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    Category string
    A filter to return only findings in the specified category key.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    Filters []GetCryptoAssessmentFindingAnalyticsFilter
    FindingKeys []string
    A filter to return only findings with any of the specified finding keys.
    IsQuantumReadinessCheck bool
    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_in_subtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    filters list(object)
    finding_keys list(string)
    A filter to return only findings with any of the specified finding keys.
    is_quantum_readiness_check bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    category String
    A filter to return only findings in the specified category key.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    filters List<GetCryptoAssessmentFindingAnalyticsFilter>
    findingKeys List<String>
    A filter to return only findings with any of the specified finding keys.
    isQuantumReadinessCheck Boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.
    compartmentId string
    A filter to return only resources that match the specified compartment OCID.
    accessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    category string
    A filter to return only findings in the specified category key.
    compartmentIdInSubtree boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    filters GetCryptoAssessmentFindingAnalyticsFilter[]
    findingKeys string[]
    A filter to return only findings with any of the specified finding keys.
    isQuantumReadinessCheck boolean
    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_in_subtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    filters Sequence[GetCryptoAssessmentFindingAnalyticsFilter]
    finding_keys Sequence[str]
    A filter to return only findings with any of the specified finding keys.
    is_quantum_readiness_check bool
    A filter to return only findings that are or are not part of quantum-readiness checks.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    category String
    A filter to return only findings in the specified category key.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    filters List<Property Map>
    findingKeys List<String>
    A filter to return only findings with any of the specified finding keys.
    isQuantumReadinessCheck Boolean
    A filter to return only findings that are or are not part of quantum-readiness checks.

    getCryptoAssessmentFindingAnalytics Result

    The following output properties are available:

    CompartmentId string
    CryptoAssessmentFindingAnalyticsCollections List<GetCryptoAssessmentFindingAnalyticsCryptoAssessmentFindingAnalyticsCollection>
    The list of crypto_assessment_finding_analytics_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    Category string
    Category key to which the finding belongs.
    CompartmentIdInSubtree bool
    Filters List<GetCryptoAssessmentFindingAnalyticsFilter>
    FindingKeys List<string>
    Unique key of the finding.
    IsQuantumReadinessCheck bool
    CompartmentId string
    CryptoAssessmentFindingAnalyticsCollections []GetCryptoAssessmentFindingAnalyticsCryptoAssessmentFindingAnalyticsCollection
    The list of crypto_assessment_finding_analytics_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    Category string
    Category key to which the finding belongs.
    CompartmentIdInSubtree bool
    Filters []GetCryptoAssessmentFindingAnalyticsFilter
    FindingKeys []string
    Unique key of the finding.
    IsQuantumReadinessCheck bool
    compartment_id string
    crypto_assessment_finding_analytics_collections list(object)
    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_in_subtree bool
    filters list(object)
    finding_keys list(string)
    Unique key of the finding.
    is_quantum_readiness_check bool
    compartmentId String
    cryptoAssessmentFindingAnalyticsCollections List<GetCryptoAssessmentFindingAnalyticsCryptoAssessmentFindingAnalyticsCollection>
    The list of crypto_assessment_finding_analytics_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    category String
    Category key to which the finding belongs.
    compartmentIdInSubtree Boolean
    filters List<GetCryptoAssessmentFindingAnalyticsFilter>
    findingKeys List<String>
    Unique key of the finding.
    isQuantumReadinessCheck Boolean
    compartmentId string
    cryptoAssessmentFindingAnalyticsCollections GetCryptoAssessmentFindingAnalyticsCryptoAssessmentFindingAnalyticsCollection[]
    The list of crypto_assessment_finding_analytics_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    accessLevel string
    category string
    Category key to which the finding belongs.
    compartmentIdInSubtree boolean
    filters GetCryptoAssessmentFindingAnalyticsFilter[]
    findingKeys string[]
    Unique key of the finding.
    isQuantumReadinessCheck boolean
    compartment_id str
    crypto_assessment_finding_analytics_collections Sequence[GetCryptoAssessmentFindingAnalyticsCryptoAssessmentFindingAnalyticsCollection]
    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_in_subtree bool
    filters Sequence[GetCryptoAssessmentFindingAnalyticsFilter]
    finding_keys Sequence[str]
    Unique key of the finding.
    is_quantum_readiness_check bool
    compartmentId String
    cryptoAssessmentFindingAnalyticsCollections List<Property Map>
    The list of crypto_assessment_finding_analytics_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    category String
    Category key to which the finding belongs.
    compartmentIdInSubtree Boolean
    filters List<Property Map>
    findingKeys List<String>
    Unique key of the finding.
    isQuantumReadinessCheck Boolean

    Supporting Types

    GetCryptoAssessmentFindingAnalyticsCryptoAssessmentFindingAnalyticsCollection

    items list(object)
    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.
    FindingKey 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.
    ShortRemediation string
    Short remediation for the finding.
    ShortSummary string
    Short summary of the finding.
    TargetCount 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.
    FindingKey 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.
    ShortRemediation string
    Short remediation for the finding.
    ShortSummary string
    Short summary of the finding.
    TargetCount 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.
    findingKey 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.
    shortRemediation String
    Short remediation for the finding.
    shortSummary String
    Short summary of the finding.
    targetCount 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.
    findingKey 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.
    shortRemediation string
    Short remediation for the finding.
    shortSummary string
    Short summary of the finding.
    targetCount 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.
    findingKey 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.
    shortRemediation String
    Short remediation for the finding.
    shortSummary String
    Short summary of the finding.
    targetCount Number
    Number of targets impacted by this finding in the queried scope.
    title String
    Display title of the finding.

    GetCryptoAssessmentFindingAnalyticsFilter

    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