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

    Gets wallet details across targets in a compartment. Use assessmentId to narrow results to one crypto assessment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCryptoAssessmentWallets = oci.datasafe.getCryptoAssessmentWallets({
        compartmentId: compartmentId,
        accessLevel: cryptoAssessmentWalletAccessLevel,
        assessmentId: testAssessment.id,
        assessmentType: cryptoAssessmentWalletAssessmentType,
        compartmentIdInSubtree: cryptoAssessmentWalletCompartmentIdInSubtree === "true",
        feature: cryptoAssessmentWalletFeature,
        targetId: testTarget.id,
        targetIds: cryptoAssessmentWalletTargetIds,
        walletEncryptionAlgorithms: cryptoAssessmentWalletWalletEncryptionAlgorithm,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_crypto_assessment_wallets = oci.datasafe.get_crypto_assessment_wallets(compartment_id=compartment_id,
        access_level=crypto_assessment_wallet_access_level,
        assessment_id=test_assessment["id"],
        assessment_type=crypto_assessment_wallet_assessment_type,
        compartment_id_in_subtree=crypto_assessment_wallet_compartment_id_in_subtree == "true",
        feature=crypto_assessment_wallet_feature,
        target_id=test_target["id"],
        target_ids=crypto_assessment_wallet_target_ids,
        wallet_encryption_algorithms=crypto_assessment_wallet_wallet_encryption_algorithm)
    
    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.GetCryptoAssessmentWallets(ctx, &datasafe.GetCryptoAssessmentWalletsArgs{
    			CompartmentId:              compartmentId,
    			AccessLevel:                pulumi.StringRef(cryptoAssessmentWalletAccessLevel),
    			AssessmentId:               pulumi.StringRef(testAssessment.Id),
    			AssessmentType:             pulumi.StringRef(cryptoAssessmentWalletAssessmentType),
    			CompartmentIdInSubtree:     pulumi.BoolRef(cryptoAssessmentWalletCompartmentIdInSubtree),
    			Feature:                    pulumi.StringRef(cryptoAssessmentWalletFeature),
    			TargetId:                   pulumi.StringRef(testTarget.Id),
    			TargetIds:                  pulumi.ToArray(cryptoAssessmentWalletTargetIds),
    			WalletEncryptionAlgorithms: pulumi.ToArray(cryptoAssessmentWalletWalletEncryptionAlgorithm),
    		}, 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 testCryptoAssessmentWallets = Oci.DataSafe.GetCryptoAssessmentWallets.Invoke(new()
        {
            CompartmentId = compartmentId,
            AccessLevel = cryptoAssessmentWalletAccessLevel,
            AssessmentId = testAssessment.Id,
            AssessmentType = cryptoAssessmentWalletAssessmentType,
            CompartmentIdInSubtree = cryptoAssessmentWalletCompartmentIdInSubtree,
            Feature = cryptoAssessmentWalletFeature,
            TargetId = testTarget.Id,
            TargetIds = cryptoAssessmentWalletTargetIds,
            WalletEncryptionAlgorithms = cryptoAssessmentWalletWalletEncryptionAlgorithm,
        });
    
    });
    
    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.GetCryptoAssessmentWalletsArgs;
    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 testCryptoAssessmentWallets = DataSafeFunctions.getCryptoAssessmentWallets(GetCryptoAssessmentWalletsArgs.builder()
                .compartmentId(compartmentId)
                .accessLevel(cryptoAssessmentWalletAccessLevel)
                .assessmentId(testAssessment.id())
                .assessmentType(cryptoAssessmentWalletAssessmentType)
                .compartmentIdInSubtree(cryptoAssessmentWalletCompartmentIdInSubtree)
                .feature(cryptoAssessmentWalletFeature)
                .targetId(testTarget.id())
                .targetIds(cryptoAssessmentWalletTargetIds)
                .walletEncryptionAlgorithms(cryptoAssessmentWalletWalletEncryptionAlgorithm)
                .build());
    
        }
    }
    
    variables:
      testCryptoAssessmentWallets:
        fn::invoke:
          function: oci:DataSafe:getCryptoAssessmentWallets
          arguments:
            compartmentId: ${compartmentId}
            accessLevel: ${cryptoAssessmentWalletAccessLevel}
            assessmentId: ${testAssessment.id}
            assessmentType: ${cryptoAssessmentWalletAssessmentType}
            compartmentIdInSubtree: ${cryptoAssessmentWalletCompartmentIdInSubtree}
            feature: ${cryptoAssessmentWalletFeature}
            targetId: ${testTarget.id}
            targetIds: ${cryptoAssessmentWalletTargetIds}
            walletEncryptionAlgorithms: ${cryptoAssessmentWalletWalletEncryptionAlgorithm}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_datasafe_getcryptoassessmentwallets" "testCryptoAssessmentWallets" {
      compartment_id               = compartmentId
      access_level                 = cryptoAssessmentWalletAccessLevel
      assessment_id                = testAssessment.id
      assessment_type              = cryptoAssessmentWalletAssessmentType
      compartment_id_in_subtree    = cryptoAssessmentWalletCompartmentIdInSubtree
      feature                      = cryptoAssessmentWalletFeature
      target_id                    = testTarget.id
      target_ids                   = cryptoAssessmentWalletTargetIds
      wallet_encryption_algorithms = cryptoAssessmentWalletWalletEncryptionAlgorithm
    }
    

    Using getCryptoAssessmentWallets

    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 getCryptoAssessmentWallets(args: GetCryptoAssessmentWalletsArgs, opts?: InvokeOptions): Promise<GetCryptoAssessmentWalletsResult>
    function getCryptoAssessmentWalletsOutput(args: GetCryptoAssessmentWalletsOutputArgs, opts?: InvokeOutputOptions): Output<GetCryptoAssessmentWalletsResult>
    def get_crypto_assessment_wallets(access_level: Optional[str] = None,
                                      assessment_id: Optional[str] = None,
                                      assessment_type: Optional[str] = None,
                                      compartment_id: Optional[str] = None,
                                      compartment_id_in_subtree: Optional[bool] = None,
                                      feature: Optional[str] = None,
                                      filters: Optional[Sequence[GetCryptoAssessmentWalletsFilter]] = None,
                                      target_id: Optional[str] = None,
                                      target_ids: Optional[Sequence[str]] = None,
                                      wallet_encryption_algorithms: Optional[Sequence[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetCryptoAssessmentWalletsResult
    def get_crypto_assessment_wallets_output(access_level: pulumi.Input[Optional[str]] = None,
                                      assessment_id: pulumi.Input[Optional[str]] = None,
                                      assessment_type: pulumi.Input[Optional[str]] = None,
                                      compartment_id: pulumi.Input[Optional[str]] = None,
                                      compartment_id_in_subtree: pulumi.Input[Optional[bool]] = None,
                                      feature: pulumi.Input[Optional[str]] = None,
                                      filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetCryptoAssessmentWalletsFilterArgs]]]] = None,
                                      target_id: pulumi.Input[Optional[str]] = None,
                                      target_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                      wallet_encryption_algorithms: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                      opts: Optional[InvokeOutputOptions] = None) -> Output[GetCryptoAssessmentWalletsResult]
    func GetCryptoAssessmentWallets(ctx *Context, args *GetCryptoAssessmentWalletsArgs, opts ...InvokeOption) (*GetCryptoAssessmentWalletsResult, error)
    func GetCryptoAssessmentWalletsOutput(ctx *Context, args *GetCryptoAssessmentWalletsOutputArgs, opts ...InvokeOption) GetCryptoAssessmentWalletsResultOutput

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

    public static class GetCryptoAssessmentWallets 
    {
        public static Task<GetCryptoAssessmentWalletsResult> InvokeAsync(GetCryptoAssessmentWalletsArgs args, InvokeOptions? opts = null)
        public static Output<GetCryptoAssessmentWalletsResult> Invoke(GetCryptoAssessmentWalletsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetCryptoAssessmentWalletsResult> Invoke(GetCryptoAssessmentWalletsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetCryptoAssessmentWalletsResult> getCryptoAssessmentWallets(GetCryptoAssessmentWalletsArgs args, InvokeOptions options)
    public static Output<GetCryptoAssessmentWalletsResult> getCryptoAssessmentWallets(GetCryptoAssessmentWalletsArgs args, InvokeOptions options)
    public static Output<GetCryptoAssessmentWalletsResult> getCryptoAssessmentWallets(GetCryptoAssessmentWalletsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: oci:DataSafe/getCryptoAssessmentWallets:getCryptoAssessmentWallets
      arguments:
        # arguments dictionary
    data "oci_data_safe_get_crypto_assessment_wallets" "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.
    AssessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    AssessmentType string
    A filter to return targets from assessments of the specified type.
    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.
    Feature string
    A filter to return only wallets for the specified feature.
    Filters List<GetCryptoAssessmentWalletsFilter>
    TargetId string
    A filter to return only inventory rows associated with the specified target OCID.
    TargetIds List<string>
    A filter to return only resources associated with any of the specified target OCIDs.
    WalletEncryptionAlgorithms List<string>
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    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.
    AssessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    AssessmentType string
    A filter to return targets from assessments of the specified type.
    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.
    Feature string
    A filter to return only wallets for the specified feature.
    Filters []GetCryptoAssessmentWalletsFilter
    TargetId string
    A filter to return only inventory rows associated with the specified target OCID.
    TargetIds []string
    A filter to return only resources associated with any of the specified target OCIDs.
    WalletEncryptionAlgorithms []string
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    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.
    assessment_id string
    A filter to return only resources associated with the specified crypto assessment OCID.
    assessment_type string
    A filter to return targets from assessments of the specified type.
    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.
    feature string
    A filter to return only wallets for the specified feature.
    filters list(object)
    target_id string
    A filter to return only inventory rows associated with the specified target OCID.
    target_ids list(string)
    A filter to return only resources associated with any of the specified target OCIDs.
    wallet_encryption_algorithms list(string)
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    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.
    assessmentId String
    A filter to return only resources associated with the specified crypto assessment OCID.
    assessmentType String
    A filter to return targets from assessments of the specified type.
    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.
    feature String
    A filter to return only wallets for the specified feature.
    filters List<GetCryptoAssessmentWalletsFilter>
    targetId String
    A filter to return only inventory rows associated with the specified target OCID.
    targetIds List<String>
    A filter to return only resources associated with any of the specified target OCIDs.
    walletEncryptionAlgorithms List<String>
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    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.
    assessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    assessmentType string
    A filter to return targets from assessments of the specified type.
    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.
    feature string
    A filter to return only wallets for the specified feature.
    filters GetCryptoAssessmentWalletsFilter[]
    targetId string
    A filter to return only inventory rows associated with the specified target OCID.
    targetIds string[]
    A filter to return only resources associated with any of the specified target OCIDs.
    walletEncryptionAlgorithms string[]
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    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.
    assessment_id str
    A filter to return only resources associated with the specified crypto assessment OCID.
    assessment_type str
    A filter to return targets from assessments of the specified type.
    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.
    feature str
    A filter to return only wallets for the specified feature.
    filters Sequence[GetCryptoAssessmentWalletsFilter]
    target_id str
    A filter to return only inventory rows associated with the specified target OCID.
    target_ids Sequence[str]
    A filter to return only resources associated with any of the specified target OCIDs.
    wallet_encryption_algorithms Sequence[str]
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    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.
    assessmentId String
    A filter to return only resources associated with the specified crypto assessment OCID.
    assessmentType String
    A filter to return targets from assessments of the specified type.
    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.
    feature String
    A filter to return only wallets for the specified feature.
    filters List<Property Map>
    targetId String
    A filter to return only inventory rows associated with the specified target OCID.
    targetIds List<String>
    A filter to return only resources associated with any of the specified target OCIDs.
    walletEncryptionAlgorithms List<String>
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.

    getCryptoAssessmentWallets Result

    The following output properties are available:

    CompartmentId string
    CryptoAssessmentWalletCollections List<GetCryptoAssessmentWalletsCryptoAssessmentWalletCollection>
    The list of crypto_assessment_wallet_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    AssessmentId string
    OCID of the crypto assessment that discovered the wallet.
    AssessmentType string
    CompartmentIdInSubtree bool
    Feature string
    Crypto feature for which wallet details are reported.
    Filters List<GetCryptoAssessmentWalletsFilter>
    TargetId string
    OCID of the target database associated with the wallet.
    TargetIds List<string>
    WalletEncryptionAlgorithms List<string>
    Wallet encryption algorithm.
    CompartmentId string
    CryptoAssessmentWalletCollections []GetCryptoAssessmentWalletsCryptoAssessmentWalletCollection
    The list of crypto_assessment_wallet_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    AssessmentId string
    OCID of the crypto assessment that discovered the wallet.
    AssessmentType string
    CompartmentIdInSubtree bool
    Feature string
    Crypto feature for which wallet details are reported.
    Filters []GetCryptoAssessmentWalletsFilter
    TargetId string
    OCID of the target database associated with the wallet.
    TargetIds []string
    WalletEncryptionAlgorithms []string
    Wallet encryption algorithm.
    compartment_id string
    crypto_assessment_wallet_collections list(object)
    The list of crypto_assessment_wallet_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    access_level string
    assessment_id string
    OCID of the crypto assessment that discovered the wallet.
    assessment_type string
    compartment_id_in_subtree bool
    feature string
    Crypto feature for which wallet details are reported.
    filters list(object)
    target_id string
    OCID of the target database associated with the wallet.
    target_ids list(string)
    wallet_encryption_algorithms list(string)
    Wallet encryption algorithm.
    compartmentId String
    cryptoAssessmentWalletCollections List<GetCryptoAssessmentWalletsCryptoAssessmentWalletCollection>
    The list of crypto_assessment_wallet_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    assessmentId String
    OCID of the crypto assessment that discovered the wallet.
    assessmentType String
    compartmentIdInSubtree Boolean
    feature String
    Crypto feature for which wallet details are reported.
    filters List<GetCryptoAssessmentWalletsFilter>
    targetId String
    OCID of the target database associated with the wallet.
    targetIds List<String>
    walletEncryptionAlgorithms List<String>
    Wallet encryption algorithm.
    compartmentId string
    cryptoAssessmentWalletCollections GetCryptoAssessmentWalletsCryptoAssessmentWalletCollection[]
    The list of crypto_assessment_wallet_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    accessLevel string
    assessmentId string
    OCID of the crypto assessment that discovered the wallet.
    assessmentType string
    compartmentIdInSubtree boolean
    feature string
    Crypto feature for which wallet details are reported.
    filters GetCryptoAssessmentWalletsFilter[]
    targetId string
    OCID of the target database associated with the wallet.
    targetIds string[]
    walletEncryptionAlgorithms string[]
    Wallet encryption algorithm.
    compartment_id str
    crypto_assessment_wallet_collections Sequence[GetCryptoAssessmentWalletsCryptoAssessmentWalletCollection]
    The list of crypto_assessment_wallet_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    access_level str
    assessment_id str
    OCID of the crypto assessment that discovered the wallet.
    assessment_type str
    compartment_id_in_subtree bool
    feature str
    Crypto feature for which wallet details are reported.
    filters Sequence[GetCryptoAssessmentWalletsFilter]
    target_id str
    OCID of the target database associated with the wallet.
    target_ids Sequence[str]
    wallet_encryption_algorithms Sequence[str]
    Wallet encryption algorithm.
    compartmentId String
    cryptoAssessmentWalletCollections List<Property Map>
    The list of crypto_assessment_wallet_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    assessmentId String
    OCID of the crypto assessment that discovered the wallet.
    assessmentType String
    compartmentIdInSubtree Boolean
    feature String
    Crypto feature for which wallet details are reported.
    filters List<Property Map>
    targetId String
    OCID of the target database associated with the wallet.
    targetIds List<String>
    walletEncryptionAlgorithms List<String>
    Wallet encryption algorithm.

    Supporting Types

    GetCryptoAssessmentWalletsCryptoAssessmentWalletCollection

    Items List<GetCryptoAssessmentWalletsCryptoAssessmentWalletCollectionItem>
    Wallet details for the specified crypto assessment.
    Items []GetCryptoAssessmentWalletsCryptoAssessmentWalletCollectionItem
    Wallet details for the specified crypto assessment.
    items list(object)
    Wallet details for the specified crypto assessment.
    items List<GetCryptoAssessmentWalletsCryptoAssessmentWalletCollectionItem>
    Wallet details for the specified crypto assessment.
    items GetCryptoAssessmentWalletsCryptoAssessmentWalletCollectionItem[]
    Wallet details for the specified crypto assessment.
    items Sequence[GetCryptoAssessmentWalletsCryptoAssessmentWalletCollectionItem]
    Wallet details for the specified crypto assessment.
    items List<Property Map>
    Wallet details for the specified crypto assessment.

    GetCryptoAssessmentWalletsCryptoAssessmentWalletCollectionItem

    AssessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    AutoLogin string
    Whether wallet auto-login is enabled.
    Feature string
    A filter to return only wallets for the specified feature.
    TargetId string
    A filter to return only inventory rows associated with the specified target OCID.
    TimeCreated string
    Wallet creation time in RFC3339 format.
    TimeLastAssessed string
    The date and time the associated crypto assessment was last assessed, in RFC3339 format.
    WalletEncryptionAlgorithm string
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    WalletLocation string
    Wallet path for the feature.
    AssessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    AutoLogin string
    Whether wallet auto-login is enabled.
    Feature string
    A filter to return only wallets for the specified feature.
    TargetId string
    A filter to return only inventory rows associated with the specified target OCID.
    TimeCreated string
    Wallet creation time in RFC3339 format.
    TimeLastAssessed string
    The date and time the associated crypto assessment was last assessed, in RFC3339 format.
    WalletEncryptionAlgorithm string
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    WalletLocation string
    Wallet path for the feature.
    assessment_id string
    A filter to return only resources associated with the specified crypto assessment OCID.
    auto_login string
    Whether wallet auto-login is enabled.
    feature string
    A filter to return only wallets for the specified feature.
    target_id string
    A filter to return only inventory rows associated with the specified target OCID.
    time_created string
    Wallet creation time in RFC3339 format.
    time_last_assessed string
    The date and time the associated crypto assessment was last assessed, in RFC3339 format.
    wallet_encryption_algorithm string
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    wallet_location string
    Wallet path for the feature.
    assessmentId String
    A filter to return only resources associated with the specified crypto assessment OCID.
    autoLogin String
    Whether wallet auto-login is enabled.
    feature String
    A filter to return only wallets for the specified feature.
    targetId String
    A filter to return only inventory rows associated with the specified target OCID.
    timeCreated String
    Wallet creation time in RFC3339 format.
    timeLastAssessed String
    The date and time the associated crypto assessment was last assessed, in RFC3339 format.
    walletEncryptionAlgorithm String
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    walletLocation String
    Wallet path for the feature.
    assessmentId string
    A filter to return only resources associated with the specified crypto assessment OCID.
    autoLogin string
    Whether wallet auto-login is enabled.
    feature string
    A filter to return only wallets for the specified feature.
    targetId string
    A filter to return only inventory rows associated with the specified target OCID.
    timeCreated string
    Wallet creation time in RFC3339 format.
    timeLastAssessed string
    The date and time the associated crypto assessment was last assessed, in RFC3339 format.
    walletEncryptionAlgorithm string
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    walletLocation string
    Wallet path for the feature.
    assessment_id str
    A filter to return only resources associated with the specified crypto assessment OCID.
    auto_login str
    Whether wallet auto-login is enabled.
    feature str
    A filter to return only wallets for the specified feature.
    target_id str
    A filter to return only inventory rows associated with the specified target OCID.
    time_created str
    Wallet creation time in RFC3339 format.
    time_last_assessed str
    The date and time the associated crypto assessment was last assessed, in RFC3339 format.
    wallet_encryption_algorithm str
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    wallet_location str
    Wallet path for the feature.
    assessmentId String
    A filter to return only resources associated with the specified crypto assessment OCID.
    autoLogin String
    Whether wallet auto-login is enabled.
    feature String
    A filter to return only wallets for the specified feature.
    targetId String
    A filter to return only inventory rows associated with the specified target OCID.
    timeCreated String
    Wallet creation time in RFC3339 format.
    timeLastAssessed String
    The date and time the associated crypto assessment was last assessed, in RFC3339 format.
    walletEncryptionAlgorithm String
    A filter to return only wallets whose encryption algorithm exactly matches any of the specified values, case-insensitively.
    walletLocation String
    Wallet path for the feature.

    GetCryptoAssessmentWalletsFilter

    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