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 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 dictionarydata "oci_data_safe_get_crypto_assessment_wallets" "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.
- 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 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.
- Feature string
- A filter to return only wallets for the specified feature.
- Filters
List<Get
Crypto Assessment Wallets Filter> - 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 List<string>Algorithms - 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 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.
- Feature string
- A filter to return only wallets for the specified feature.
- Filters
[]Get
Crypto Assessment Wallets Filter - Target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- Target
Ids []string - A filter to return only resources associated with any of the specified target OCIDs.
- Wallet
Encryption []stringAlgorithms - 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_ 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.
- 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_ list(string)algorithms - 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 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.
- feature String
- A filter to return only wallets for the specified feature.
- filters
List<Get
Crypto Assessment Wallets Filter> - 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 List<String>Algorithms - 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 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.
- feature string
- A filter to return only wallets for the specified feature.
- filters
Get
Crypto Assessment Wallets Filter[] - target
Id string - A filter to return only inventory rows associated with the specified target OCID.
- target
Ids string[] - A filter to return only resources associated with any of the specified target OCIDs.
- wallet
Encryption string[]Algorithms - 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_ 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.
- feature str
- A filter to return only wallets for the specified feature.
- filters
Sequence[Get
Crypto Assessment Wallets Filter] - 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_ Sequence[str]algorithms - 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 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.
- feature String
- A filter to return only wallets for the specified feature.
- filters List<Property Map>
- 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 List<String>Algorithms - 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:
- Compartment
Id string - Crypto
Assessment List<GetWallet Collections Crypto Assessment Wallets Crypto Assessment Wallet Collection> - 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 boolIn Subtree - Feature string
- Crypto feature for which wallet details are reported.
- Filters
List<Get
Crypto Assessment Wallets Filter> - Target
Id string - OCID of the target database associated with the wallet.
- Target
Ids List<string> - Wallet
Encryption List<string>Algorithms - Wallet encryption algorithm.
- Compartment
Id string - Crypto
Assessment []GetWallet Collections Crypto Assessment Wallets Crypto Assessment Wallet Collection - 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 boolIn Subtree - Feature string
- Crypto feature for which wallet details are reported.
- Filters
[]Get
Crypto Assessment Wallets Filter - Target
Id string - OCID of the target database associated with the wallet.
- Target
Ids []string - Wallet
Encryption []stringAlgorithms - Wallet encryption algorithm.
- compartment_
id string - crypto_
assessment_ list(object)wallet_ collections - 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_ boolin_ subtree - 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_ list(string)algorithms - Wallet encryption algorithm.
- compartment
Id String - crypto
Assessment List<GetWallet Collections Crypto Assessment Wallets Crypto Assessment Wallet Collection> - 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 BooleanIn Subtree - feature String
- Crypto feature for which wallet details are reported.
- filters
List<Get
Crypto Assessment Wallets Filter> - target
Id String - OCID of the target database associated with the wallet.
- target
Ids List<String> - wallet
Encryption List<String>Algorithms - Wallet encryption algorithm.
- compartment
Id string - crypto
Assessment GetWallet Collections Crypto Assessment Wallets Crypto Assessment Wallet Collection[] - 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 booleanIn Subtree - feature string
- Crypto feature for which wallet details are reported.
- filters
Get
Crypto Assessment Wallets Filter[] - target
Id string - OCID of the target database associated with the wallet.
- target
Ids string[] - wallet
Encryption string[]Algorithms - Wallet encryption algorithm.
- compartment_
id str - crypto_
assessment_ Sequence[Getwallet_ collections Crypto Assessment Wallets Crypto Assessment Wallet Collection] - 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_ boolin_ subtree - feature str
- Crypto feature for which wallet details are reported.
- filters
Sequence[Get
Crypto Assessment Wallets Filter] - target_
id str - OCID of the target database associated with the wallet.
- target_
ids Sequence[str] - wallet_
encryption_ Sequence[str]algorithms - Wallet encryption algorithm.
- compartment
Id String - crypto
Assessment List<Property Map>Wallet Collections - 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 BooleanIn Subtree - feature String
- Crypto feature for which wallet details are reported.
- filters List<Property Map>
- target
Id String - OCID of the target database associated with the wallet.
- target
Ids List<String> - wallet
Encryption List<String>Algorithms - Wallet encryption algorithm.
Supporting Types
GetCryptoAssessmentWalletsCryptoAssessmentWalletCollection
- Items
List<Get
Crypto Assessment Wallets Crypto Assessment Wallet Collection Item> - Wallet details for the specified crypto assessment.
- Items
[]Get
Crypto Assessment Wallets Crypto Assessment Wallet Collection Item - Wallet details for the specified crypto assessment.
- items list(object)
- Wallet details for the specified crypto assessment.
- items
List<Get
Crypto Assessment Wallets Crypto Assessment Wallet Collection Item> - Wallet details for the specified crypto assessment.
- items
Get
Crypto Assessment Wallets Crypto Assessment Wallet Collection Item[] - Wallet details for the specified crypto assessment.
- items
Sequence[Get
Crypto Assessment Wallets Crypto Assessment Wallet Collection Item] - Wallet details for the specified crypto assessment.
- items List<Property Map>
- Wallet details for the specified crypto assessment.
GetCryptoAssessmentWalletsCryptoAssessmentWalletCollectionItem
- 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 stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- Wallet
Encryption stringAlgorithm - 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.
- 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 stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- Wallet
Encryption stringAlgorithm - 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.
- 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_ stringassessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- wallet_
encryption_ stringalgorithm - 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.
- 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 StringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- wallet
Encryption StringAlgorithm - 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.
- 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 stringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- wallet
Encryption stringAlgorithm - 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.
- 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_ strassessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- wallet_
encryption_ stralgorithm - 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.
- 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 StringAssessed - The date and time the associated crypto assessment was last assessed, in RFC3339 format.
- wallet
Encryption StringAlgorithm - 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.
GetCryptoAssessmentWalletsFilter
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