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 Assessments in Oracle Cloud Infrastructure Data Safe service.
Gets a list of crypto assessments with filtering and pagination support.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCryptoAssessments = oci.datasafe.getCryptoAssessments({
compartmentId: compartmentId,
accessLevel: cryptoAssessmentAccessLevel,
assessmentId: testAssessment.id,
compartmentIdInSubtree: cryptoAssessmentCompartmentIdInSubtree === "true",
displayName: cryptoAssessmentDisplayName,
isAssessmentScheduled: cryptoAssessmentIsAssessmentScheduled === "true",
postureCategories: cryptoAssessmentPostureCategory,
state: cryptoAssessmentState,
targetDatabaseGroupId: testTargetDatabaseGroup.id,
targetId: testTarget.id,
targetIds: cryptoAssessmentTargetIds,
targetType: cryptoAssessmentTargetType,
type: cryptoAssessmentType,
});
import pulumi
import pulumi_oci as oci
test_crypto_assessments = oci.datasafe.get_crypto_assessments(compartment_id=compartment_id,
access_level=crypto_assessment_access_level,
assessment_id=test_assessment["id"],
compartment_id_in_subtree=crypto_assessment_compartment_id_in_subtree == "true",
display_name=crypto_assessment_display_name,
is_assessment_scheduled=crypto_assessment_is_assessment_scheduled == "true",
posture_categories=crypto_assessment_posture_category,
state=crypto_assessment_state,
target_database_group_id=test_target_database_group["id"],
target_id=test_target["id"],
target_ids=crypto_assessment_target_ids,
target_type=crypto_assessment_target_type,
type=crypto_assessment_type)
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.GetCryptoAssessments(ctx, &datasafe.GetCryptoAssessmentsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(cryptoAssessmentAccessLevel),
AssessmentId: pulumi.StringRef(testAssessment.Id),
CompartmentIdInSubtree: pulumi.BoolRef(cryptoAssessmentCompartmentIdInSubtree),
DisplayName: pulumi.StringRef(cryptoAssessmentDisplayName),
IsAssessmentScheduled: pulumi.BoolRef(cryptoAssessmentIsAssessmentScheduled),
PostureCategories: pulumi.ToArray(cryptoAssessmentPostureCategory),
State: pulumi.StringRef(cryptoAssessmentState),
TargetDatabaseGroupId: pulumi.StringRef(testTargetDatabaseGroup.Id),
TargetId: pulumi.StringRef(testTarget.Id),
TargetIds: pulumi.ToArray(cryptoAssessmentTargetIds),
TargetType: pulumi.StringRef(cryptoAssessmentTargetType),
Type: pulumi.StringRef(cryptoAssessmentType),
}, 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 testCryptoAssessments = Oci.DataSafe.GetCryptoAssessments.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = cryptoAssessmentAccessLevel,
AssessmentId = testAssessment.Id,
CompartmentIdInSubtree = cryptoAssessmentCompartmentIdInSubtree,
DisplayName = cryptoAssessmentDisplayName,
IsAssessmentScheduled = cryptoAssessmentIsAssessmentScheduled,
PostureCategories = cryptoAssessmentPostureCategory,
State = cryptoAssessmentState,
TargetDatabaseGroupId = testTargetDatabaseGroup.Id,
TargetId = testTarget.Id,
TargetIds = cryptoAssessmentTargetIds,
TargetType = cryptoAssessmentTargetType,
Type = cryptoAssessmentType,
});
});
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.GetCryptoAssessmentsArgs;
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 testCryptoAssessments = DataSafeFunctions.getCryptoAssessments(GetCryptoAssessmentsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(cryptoAssessmentAccessLevel)
.assessmentId(testAssessment.id())
.compartmentIdInSubtree(cryptoAssessmentCompartmentIdInSubtree)
.displayName(cryptoAssessmentDisplayName)
.isAssessmentScheduled(cryptoAssessmentIsAssessmentScheduled)
.postureCategories(cryptoAssessmentPostureCategory)
.state(cryptoAssessmentState)
.targetDatabaseGroupId(testTargetDatabaseGroup.id())
.targetId(testTarget.id())
.targetIds(cryptoAssessmentTargetIds)
.targetType(cryptoAssessmentTargetType)
.type(cryptoAssessmentType)
.build());
}
}
variables:
testCryptoAssessments:
fn::invoke:
function: oci:DataSafe:getCryptoAssessments
arguments:
compartmentId: ${compartmentId}
accessLevel: ${cryptoAssessmentAccessLevel}
assessmentId: ${testAssessment.id}
compartmentIdInSubtree: ${cryptoAssessmentCompartmentIdInSubtree}
displayName: ${cryptoAssessmentDisplayName}
isAssessmentScheduled: ${cryptoAssessmentIsAssessmentScheduled}
postureCategories: ${cryptoAssessmentPostureCategory}
state: ${cryptoAssessmentState}
targetDatabaseGroupId: ${testTargetDatabaseGroup.id}
targetId: ${testTarget.id}
targetIds: ${cryptoAssessmentTargetIds}
targetType: ${cryptoAssessmentTargetType}
type: ${cryptoAssessmentType}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_datasafe_getcryptoassessments" "testCryptoAssessments" {
compartment_id = compartmentId
access_level = cryptoAssessmentAccessLevel
assessment_id = testAssessment.id
compartment_id_in_subtree = cryptoAssessmentCompartmentIdInSubtree
display_name = cryptoAssessmentDisplayName
is_assessment_scheduled = cryptoAssessmentIsAssessmentScheduled
posture_categories = cryptoAssessmentPostureCategory
state = cryptoAssessmentState
target_database_group_id = testTargetDatabaseGroup.id
target_id = testTarget.id
target_ids = cryptoAssessmentTargetIds
target_type = cryptoAssessmentTargetType
type = cryptoAssessmentType
}
Using getCryptoAssessments
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 getCryptoAssessments(args: GetCryptoAssessmentsArgs, opts?: InvokeOptions): Promise<GetCryptoAssessmentsResult>
function getCryptoAssessmentsOutput(args: GetCryptoAssessmentsOutputArgs, opts?: InvokeOutputOptions): Output<GetCryptoAssessmentsResult>def get_crypto_assessments(access_level: Optional[str] = None,
assessment_id: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetCryptoAssessmentsFilter]] = None,
is_assessment_scheduled: Optional[bool] = None,
posture_categories: Optional[Sequence[str]] = None,
state: Optional[str] = None,
target_database_group_id: Optional[str] = None,
target_id: Optional[str] = None,
target_ids: Optional[Sequence[str]] = None,
target_type: Optional[str] = None,
type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCryptoAssessmentsResult
def get_crypto_assessments_output(access_level: pulumi.Input[Optional[str]] = None,
assessment_id: pulumi.Input[Optional[str]] = None,
compartment_id: pulumi.Input[Optional[str]] = None,
compartment_id_in_subtree: pulumi.Input[Optional[bool]] = None,
display_name: pulumi.Input[Optional[str]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetCryptoAssessmentsFilterArgs]]]] = None,
is_assessment_scheduled: pulumi.Input[Optional[bool]] = None,
posture_categories: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
state: pulumi.Input[Optional[str]] = None,
target_database_group_id: pulumi.Input[Optional[str]] = None,
target_id: pulumi.Input[Optional[str]] = None,
target_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
target_type: pulumi.Input[Optional[str]] = None,
type: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetCryptoAssessmentsResult]func GetCryptoAssessments(ctx *Context, args *GetCryptoAssessmentsArgs, opts ...InvokeOption) (*GetCryptoAssessmentsResult, error)
func GetCryptoAssessmentsOutput(ctx *Context, args *GetCryptoAssessmentsOutputArgs, opts ...InvokeOption) GetCryptoAssessmentsResultOutput> Note: This function is named GetCryptoAssessments in the Go SDK.
public static class GetCryptoAssessments
{
public static Task<GetCryptoAssessmentsResult> InvokeAsync(GetCryptoAssessmentsArgs args, InvokeOptions? opts = null)
public static Output<GetCryptoAssessmentsResult> Invoke(GetCryptoAssessmentsInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetCryptoAssessmentsResult> Invoke(GetCryptoAssessmentsInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetCryptoAssessmentsResult> getCryptoAssessments(GetCryptoAssessmentsArgs args, InvokeOptions options)
public static Output<GetCryptoAssessmentsResult> getCryptoAssessments(GetCryptoAssessmentsArgs args, InvokeOptions options)
public static Output<GetCryptoAssessmentsResult> getCryptoAssessments(GetCryptoAssessmentsArgs args, InvokeOutputOptions options)
fn::invoke:
function: oci:DataSafe/getCryptoAssessments:getCryptoAssessments
arguments:
# arguments dictionarydata "oci_data_safe_get_crypto_assessments" "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.
- 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.
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
List<Get
Crypto Assessments Filter> - Is
Assessment boolScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- Posture
Categories List<string> - A filter to return only crypto assessments that match any of the specified posture categories.
- State string
- A filter to return only resources that match the specified lifecycle state.
- Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- Target
Ids List<string> - A filter to return only resources associated with any of the specified target OCIDs.
- Target
Type string - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - Type string
- A filter to return only crypto assessments that match the specified type.
- 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.
- 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.
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
[]Get
Crypto Assessments Filter - Is
Assessment boolScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- Posture
Categories []string - A filter to return only crypto assessments that match any of the specified posture categories.
- State string
- A filter to return only resources that match the specified lifecycle state.
- Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- Target
Ids []string - A filter to return only resources associated with any of the specified target OCIDs.
- Target
Type string - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - Type string
- A filter to return only crypto assessments that match the specified type.
- 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.
- 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.
- display_
name string - A filter to return only resources that match the specified display name.
- filters list(object)
- is_
assessment_ boolscheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- posture_
categories list(string) - A filter to return only crypto assessments that match any of the specified posture categories.
- state string
- A filter to return only resources that match the specified lifecycle state.
- target_
database_ stringgroup_ id - A filter to return the target database group that matches the specified OCID.
- target_
id string - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target_
ids list(string) - A filter to return only resources associated with any of the specified target OCIDs.
- target_
type string - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - type string
- A filter to return only crypto assessments that match the specified type.
- 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.
- 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.
- display
Name String - A filter to return only resources that match the specified display name.
- filters
List<Get
Crypto Assessments Filter> - is
Assessment BooleanScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- posture
Categories List<String> - A filter to return only crypto assessments that match any of the specified posture categories.
- state String
- A filter to return only resources that match the specified lifecycle state.
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target
Ids List<String> - A filter to return only resources associated with any of the specified target OCIDs.
- target
Type String - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - type String
- A filter to return only crypto assessments that match the specified type.
- 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.
- 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.
- display
Name string - A filter to return only resources that match the specified display name.
- filters
Get
Crypto Assessments Filter[] - is
Assessment booleanScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- posture
Categories string[] - A filter to return only crypto assessments that match any of the specified posture categories.
- state string
- A filter to return only resources that match the specified lifecycle state.
- target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id string - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target
Ids string[] - A filter to return only resources associated with any of the specified target OCIDs.
- target
Type string - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - type string
- A filter to return only crypto assessments that match the specified type.
- 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.
- 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.
- display_
name str - A filter to return only resources that match the specified display name.
- filters
Sequence[Get
Crypto Assessments Filter] - is_
assessment_ boolscheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- posture_
categories Sequence[str] - A filter to return only crypto assessments that match any of the specified posture categories.
- state str
- A filter to return only resources that match the specified lifecycle state.
- target_
database_ strgroup_ id - A filter to return the target database group that matches the specified OCID.
- target_
id str - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target_
ids Sequence[str] - A filter to return only resources associated with any of the specified target OCIDs.
- target_
type str - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - type str
- A filter to return only crypto assessments that match the specified type.
- 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.
- 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.
- display
Name String - A filter to return only resources that match the specified display name.
- filters List<Property Map>
- is
Assessment BooleanScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- posture
Categories List<String> - A filter to return only crypto assessments that match any of the specified posture categories.
- state String
- A filter to return only resources that match the specified lifecycle state.
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target
Ids List<String> - A filter to return only resources associated with any of the specified target OCIDs.
- target
Type String - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - type String
- A filter to return only crypto assessments that match the specified type.
getCryptoAssessments Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment that contains the crypto assessment.
- Crypto
Assessment List<GetCollections Crypto Assessments Crypto Assessment Collection> - The list of crypto_assessment_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Assessment
Id string - Compartment
Id boolIn Subtree - Display
Name string - The display name of the crypto assessment.
- Filters
List<Get
Crypto Assessments Filter> - Is
Assessment boolScheduled - Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
- Posture
Categories List<string> - Overall posture category for the crypto assessment.
- State string
- The current lifecycle state of the crypto assessment.
- Target
Database stringGroup Id - The OCID of the target database group. This is returned when
targetTypeisTARGET_DATABASE_GROUP. - Target
Id string - The OCID of the target database.
- Target
Ids List<string> - Target
Type string - The target type of the crypto assessment.
- Type string
- The type of this crypto assessment.
- Compartment
Id string - The OCID of the compartment that contains the crypto assessment.
- Crypto
Assessment []GetCollections Crypto Assessments Crypto Assessment Collection - The list of crypto_assessment_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Assessment
Id string - Compartment
Id boolIn Subtree - Display
Name string - The display name of the crypto assessment.
- Filters
[]Get
Crypto Assessments Filter - Is
Assessment boolScheduled - Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
- Posture
Categories []string - Overall posture category for the crypto assessment.
- State string
- The current lifecycle state of the crypto assessment.
- Target
Database stringGroup Id - The OCID of the target database group. This is returned when
targetTypeisTARGET_DATABASE_GROUP. - Target
Id string - The OCID of the target database.
- Target
Ids []string - Target
Type string - The target type of the crypto assessment.
- Type string
- The type of this crypto assessment.
- compartment_
id string - The OCID of the compartment that contains the crypto assessment.
- crypto_
assessment_ list(object)collections - The list of crypto_assessment_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- access_
level string - assessment_
id string - compartment_
id_ boolin_ subtree - display_
name string - The display name of the crypto assessment.
- filters list(object)
- is_
assessment_ boolscheduled - Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
- posture_
categories list(string) - Overall posture category for the crypto assessment.
- state string
- The current lifecycle state of the crypto assessment.
- target_
database_ stringgroup_ id - The OCID of the target database group. This is returned when
targetTypeisTARGET_DATABASE_GROUP. - target_
id string - The OCID of the target database.
- target_
ids list(string) - target_
type string - The target type of the crypto assessment.
- type string
- The type of this crypto assessment.
- compartment
Id String - The OCID of the compartment that contains the crypto assessment.
- crypto
Assessment List<GetCollections Crypto Assessments Crypto Assessment Collection> - The list of crypto_assessment_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - assessment
Id String - compartment
Id BooleanIn Subtree - display
Name String - The display name of the crypto assessment.
- filters
List<Get
Crypto Assessments Filter> - is
Assessment BooleanScheduled - Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
- posture
Categories List<String> - Overall posture category for the crypto assessment.
- state String
- The current lifecycle state of the crypto assessment.
- target
Database StringGroup Id - The OCID of the target database group. This is returned when
targetTypeisTARGET_DATABASE_GROUP. - target
Id String - The OCID of the target database.
- target
Ids List<String> - target
Type String - The target type of the crypto assessment.
- type String
- The type of this crypto assessment.
- compartment
Id string - The OCID of the compartment that contains the crypto assessment.
- crypto
Assessment GetCollections Crypto Assessments Crypto Assessment Collection[] - The list of crypto_assessment_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- access
Level string - assessment
Id string - compartment
Id booleanIn Subtree - display
Name string - The display name of the crypto assessment.
- filters
Get
Crypto Assessments Filter[] - is
Assessment booleanScheduled - Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
- posture
Categories string[] - Overall posture category for the crypto assessment.
- state string
- The current lifecycle state of the crypto assessment.
- target
Database stringGroup Id - The OCID of the target database group. This is returned when
targetTypeisTARGET_DATABASE_GROUP. - target
Id string - The OCID of the target database.
- target
Ids string[] - target
Type string - The target type of the crypto assessment.
- type string
- The type of this crypto assessment.
- compartment_
id str - The OCID of the compartment that contains the crypto assessment.
- crypto_
assessment_ Sequence[Getcollections Crypto Assessments Crypto Assessment Collection] - The list of crypto_assessment_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- access_
level str - assessment_
id str - compartment_
id_ boolin_ subtree - display_
name str - The display name of the crypto assessment.
- filters
Sequence[Get
Crypto Assessments Filter] - is_
assessment_ boolscheduled - Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
- posture_
categories Sequence[str] - Overall posture category for the crypto assessment.
- state str
- The current lifecycle state of the crypto assessment.
- target_
database_ strgroup_ id - The OCID of the target database group. This is returned when
targetTypeisTARGET_DATABASE_GROUP. - target_
id str - The OCID of the target database.
- target_
ids Sequence[str] - target_
type str - The target type of the crypto assessment.
- type str
- The type of this crypto assessment.
- compartment
Id String - The OCID of the compartment that contains the crypto assessment.
- crypto
Assessment List<Property Map>Collections - The list of crypto_assessment_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - assessment
Id String - compartment
Id BooleanIn Subtree - display
Name String - The display name of the crypto assessment.
- filters List<Property Map>
- is
Assessment BooleanScheduled - Indicates whether scheduled execution is active for this crypto assessment. When false, the schedule value is retained but scheduled execution is paused.
- posture
Categories List<String> - Overall posture category for the crypto assessment.
- state String
- The current lifecycle state of the crypto assessment.
- target
Database StringGroup Id - The OCID of the target database group. This is returned when
targetTypeisTARGET_DATABASE_GROUP. - target
Id String - The OCID of the target database.
- target
Ids List<String> - target
Type String - The target type of the crypto assessment.
- type String
- The type of this crypto assessment.
Supporting Types
GetCryptoAssessmentsCryptoAssessmentCollection
GetCryptoAssessmentsCryptoAssessmentCollectionItem
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Crypto
Assessment stringId - Crypto
Postures List<GetCrypto Assessments Crypto Assessment Collection Item Crypto Posture> - Cryptographic posture details captured by the assessment.
- Crypto
Provider string - Cryptographic provider and version information observed on the target.
- Database
Architecture string - The architecture of the assessed target database.
- Database
Name string - The name of the assessed target database.
- Database
Version string - The version of the assessed target database.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"} - Description string
- The description of the crypto assessment.
- Display
Name string - A filter to return only resources that match the specified display name.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"} - Id string
- The OCID of the crypto assessment.
- Is
Assessment boolScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- Issue
Count int - Number of crypto issues detected in this assessment.
- Lifecycle
Details string - Details about the current lifecycle state of the crypto assessment.
- Posture
Category string - A filter to return only crypto assessments that match any of the specified posture categories.
- Schedule string
- The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
- State string
- A filter to return only resources that match the specified lifecycle state.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"} - Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- Target
Type string - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - Targets
With intIssues Count - Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
- Time
Created string - The date and time the crypto assessment was created, in RFC3339 format.
- Time
Last stringAssessed - The date and time the crypto posture was last assessed, in RFC3339 format.
- Time
Updated string - The date and time the crypto assessment was last updated, in RFC3339 format.
- Triggered
By string - The actor that created the assessment.
- Type string
- A filter to return only crypto assessments that match the specified type.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Crypto
Assessment stringId - Crypto
Postures []GetCrypto Assessments Crypto Assessment Collection Item Crypto Posture - Cryptographic posture details captured by the assessment.
- Crypto
Provider string - Cryptographic provider and version information observed on the target.
- Database
Architecture string - The architecture of the assessed target database.
- Database
Name string - The name of the assessed target database.
- Database
Version string - The version of the assessed target database.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"} - Description string
- The description of the crypto assessment.
- Display
Name string - A filter to return only resources that match the specified display name.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"} - Id string
- The OCID of the crypto assessment.
- Is
Assessment boolScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- Issue
Count int - Number of crypto issues detected in this assessment.
- Lifecycle
Details string - Details about the current lifecycle state of the crypto assessment.
- Posture
Category string - A filter to return only crypto assessments that match any of the specified posture categories.
- Schedule string
- The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
- State string
- A filter to return only resources that match the specified lifecycle state.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"} - Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- Target
Type string - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - Targets
With intIssues Count - Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
- Time
Created string - The date and time the crypto assessment was created, in RFC3339 format.
- Time
Last stringAssessed - The date and time the crypto posture was last assessed, in RFC3339 format.
- Time
Updated string - The date and time the crypto assessment was last updated, in RFC3339 format.
- Triggered
By string - The actor that created the assessment.
- Type string
- A filter to return only crypto assessments that match the specified type.
- compartment_
id string - A filter to return only resources that match the specified compartment OCID.
- crypto_
assessment_ stringid - crypto_
postures list(object) - Cryptographic posture details captured by the assessment.
- crypto_
provider string - Cryptographic provider and version information observed on the target.
- database_
architecture string - The architecture of the assessed target database.
- database_
name string - The name of the assessed target database.
- database_
version string - The version of the assessed target database.
- map(string)
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"} - description string
- The description of the crypto assessment.
- display_
name string - A filter to return only resources that match the specified display name.
- map(string)
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"} - id string
- The OCID of the crypto assessment.
- is_
assessment_ boolscheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- issue_
count number - Number of crypto issues detected in this assessment.
- lifecycle_
details string - Details about the current lifecycle state of the crypto assessment.
- posture_
category string - A filter to return only crypto assessments that match any of the specified posture categories.
- schedule string
- The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
- state string
- A filter to return only resources that match the specified lifecycle state.
- map(string)
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"} - target_
database_ stringgroup_ id - A filter to return the target database group that matches the specified OCID.
- target_
id string - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target_
type string - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - targets_
with_ numberissues_ count - Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
- time_
created string - The date and time the crypto assessment was created, in RFC3339 format.
- time_
last_ stringassessed - The date and time the crypto posture was last assessed, in RFC3339 format.
- time_
updated string - The date and time the crypto assessment was last updated, in RFC3339 format.
- triggered_
by string - The actor that created the assessment.
- type string
- A filter to return only crypto assessments that match the specified type.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- crypto
Assessment StringId - crypto
Postures List<GetCrypto Assessments Crypto Assessment Collection Item Crypto Posture> - Cryptographic posture details captured by the assessment.
- crypto
Provider String - Cryptographic provider and version information observed on the target.
- database
Architecture String - The architecture of the assessed target database.
- database
Name String - The name of the assessed target database.
- database
Version String - The version of the assessed target database.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"} - description String
- The description of the crypto assessment.
- display
Name String - A filter to return only resources that match the specified display name.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"} - id String
- The OCID of the crypto assessment.
- is
Assessment BooleanScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- issue
Count Integer - Number of crypto issues detected in this assessment.
- lifecycle
Details String - Details about the current lifecycle state of the crypto assessment.
- posture
Category String - A filter to return only crypto assessments that match any of the specified posture categories.
- schedule String
- The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
- state String
- A filter to return only resources that match the specified lifecycle state.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"} - target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target
Type String - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - targets
With IntegerIssues Count - Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
- time
Created String - The date and time the crypto assessment was created, in RFC3339 format.
- time
Last StringAssessed - The date and time the crypto posture was last assessed, in RFC3339 format.
- time
Updated String - The date and time the crypto assessment was last updated, in RFC3339 format.
- triggered
By String - The actor that created the assessment.
- type String
- A filter to return only crypto assessments that match the specified type.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- crypto
Assessment stringId - crypto
Postures GetCrypto Assessments Crypto Assessment Collection Item Crypto Posture[] - Cryptographic posture details captured by the assessment.
- crypto
Provider string - Cryptographic provider and version information observed on the target.
- database
Architecture string - The architecture of the assessed target database.
- database
Name string - The name of the assessed target database.
- database
Version string - The version of the assessed target database.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"} - description string
- The description of the crypto assessment.
- display
Name string - A filter to return only resources that match the specified display name.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"} - id string
- The OCID of the crypto assessment.
- is
Assessment booleanScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- issue
Count number - Number of crypto issues detected in this assessment.
- lifecycle
Details string - Details about the current lifecycle state of the crypto assessment.
- posture
Category string - A filter to return only crypto assessments that match any of the specified posture categories.
- schedule string
- The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
- state string
- A filter to return only resources that match the specified lifecycle state.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"} - target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id string - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target
Type string - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - targets
With numberIssues Count - Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
- time
Created string - The date and time the crypto assessment was created, in RFC3339 format.
- time
Last stringAssessed - The date and time the crypto posture was last assessed, in RFC3339 format.
- time
Updated string - The date and time the crypto assessment was last updated, in RFC3339 format.
- triggered
By string - The actor that created the assessment.
- type string
- A filter to return only crypto assessments that match the specified type.
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- crypto_
assessment_ strid - crypto_
postures Sequence[GetCrypto Assessments Crypto Assessment Collection Item Crypto Posture] - Cryptographic posture details captured by the assessment.
- crypto_
provider str - Cryptographic provider and version information observed on the target.
- database_
architecture str - The architecture of the assessed target database.
- database_
name str - The name of the assessed target database.
- database_
version str - The version of the assessed target database.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"} - description str
- The description of the crypto assessment.
- display_
name str - A filter to return only resources that match the specified display name.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"} - id str
- The OCID of the crypto assessment.
- is_
assessment_ boolscheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- issue_
count int - Number of crypto issues detected in this assessment.
- lifecycle_
details str - Details about the current lifecycle state of the crypto assessment.
- posture_
category str - A filter to return only crypto assessments that match any of the specified posture categories.
- schedule str
- The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
- state str
- A filter to return only resources that match the specified lifecycle state.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"} - target_
database_ strgroup_ id - A filter to return the target database group that matches the specified OCID.
- target_
id str - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target_
type str - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - targets_
with_ intissues_ count - Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
- time_
created str - The date and time the crypto assessment was created, in RFC3339 format.
- time_
last_ strassessed - The date and time the crypto posture was last assessed, in RFC3339 format.
- time_
updated str - The date and time the crypto assessment was last updated, in RFC3339 format.
- triggered_
by str - The actor that created the assessment.
- type str
- A filter to return only crypto assessments that match the specified type.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- crypto
Assessment StringId - crypto
Postures List<Property Map> - Cryptographic posture details captured by the assessment.
- crypto
Provider String - Cryptographic provider and version information observed on the target.
- database
Architecture String - The architecture of the assessed target database.
- database
Name String - The name of the assessed target database.
- database
Version String - The version of the assessed target database.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"} - description String
- The description of the crypto assessment.
- display
Name String - A filter to return only resources that match the specified display name.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"} - id String
- The OCID of the crypto assessment.
- is
Assessment BooleanScheduled - A filter to return only crypto assessments whose scheduled execution state matches the specified value.
- issue
Count Number - Number of crypto issues detected in this assessment.
- lifecycle
Details String - Details about the current lifecycle state of the crypto assessment.
- posture
Category String - A filter to return only crypto assessments that match any of the specified posture categories.
- schedule String
- The schedule used to run the crypto assessment periodically. The schedule uses the format: ;
- state String
- A filter to return only resources that match the specified lifecycle state.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"} - target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only crypto assessments associated with the specified target OCID. When provided, targetType must also be specified.
- target
Type String - A filter to return crypto assessments belonging to the specified target type.
ListCryptoAssessmentsreturns assessment rows; usetargetDatabaseGroupIdto list the underlying target database assessments for a group. - targets
With NumberIssues Count - Number of assessed targets with one or more crypto issues. For a target database assessment, this value is 1 when the target has issues and 0 otherwise. For a target database group assessment, this value is the number of targets in the group that have issues.
- time
Created String - The date and time the crypto assessment was created, in RFC3339 format.
- time
Last StringAssessed - The date and time the crypto posture was last assessed, in RFC3339 format.
- time
Updated String - The date and time the crypto assessment was last updated, in RFC3339 format.
- triggered
By String - The actor that created the assessment.
- type String
- A filter to return only crypto assessments that match the specified type.
GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPosture
- Backup
Status string - Backup encryption status observed for the assessment.
- Encrypted
Backup intPieces Count - Number of encrypted backup pieces.
- Fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- Fips
Status string - Overall FIPS status for the assessment when the target uses common FIPS configuration.
- Network
Encryptions List<string> - Network encryption details.
- Nnes
List<Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Nne> - Native network encryption posture details.
- Tdes
List<Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tde> - Transparent data encryption posture details.
- Tls
List<Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tl> - TLS posture details.
- Unencrypted
Backup intPieces Count - Number of unencrypted backup pieces.
- Backup
Status string - Backup encryption status observed for the assessment.
- Encrypted
Backup intPieces Count - Number of encrypted backup pieces.
- Fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- Fips
Status string - Overall FIPS status for the assessment when the target uses common FIPS configuration.
- Network
Encryptions []string - Network encryption details.
- Nnes
[]Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Nne - Native network encryption posture details.
- Tdes
[]Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tde - Transparent data encryption posture details.
- Tls
[]Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tl - TLS posture details.
- Unencrypted
Backup intPieces Count - Number of unencrypted backup pieces.
- backup_
status string - Backup encryption status observed for the assessment.
- encrypted_
backup_ numberpieces_ count - Number of encrypted backup pieces.
- fips_
mode_ stringconfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- fips_
status string - Overall FIPS status for the assessment when the target uses common FIPS configuration.
- network_
encryptions list(string) - Network encryption details.
- nnes list(object)
- Native network encryption posture details.
- tdes list(object)
- Transparent data encryption posture details.
- tls list(object)
- TLS posture details.
- unencrypted_
backup_ numberpieces_ count - Number of unencrypted backup pieces.
- backup
Status String - Backup encryption status observed for the assessment.
- encrypted
Backup IntegerPieces Count - Number of encrypted backup pieces.
- fips
Mode StringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- fips
Status String - Overall FIPS status for the assessment when the target uses common FIPS configuration.
- network
Encryptions List<String> - Network encryption details.
- nnes
List<Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Nne> - Native network encryption posture details.
- tdes
List<Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tde> - Transparent data encryption posture details.
- tls
List<Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tl> - TLS posture details.
- unencrypted
Backup IntegerPieces Count - Number of unencrypted backup pieces.
- backup
Status string - Backup encryption status observed for the assessment.
- encrypted
Backup numberPieces Count - Number of encrypted backup pieces.
- fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- fips
Status string - Overall FIPS status for the assessment when the target uses common FIPS configuration.
- network
Encryptions string[] - Network encryption details.
- nnes
Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Nne[] - Native network encryption posture details.
- tdes
Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tde[] - Transparent data encryption posture details.
- tls
Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tl[] - TLS posture details.
- unencrypted
Backup numberPieces Count - Number of unencrypted backup pieces.
- backup_
status str - Backup encryption status observed for the assessment.
- encrypted_
backup_ intpieces_ count - Number of encrypted backup pieces.
- fips_
mode_ strconfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- fips_
status str - Overall FIPS status for the assessment when the target uses common FIPS configuration.
- network_
encryptions Sequence[str] - Network encryption details.
- nnes
Sequence[Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Nne] - Native network encryption posture details.
- tdes
Sequence[Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tde] - Transparent data encryption posture details.
- tls
Sequence[Get
Crypto Assessments Crypto Assessment Collection Item Crypto Posture Tl] - TLS posture details.
- unencrypted_
backup_ intpieces_ count - Number of unencrypted backup pieces.
- backup
Status String - Backup encryption status observed for the assessment.
- encrypted
Backup NumberPieces Count - Number of encrypted backup pieces.
- fips
Mode StringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- fips
Status String - Overall FIPS status for the assessment when the target uses common FIPS configuration.
- network
Encryptions List<String> - Network encryption details.
- nnes List<Property Map>
- Native network encryption posture details.
- tdes List<Property Map>
- Transparent data encryption posture details.
- tls List<Property Map>
- TLS posture details.
- unencrypted
Backup NumberPieces Count - Number of unencrypted backup pieces.
GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureNne
- Are
Weak stringOptions Allowed - Indicates if weak NNE options are allowed.
- Encryption
Configureds List<string> - Configured TDE encryption algorithm.
- Fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- Integrities List<string>
- NNE integrity algorithm(s).
- Key
Exchange string - Observed NNE key exchange setting.
- Quantum
Readiness string - Quantum-readiness classification for TLS posture.
- Server
Encryption string - Observed server-side encryption requirement.
- Server
Integrities List<string> - NNE server integrity algorithm(s).
- Status string
- TLS enablement status.
- Are
Weak stringOptions Allowed - Indicates if weak NNE options are allowed.
- Encryption
Configureds []string - Configured TDE encryption algorithm.
- Fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- Integrities []string
- NNE integrity algorithm(s).
- Key
Exchange string - Observed NNE key exchange setting.
- Quantum
Readiness string - Quantum-readiness classification for TLS posture.
- Server
Encryption string - Observed server-side encryption requirement.
- Server
Integrities []string - NNE server integrity algorithm(s).
- Status string
- TLS enablement status.
- are_
weak_ stringoptions_ allowed - Indicates if weak NNE options are allowed.
- encryption_
configureds list(string) - Configured TDE encryption algorithm.
- fips_
mode_ stringconfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrities list(string)
- NNE integrity algorithm(s).
- key_
exchange string - Observed NNE key exchange setting.
- quantum_
readiness string - Quantum-readiness classification for TLS posture.
- server_
encryption string - Observed server-side encryption requirement.
- server_
integrities list(string) - NNE server integrity algorithm(s).
- status string
- TLS enablement status.
- are
Weak StringOptions Allowed - Indicates if weak NNE options are allowed.
- encryption
Configureds List<String> - Configured TDE encryption algorithm.
- fips
Mode StringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrities List<String>
- NNE integrity algorithm(s).
- key
Exchange String - Observed NNE key exchange setting.
- quantum
Readiness String - Quantum-readiness classification for TLS posture.
- server
Encryption String - Observed server-side encryption requirement.
- server
Integrities List<String> - NNE server integrity algorithm(s).
- status String
- TLS enablement status.
- are
Weak stringOptions Allowed - Indicates if weak NNE options are allowed.
- encryption
Configureds string[] - Configured TDE encryption algorithm.
- fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrities string[]
- NNE integrity algorithm(s).
- key
Exchange string - Observed NNE key exchange setting.
- quantum
Readiness string - Quantum-readiness classification for TLS posture.
- server
Encryption string - Observed server-side encryption requirement.
- server
Integrities string[] - NNE server integrity algorithm(s).
- status string
- TLS enablement status.
- are_
weak_ stroptions_ allowed - Indicates if weak NNE options are allowed.
- encryption_
configureds Sequence[str] - Configured TDE encryption algorithm.
- fips_
mode_ strconfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrities Sequence[str]
- NNE integrity algorithm(s).
- key_
exchange str - Observed NNE key exchange setting.
- quantum_
readiness str - Quantum-readiness classification for TLS posture.
- server_
encryption str - Observed server-side encryption requirement.
- server_
integrities Sequence[str] - NNE server integrity algorithm(s).
- status str
- TLS enablement status.
- are
Weak StringOptions Allowed - Indicates if weak NNE options are allowed.
- encryption
Configureds List<String> - Configured TDE encryption algorithm.
- fips
Mode StringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrities List<String>
- NNE integrity algorithm(s).
- key
Exchange String - Observed NNE key exchange setting.
- quantum
Readiness String - Quantum-readiness classification for TLS posture.
- server
Encryption String - Observed server-side encryption requirement.
- server
Integrities List<String> - NNE server integrity algorithm(s).
- status String
- TLS enablement status.
GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTde
- Db
Credentials stringEncryption Observed - Observed DB credentials encryption algorithm.
- Encrypted
Tablespaces intCount - Number of encrypted tablespaces detected.
- Encryption
Configureds List<string> - Configured TDE encryption algorithm.
- Fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- Integrity
Configureds List<string> - Configured TDE integrity-related setting.
- Key
Cache stringStatus - The observed TDE key cache status.
- Key
Store stringType - The observed TDE key store type.
- Master
Key stringEncryption Algorithm - The observed encryption algorithm used by the master key.
- Master
Key stringId - The observed TDE master key identifier.
- Quantum
Readiness string - Quantum-readiness classification for TLS posture.
- Redo
Encryption stringObserved - Observed redo log encryption algorithm.
- Status string
- TLS enablement status.
- Time
Master stringKey Last Rotation - The last observed rotation time for the TDE master key, in RFC3339 format.
- Unencrypted
Tablespaces intCount - Number of unencrypted tablespaces detected.
- Wallet
Location string - TLS wallet location observed on target.
- Db
Credentials stringEncryption Observed - Observed DB credentials encryption algorithm.
- Encrypted
Tablespaces intCount - Number of encrypted tablespaces detected.
- Encryption
Configureds []string - Configured TDE encryption algorithm.
- Fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- Integrity
Configureds []string - Configured TDE integrity-related setting.
- Key
Cache stringStatus - The observed TDE key cache status.
- Key
Store stringType - The observed TDE key store type.
- Master
Key stringEncryption Algorithm - The observed encryption algorithm used by the master key.
- Master
Key stringId - The observed TDE master key identifier.
- Quantum
Readiness string - Quantum-readiness classification for TLS posture.
- Redo
Encryption stringObserved - Observed redo log encryption algorithm.
- Status string
- TLS enablement status.
- Time
Master stringKey Last Rotation - The last observed rotation time for the TDE master key, in RFC3339 format.
- Unencrypted
Tablespaces intCount - Number of unencrypted tablespaces detected.
- Wallet
Location string - TLS wallet location observed on target.
- db_
credentials_ stringencryption_ observed - Observed DB credentials encryption algorithm.
- encrypted_
tablespaces_ numbercount - Number of encrypted tablespaces detected.
- encryption_
configureds list(string) - Configured TDE encryption algorithm.
- fips_
mode_ stringconfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrity_
configureds list(string) - Configured TDE integrity-related setting.
- key_
cache_ stringstatus - The observed TDE key cache status.
- key_
store_ stringtype - The observed TDE key store type.
- master_
key_ stringencryption_ algorithm - The observed encryption algorithm used by the master key.
- master_
key_ stringid - The observed TDE master key identifier.
- quantum_
readiness string - Quantum-readiness classification for TLS posture.
- redo_
encryption_ stringobserved - Observed redo log encryption algorithm.
- status string
- TLS enablement status.
- time_
master_ stringkey_ last_ rotation - The last observed rotation time for the TDE master key, in RFC3339 format.
- unencrypted_
tablespaces_ numbercount - Number of unencrypted tablespaces detected.
- wallet_
location string - TLS wallet location observed on target.
- db
Credentials StringEncryption Observed - Observed DB credentials encryption algorithm.
- encrypted
Tablespaces IntegerCount - Number of encrypted tablespaces detected.
- encryption
Configureds List<String> - Configured TDE encryption algorithm.
- fips
Mode StringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrity
Configureds List<String> - Configured TDE integrity-related setting.
- key
Cache StringStatus - The observed TDE key cache status.
- key
Store StringType - The observed TDE key store type.
- master
Key StringEncryption Algorithm - The observed encryption algorithm used by the master key.
- master
Key StringId - The observed TDE master key identifier.
- quantum
Readiness String - Quantum-readiness classification for TLS posture.
- redo
Encryption StringObserved - Observed redo log encryption algorithm.
- status String
- TLS enablement status.
- time
Master StringKey Last Rotation - The last observed rotation time for the TDE master key, in RFC3339 format.
- unencrypted
Tablespaces IntegerCount - Number of unencrypted tablespaces detected.
- wallet
Location String - TLS wallet location observed on target.
- db
Credentials stringEncryption Observed - Observed DB credentials encryption algorithm.
- encrypted
Tablespaces numberCount - Number of encrypted tablespaces detected.
- encryption
Configureds string[] - Configured TDE encryption algorithm.
- fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrity
Configureds string[] - Configured TDE integrity-related setting.
- key
Cache stringStatus - The observed TDE key cache status.
- key
Store stringType - The observed TDE key store type.
- master
Key stringEncryption Algorithm - The observed encryption algorithm used by the master key.
- master
Key stringId - The observed TDE master key identifier.
- quantum
Readiness string - Quantum-readiness classification for TLS posture.
- redo
Encryption stringObserved - Observed redo log encryption algorithm.
- status string
- TLS enablement status.
- time
Master stringKey Last Rotation - The last observed rotation time for the TDE master key, in RFC3339 format.
- unencrypted
Tablespaces numberCount - Number of unencrypted tablespaces detected.
- wallet
Location string - TLS wallet location observed on target.
- db_
credentials_ strencryption_ observed - Observed DB credentials encryption algorithm.
- encrypted_
tablespaces_ intcount - Number of encrypted tablespaces detected.
- encryption_
configureds Sequence[str] - Configured TDE encryption algorithm.
- fips_
mode_ strconfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrity_
configureds Sequence[str] - Configured TDE integrity-related setting.
- key_
cache_ strstatus - The observed TDE key cache status.
- key_
store_ strtype - The observed TDE key store type.
- master_
key_ strencryption_ algorithm - The observed encryption algorithm used by the master key.
- master_
key_ strid - The observed TDE master key identifier.
- quantum_
readiness str - Quantum-readiness classification for TLS posture.
- redo_
encryption_ strobserved - Observed redo log encryption algorithm.
- status str
- TLS enablement status.
- time_
master_ strkey_ last_ rotation - The last observed rotation time for the TDE master key, in RFC3339 format.
- unencrypted_
tablespaces_ intcount - Number of unencrypted tablespaces detected.
- wallet_
location str - TLS wallet location observed on target.
- db
Credentials StringEncryption Observed - Observed DB credentials encryption algorithm.
- encrypted
Tablespaces NumberCount - Number of encrypted tablespaces detected.
- encryption
Configureds List<String> - Configured TDE encryption algorithm.
- fips
Mode StringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- integrity
Configureds List<String> - Configured TDE integrity-related setting.
- key
Cache StringStatus - The observed TDE key cache status.
- key
Store StringType - The observed TDE key store type.
- master
Key StringEncryption Algorithm - The observed encryption algorithm used by the master key.
- master
Key StringId - The observed TDE master key identifier.
- quantum
Readiness String - Quantum-readiness classification for TLS posture.
- redo
Encryption StringObserved - Observed redo log encryption algorithm.
- status String
- TLS enablement status.
- time
Master StringKey Last Rotation - The last observed rotation time for the TDE master key, in RFC3339 format.
- unencrypted
Tablespaces NumberCount - Number of unencrypted tablespaces detected.
- wallet
Location String - TLS wallet location observed on target.
GetCryptoAssessmentsCryptoAssessmentCollectionItemCryptoPostureTl
- Are
Weak stringCipher Suites Allowed - Indicates if weak TLS cipher suites are allowed.
- Cipher
Suites List<string>Configureds - TLS cipher suites configured on target.
- Fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- Is
Mtls stringConfigured - Whether TLS client authentication is configured.
- Quantum
Readiness string - Quantum-readiness classification for TLS posture.
- Revocation
Mode string - Certificate revocation checking mode.
- Status string
- TLS enablement status.
- Versions List<string>
- TLS versions configured on target.
- Wallet
Location string - TLS wallet location observed on target.
- Are
Weak stringCipher Suites Allowed - Indicates if weak TLS cipher suites are allowed.
- Cipher
Suites []stringConfigureds - TLS cipher suites configured on target.
- Fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- Is
Mtls stringConfigured - Whether TLS client authentication is configured.
- Quantum
Readiness string - Quantum-readiness classification for TLS posture.
- Revocation
Mode string - Certificate revocation checking mode.
- Status string
- TLS enablement status.
- Versions []string
- TLS versions configured on target.
- Wallet
Location string - TLS wallet location observed on target.
- are_
weak_ stringcipher_ suites_ allowed - Indicates if weak TLS cipher suites are allowed.
- cipher_
suites_ list(string)configureds - TLS cipher suites configured on target.
- fips_
mode_ stringconfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- is_
mtls_ stringconfigured - Whether TLS client authentication is configured.
- quantum_
readiness string - Quantum-readiness classification for TLS posture.
- revocation_
mode string - Certificate revocation checking mode.
- status string
- TLS enablement status.
- versions list(string)
- TLS versions configured on target.
- wallet_
location string - TLS wallet location observed on target.
- are
Weak StringCipher Suites Allowed - Indicates if weak TLS cipher suites are allowed.
- cipher
Suites List<String>Configureds - TLS cipher suites configured on target.
- fips
Mode StringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- is
Mtls StringConfigured - Whether TLS client authentication is configured.
- quantum
Readiness String - Quantum-readiness classification for TLS posture.
- revocation
Mode String - Certificate revocation checking mode.
- status String
- TLS enablement status.
- versions List<String>
- TLS versions configured on target.
- wallet
Location String - TLS wallet location observed on target.
- are
Weak stringCipher Suites Allowed - Indicates if weak TLS cipher suites are allowed.
- cipher
Suites string[]Configureds - TLS cipher suites configured on target.
- fips
Mode stringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- is
Mtls stringConfigured - Whether TLS client authentication is configured.
- quantum
Readiness string - Quantum-readiness classification for TLS posture.
- revocation
Mode string - Certificate revocation checking mode.
- status string
- TLS enablement status.
- versions string[]
- TLS versions configured on target.
- wallet
Location string - TLS wallet location observed on target.
- are_
weak_ strcipher_ suites_ allowed - Indicates if weak TLS cipher suites are allowed.
- cipher_
suites_ Sequence[str]configureds - TLS cipher suites configured on target.
- fips_
mode_ strconfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- is_
mtls_ strconfigured - Whether TLS client authentication is configured.
- quantum_
readiness str - Quantum-readiness classification for TLS posture.
- revocation_
mode str - Certificate revocation checking mode.
- status str
- TLS enablement status.
- versions Sequence[str]
- TLS versions configured on target.
- wallet_
location str - TLS wallet location observed on target.
- are
Weak StringCipher Suites Allowed - Indicates if weak TLS cipher suites are allowed.
- cipher
Suites List<String>Configureds - TLS cipher suites configured on target.
- fips
Mode StringConfigured - FIPS mode configured for TLS when the target uses legacy per-feature FIPS configuration.
- is
Mtls StringConfigured - Whether TLS client authentication is configured.
- quantum
Readiness String - Quantum-readiness classification for TLS posture.
- revocation
Mode String - Certificate revocation checking mode.
- status String
- TLS enablement status.
- versions List<String>
- TLS versions configured on target.
- wallet
Location String - TLS wallet location observed on target.
GetCryptoAssessmentsFilter
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