1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSecurityAssessmentSecurityFeatures
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DataSafe.getSecurityAssessmentSecurityFeatures

Explore with Pulumi AI

This data source provides the list of Security Assessment Security Features in Oracle Cloud Infrastructure Data Safe service.

Lists the usage of Database security features for a given compartment or a target level, based on the filters provided.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testSecurityAssessmentSecurityFeatures = oci.DataSafe.getSecurityAssessmentSecurityFeatures({
    compartmentId: compartmentId,
    accessLevel: securityAssessmentSecurityFeatureAccessLevel,
    compartmentIdInSubtree: securityAssessmentSecurityFeatureCompartmentIdInSubtree,
    targetId: testTarget.id,
    targetsWithColumnEncryption: securityAssessmentSecurityFeatureTargetsWithColumnEncryption,
    targetsWithDatabaseVault: securityAssessmentSecurityFeatureTargetsWithDatabaseVault,
    targetsWithExternalAuthentication: securityAssessmentSecurityFeatureTargetsWithExternalAuthentication,
    targetsWithFineGrainedAudit: securityAssessmentSecurityFeatureTargetsWithFineGrainedAudit,
    targetsWithGlobalAuthentication: securityAssessmentSecurityFeatureTargetsWithGlobalAuthentication,
    targetsWithNetworkEncryption: securityAssessmentSecurityFeatureTargetsWithNetworkEncryption,
    targetsWithPasswordAuthentication: securityAssessmentSecurityFeatureTargetsWithPasswordAuthentication,
    targetsWithPrivilegeAnalysis: securityAssessmentSecurityFeatureTargetsWithPrivilegeAnalysis,
    targetsWithTablespaceEncryption: securityAssessmentSecurityFeatureTargetsWithTablespaceEncryption,
    targetsWithTraditionalAudit: securityAssessmentSecurityFeatureTargetsWithTraditionalAudit,
    targetsWithUnifiedAudit: securityAssessmentSecurityFeatureTargetsWithUnifiedAudit,
});
Copy
import pulumi
import pulumi_oci as oci

test_security_assessment_security_features = oci.DataSafe.get_security_assessment_security_features(compartment_id=compartment_id,
    access_level=security_assessment_security_feature_access_level,
    compartment_id_in_subtree=security_assessment_security_feature_compartment_id_in_subtree,
    target_id=test_target["id"],
    targets_with_column_encryption=security_assessment_security_feature_targets_with_column_encryption,
    targets_with_database_vault=security_assessment_security_feature_targets_with_database_vault,
    targets_with_external_authentication=security_assessment_security_feature_targets_with_external_authentication,
    targets_with_fine_grained_audit=security_assessment_security_feature_targets_with_fine_grained_audit,
    targets_with_global_authentication=security_assessment_security_feature_targets_with_global_authentication,
    targets_with_network_encryption=security_assessment_security_feature_targets_with_network_encryption,
    targets_with_password_authentication=security_assessment_security_feature_targets_with_password_authentication,
    targets_with_privilege_analysis=security_assessment_security_feature_targets_with_privilege_analysis,
    targets_with_tablespace_encryption=security_assessment_security_feature_targets_with_tablespace_encryption,
    targets_with_traditional_audit=security_assessment_security_feature_targets_with_traditional_audit,
    targets_with_unified_audit=security_assessment_security_feature_targets_with_unified_audit)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetSecurityAssessmentSecurityFeatures(ctx, &datasafe.GetSecurityAssessmentSecurityFeaturesArgs{
			CompartmentId:                     compartmentId,
			AccessLevel:                       pulumi.StringRef(securityAssessmentSecurityFeatureAccessLevel),
			CompartmentIdInSubtree:            pulumi.BoolRef(securityAssessmentSecurityFeatureCompartmentIdInSubtree),
			TargetId:                          pulumi.StringRef(testTarget.Id),
			TargetsWithColumnEncryption:       pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithColumnEncryption),
			TargetsWithDatabaseVault:          pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithDatabaseVault),
			TargetsWithExternalAuthentication: pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithExternalAuthentication),
			TargetsWithFineGrainedAudit:       pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithFineGrainedAudit),
			TargetsWithGlobalAuthentication:   pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithGlobalAuthentication),
			TargetsWithNetworkEncryption:      pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithNetworkEncryption),
			TargetsWithPasswordAuthentication: pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithPasswordAuthentication),
			TargetsWithPrivilegeAnalysis:      pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithPrivilegeAnalysis),
			TargetsWithTablespaceEncryption:   pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithTablespaceEncryption),
			TargetsWithTraditionalAudit:       pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithTraditionalAudit),
			TargetsWithUnifiedAudit:           pulumi.StringRef(securityAssessmentSecurityFeatureTargetsWithUnifiedAudit),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testSecurityAssessmentSecurityFeatures = Oci.DataSafe.GetSecurityAssessmentSecurityFeatures.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = securityAssessmentSecurityFeatureAccessLevel,
        CompartmentIdInSubtree = securityAssessmentSecurityFeatureCompartmentIdInSubtree,
        TargetId = testTarget.Id,
        TargetsWithColumnEncryption = securityAssessmentSecurityFeatureTargetsWithColumnEncryption,
        TargetsWithDatabaseVault = securityAssessmentSecurityFeatureTargetsWithDatabaseVault,
        TargetsWithExternalAuthentication = securityAssessmentSecurityFeatureTargetsWithExternalAuthentication,
        TargetsWithFineGrainedAudit = securityAssessmentSecurityFeatureTargetsWithFineGrainedAudit,
        TargetsWithGlobalAuthentication = securityAssessmentSecurityFeatureTargetsWithGlobalAuthentication,
        TargetsWithNetworkEncryption = securityAssessmentSecurityFeatureTargetsWithNetworkEncryption,
        TargetsWithPasswordAuthentication = securityAssessmentSecurityFeatureTargetsWithPasswordAuthentication,
        TargetsWithPrivilegeAnalysis = securityAssessmentSecurityFeatureTargetsWithPrivilegeAnalysis,
        TargetsWithTablespaceEncryption = securityAssessmentSecurityFeatureTargetsWithTablespaceEncryption,
        TargetsWithTraditionalAudit = securityAssessmentSecurityFeatureTargetsWithTraditionalAudit,
        TargetsWithUnifiedAudit = securityAssessmentSecurityFeatureTargetsWithUnifiedAudit,
    });

});
Copy
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.GetSecurityAssessmentSecurityFeaturesArgs;
import java.util.List;
import java.util.ArrayList;
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 testSecurityAssessmentSecurityFeatures = DataSafeFunctions.getSecurityAssessmentSecurityFeatures(GetSecurityAssessmentSecurityFeaturesArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(securityAssessmentSecurityFeatureAccessLevel)
            .compartmentIdInSubtree(securityAssessmentSecurityFeatureCompartmentIdInSubtree)
            .targetId(testTarget.id())
            .targetsWithColumnEncryption(securityAssessmentSecurityFeatureTargetsWithColumnEncryption)
            .targetsWithDatabaseVault(securityAssessmentSecurityFeatureTargetsWithDatabaseVault)
            .targetsWithExternalAuthentication(securityAssessmentSecurityFeatureTargetsWithExternalAuthentication)
            .targetsWithFineGrainedAudit(securityAssessmentSecurityFeatureTargetsWithFineGrainedAudit)
            .targetsWithGlobalAuthentication(securityAssessmentSecurityFeatureTargetsWithGlobalAuthentication)
            .targetsWithNetworkEncryption(securityAssessmentSecurityFeatureTargetsWithNetworkEncryption)
            .targetsWithPasswordAuthentication(securityAssessmentSecurityFeatureTargetsWithPasswordAuthentication)
            .targetsWithPrivilegeAnalysis(securityAssessmentSecurityFeatureTargetsWithPrivilegeAnalysis)
            .targetsWithTablespaceEncryption(securityAssessmentSecurityFeatureTargetsWithTablespaceEncryption)
            .targetsWithTraditionalAudit(securityAssessmentSecurityFeatureTargetsWithTraditionalAudit)
            .targetsWithUnifiedAudit(securityAssessmentSecurityFeatureTargetsWithUnifiedAudit)
            .build());

    }
}
Copy
variables:
  testSecurityAssessmentSecurityFeatures:
    fn::invoke:
      function: oci:DataSafe:getSecurityAssessmentSecurityFeatures
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${securityAssessmentSecurityFeatureAccessLevel}
        compartmentIdInSubtree: ${securityAssessmentSecurityFeatureCompartmentIdInSubtree}
        targetId: ${testTarget.id}
        targetsWithColumnEncryption: ${securityAssessmentSecurityFeatureTargetsWithColumnEncryption}
        targetsWithDatabaseVault: ${securityAssessmentSecurityFeatureTargetsWithDatabaseVault}
        targetsWithExternalAuthentication: ${securityAssessmentSecurityFeatureTargetsWithExternalAuthentication}
        targetsWithFineGrainedAudit: ${securityAssessmentSecurityFeatureTargetsWithFineGrainedAudit}
        targetsWithGlobalAuthentication: ${securityAssessmentSecurityFeatureTargetsWithGlobalAuthentication}
        targetsWithNetworkEncryption: ${securityAssessmentSecurityFeatureTargetsWithNetworkEncryption}
        targetsWithPasswordAuthentication: ${securityAssessmentSecurityFeatureTargetsWithPasswordAuthentication}
        targetsWithPrivilegeAnalysis: ${securityAssessmentSecurityFeatureTargetsWithPrivilegeAnalysis}
        targetsWithTablespaceEncryption: ${securityAssessmentSecurityFeatureTargetsWithTablespaceEncryption}
        targetsWithTraditionalAudit: ${securityAssessmentSecurityFeatureTargetsWithTraditionalAudit}
        targetsWithUnifiedAudit: ${securityAssessmentSecurityFeatureTargetsWithUnifiedAudit}
Copy

Using getSecurityAssessmentSecurityFeatures

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 getSecurityAssessmentSecurityFeatures(args: GetSecurityAssessmentSecurityFeaturesArgs, opts?: InvokeOptions): Promise<GetSecurityAssessmentSecurityFeaturesResult>
function getSecurityAssessmentSecurityFeaturesOutput(args: GetSecurityAssessmentSecurityFeaturesOutputArgs, opts?: InvokeOptions): Output<GetSecurityAssessmentSecurityFeaturesResult>
Copy
def get_security_assessment_security_features(access_level: Optional[str] = None,
                                              compartment_id: Optional[str] = None,
                                              compartment_id_in_subtree: Optional[bool] = None,
                                              filters: Optional[Sequence[_datasafe.GetSecurityAssessmentSecurityFeaturesFilter]] = None,
                                              target_id: Optional[str] = None,
                                              targets_with_column_encryption: Optional[str] = None,
                                              targets_with_database_vault: Optional[str] = None,
                                              targets_with_external_authentication: Optional[str] = None,
                                              targets_with_fine_grained_audit: Optional[str] = None,
                                              targets_with_global_authentication: Optional[str] = None,
                                              targets_with_network_encryption: Optional[str] = None,
                                              targets_with_password_authentication: Optional[str] = None,
                                              targets_with_privilege_analysis: Optional[str] = None,
                                              targets_with_tablespace_encryption: Optional[str] = None,
                                              targets_with_traditional_audit: Optional[str] = None,
                                              targets_with_unified_audit: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetSecurityAssessmentSecurityFeaturesResult
def get_security_assessment_security_features_output(access_level: Optional[pulumi.Input[str]] = None,
                                              compartment_id: Optional[pulumi.Input[str]] = None,
                                              compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetSecurityAssessmentSecurityFeaturesFilterArgs]]]] = None,
                                              target_id: Optional[pulumi.Input[str]] = None,
                                              targets_with_column_encryption: Optional[pulumi.Input[str]] = None,
                                              targets_with_database_vault: Optional[pulumi.Input[str]] = None,
                                              targets_with_external_authentication: Optional[pulumi.Input[str]] = None,
                                              targets_with_fine_grained_audit: Optional[pulumi.Input[str]] = None,
                                              targets_with_global_authentication: Optional[pulumi.Input[str]] = None,
                                              targets_with_network_encryption: Optional[pulumi.Input[str]] = None,
                                              targets_with_password_authentication: Optional[pulumi.Input[str]] = None,
                                              targets_with_privilege_analysis: Optional[pulumi.Input[str]] = None,
                                              targets_with_tablespace_encryption: Optional[pulumi.Input[str]] = None,
                                              targets_with_traditional_audit: Optional[pulumi.Input[str]] = None,
                                              targets_with_unified_audit: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetSecurityAssessmentSecurityFeaturesResult]
Copy
func GetSecurityAssessmentSecurityFeatures(ctx *Context, args *GetSecurityAssessmentSecurityFeaturesArgs, opts ...InvokeOption) (*GetSecurityAssessmentSecurityFeaturesResult, error)
func GetSecurityAssessmentSecurityFeaturesOutput(ctx *Context, args *GetSecurityAssessmentSecurityFeaturesOutputArgs, opts ...InvokeOption) GetSecurityAssessmentSecurityFeaturesResultOutput
Copy

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

public static class GetSecurityAssessmentSecurityFeatures 
{
    public static Task<GetSecurityAssessmentSecurityFeaturesResult> InvokeAsync(GetSecurityAssessmentSecurityFeaturesArgs args, InvokeOptions? opts = null)
    public static Output<GetSecurityAssessmentSecurityFeaturesResult> Invoke(GetSecurityAssessmentSecurityFeaturesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSecurityAssessmentSecurityFeaturesResult> getSecurityAssessmentSecurityFeatures(GetSecurityAssessmentSecurityFeaturesArgs args, InvokeOptions options)
public static Output<GetSecurityAssessmentSecurityFeaturesResult> getSecurityAssessmentSecurityFeatures(GetSecurityAssessmentSecurityFeaturesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataSafe/getSecurityAssessmentSecurityFeatures:getSecurityAssessmentSecurityFeatures
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
Filters Changes to this property will trigger replacement. List<GetSecurityAssessmentSecurityFeaturesFilter>
TargetId string
A filter to return only items related to a specific target OCID.
TargetsWithColumnEncryption string
A filter to return only the targets that enable the DB security feature - Column Encryption enabled/disabled.
TargetsWithDatabaseVault string
A filter to return only the targets with the DB security feature - Database Vault enabled/disabled.
TargetsWithExternalAuthentication string
A filter to return only the targets with the DB security feature - External Authentication enabled/disabled.
TargetsWithFineGrainedAudit string
A filter to return only the targets with the DB security feature - Fine Grained Audit enabled/disabled.
TargetsWithGlobalAuthentication string
A filter to return only the targets with the DB security feature - Global Authentication enabled/disabled.
TargetsWithNetworkEncryption string
A filter to return only the targets with the DB security feature - Network Encryption enabled/disabled.
TargetsWithPasswordAuthentication string
A filter to return only the targets with the DB security feature - Password Authentication enabled/disabled.
TargetsWithPrivilegeAnalysis string
A filter to return only the targets with the DB security feature - Privilege Analysis enabled/disabled.
TargetsWithTablespaceEncryption string
A filter to return only the targets with the DB security feature - Tablespace Encryption enabled/disabled.
TargetsWithTraditionalAudit string
A filter to return only the targets with the DB security feature - Traditional Audit enabled/disabled.
TargetsWithUnifiedAudit string
A filter to return only the targets with the DB security feature - Unified Audit enabled/disabled.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
Filters Changes to this property will trigger replacement. []GetSecurityAssessmentSecurityFeaturesFilter
TargetId string
A filter to return only items related to a specific target OCID.
TargetsWithColumnEncryption string
A filter to return only the targets that enable the DB security feature - Column Encryption enabled/disabled.
TargetsWithDatabaseVault string
A filter to return only the targets with the DB security feature - Database Vault enabled/disabled.
TargetsWithExternalAuthentication string
A filter to return only the targets with the DB security feature - External Authentication enabled/disabled.
TargetsWithFineGrainedAudit string
A filter to return only the targets with the DB security feature - Fine Grained Audit enabled/disabled.
TargetsWithGlobalAuthentication string
A filter to return only the targets with the DB security feature - Global Authentication enabled/disabled.
TargetsWithNetworkEncryption string
A filter to return only the targets with the DB security feature - Network Encryption enabled/disabled.
TargetsWithPasswordAuthentication string
A filter to return only the targets with the DB security feature - Password Authentication enabled/disabled.
TargetsWithPrivilegeAnalysis string
A filter to return only the targets with the DB security feature - Privilege Analysis enabled/disabled.
TargetsWithTablespaceEncryption string
A filter to return only the targets with the DB security feature - Tablespace Encryption enabled/disabled.
TargetsWithTraditionalAudit string
A filter to return only the targets with the DB security feature - Traditional Audit enabled/disabled.
TargetsWithUnifiedAudit string
A filter to return only the targets with the DB security feature - Unified Audit enabled/disabled.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
filters Changes to this property will trigger replacement. List<GetSecurityAssessmentSecurityFeaturesFilter>
targetId String
A filter to return only items related to a specific target OCID.
targetsWithColumnEncryption String
A filter to return only the targets that enable the DB security feature - Column Encryption enabled/disabled.
targetsWithDatabaseVault String
A filter to return only the targets with the DB security feature - Database Vault enabled/disabled.
targetsWithExternalAuthentication String
A filter to return only the targets with the DB security feature - External Authentication enabled/disabled.
targetsWithFineGrainedAudit String
A filter to return only the targets with the DB security feature - Fine Grained Audit enabled/disabled.
targetsWithGlobalAuthentication String
A filter to return only the targets with the DB security feature - Global Authentication enabled/disabled.
targetsWithNetworkEncryption String
A filter to return only the targets with the DB security feature - Network Encryption enabled/disabled.
targetsWithPasswordAuthentication String
A filter to return only the targets with the DB security feature - Password Authentication enabled/disabled.
targetsWithPrivilegeAnalysis String
A filter to return only the targets with the DB security feature - Privilege Analysis enabled/disabled.
targetsWithTablespaceEncryption String
A filter to return only the targets with the DB security feature - Tablespace Encryption enabled/disabled.
targetsWithTraditionalAudit String
A filter to return only the targets with the DB security feature - Traditional Audit enabled/disabled.
targetsWithUnifiedAudit String
A filter to return only the targets with the DB security feature - Unified Audit enabled/disabled.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
accessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
filters Changes to this property will trigger replacement. GetSecurityAssessmentSecurityFeaturesFilter[]
targetId string
A filter to return only items related to a specific target OCID.
targetsWithColumnEncryption string
A filter to return only the targets that enable the DB security feature - Column Encryption enabled/disabled.
targetsWithDatabaseVault string
A filter to return only the targets with the DB security feature - Database Vault enabled/disabled.
targetsWithExternalAuthentication string
A filter to return only the targets with the DB security feature - External Authentication enabled/disabled.
targetsWithFineGrainedAudit string
A filter to return only the targets with the DB security feature - Fine Grained Audit enabled/disabled.
targetsWithGlobalAuthentication string
A filter to return only the targets with the DB security feature - Global Authentication enabled/disabled.
targetsWithNetworkEncryption string
A filter to return only the targets with the DB security feature - Network Encryption enabled/disabled.
targetsWithPasswordAuthentication string
A filter to return only the targets with the DB security feature - Password Authentication enabled/disabled.
targetsWithPrivilegeAnalysis string
A filter to return only the targets with the DB security feature - Privilege Analysis enabled/disabled.
targetsWithTablespaceEncryption string
A filter to return only the targets with the DB security feature - Tablespace Encryption enabled/disabled.
targetsWithTraditionalAudit string
A filter to return only the targets with the DB security feature - Traditional Audit enabled/disabled.
targetsWithUnifiedAudit string
A filter to return only the targets with the DB security feature - Unified Audit enabled/disabled.
compartment_id This property is required. 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.
compartment_id_in_subtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
filters Changes to this property will trigger replacement. Sequence[datasafe.GetSecurityAssessmentSecurityFeaturesFilter]
target_id str
A filter to return only items related to a specific target OCID.
targets_with_column_encryption str
A filter to return only the targets that enable the DB security feature - Column Encryption enabled/disabled.
targets_with_database_vault str
A filter to return only the targets with the DB security feature - Database Vault enabled/disabled.
targets_with_external_authentication str
A filter to return only the targets with the DB security feature - External Authentication enabled/disabled.
targets_with_fine_grained_audit str
A filter to return only the targets with the DB security feature - Fine Grained Audit enabled/disabled.
targets_with_global_authentication str
A filter to return only the targets with the DB security feature - Global Authentication enabled/disabled.
targets_with_network_encryption str
A filter to return only the targets with the DB security feature - Network Encryption enabled/disabled.
targets_with_password_authentication str
A filter to return only the targets with the DB security feature - Password Authentication enabled/disabled.
targets_with_privilege_analysis str
A filter to return only the targets with the DB security feature - Privilege Analysis enabled/disabled.
targets_with_tablespace_encryption str
A filter to return only the targets with the DB security feature - Tablespace Encryption enabled/disabled.
targets_with_traditional_audit str
A filter to return only the targets with the DB security feature - Traditional Audit enabled/disabled.
targets_with_unified_audit str
A filter to return only the targets with the DB security feature - Unified Audit enabled/disabled.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
filters Changes to this property will trigger replacement. List<Property Map>
targetId String
A filter to return only items related to a specific target OCID.
targetsWithColumnEncryption String
A filter to return only the targets that enable the DB security feature - Column Encryption enabled/disabled.
targetsWithDatabaseVault String
A filter to return only the targets with the DB security feature - Database Vault enabled/disabled.
targetsWithExternalAuthentication String
A filter to return only the targets with the DB security feature - External Authentication enabled/disabled.
targetsWithFineGrainedAudit String
A filter to return only the targets with the DB security feature - Fine Grained Audit enabled/disabled.
targetsWithGlobalAuthentication String
A filter to return only the targets with the DB security feature - Global Authentication enabled/disabled.
targetsWithNetworkEncryption String
A filter to return only the targets with the DB security feature - Network Encryption enabled/disabled.
targetsWithPasswordAuthentication String
A filter to return only the targets with the DB security feature - Password Authentication enabled/disabled.
targetsWithPrivilegeAnalysis String
A filter to return only the targets with the DB security feature - Privilege Analysis enabled/disabled.
targetsWithTablespaceEncryption String
A filter to return only the targets with the DB security feature - Tablespace Encryption enabled/disabled.
targetsWithTraditionalAudit String
A filter to return only the targets with the DB security feature - Traditional Audit enabled/disabled.
targetsWithUnifiedAudit String
A filter to return only the targets with the DB security feature - Unified Audit enabled/disabled.

getSecurityAssessmentSecurityFeatures Result

The following output properties are available:

compartment_id str
The OCID of the compartment.
id str
The provider-assigned unique ID for this managed resource.
security_feature_collections Sequence[datasafe.GetSecurityAssessmentSecurityFeaturesSecurityFeatureCollection]
The list of security_feature_collection.
access_level str
compartment_id_in_subtree bool
filters Sequence[datasafe.GetSecurityAssessmentSecurityFeaturesFilter]
target_id str
The OCID of the target database.
targets_with_column_encryption str
targets_with_database_vault str
targets_with_external_authentication str
targets_with_fine_grained_audit str
targets_with_global_authentication str
targets_with_network_encryption str
targets_with_password_authentication str
targets_with_privilege_analysis str
targets_with_tablespace_encryption str
targets_with_traditional_audit str
targets_with_unified_audit str

Supporting Types

GetSecurityAssessmentSecurityFeaturesFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetSecurityAssessmentSecurityFeaturesSecurityFeatureCollection

Items This property is required. List<GetSecurityAssessmentSecurityFeaturesSecurityFeatureCollectionItem>
Array of database security feature summary.
Items This property is required. []GetSecurityAssessmentSecurityFeaturesSecurityFeatureCollectionItem
Array of database security feature summary.
items This property is required. List<GetSecurityAssessmentSecurityFeaturesSecurityFeatureCollectionItem>
Array of database security feature summary.
items This property is required. GetSecurityAssessmentSecurityFeaturesSecurityFeatureCollectionItem[]
Array of database security feature summary.
items This property is required. Sequence[datasafe.GetSecurityAssessmentSecurityFeaturesSecurityFeatureCollectionItem]
Array of database security feature summary.
items This property is required. List<Property Map>
Array of database security feature summary.

GetSecurityAssessmentSecurityFeaturesSecurityFeatureCollectionItem

AssessmentId This property is required. string
The OCID of the assessment that generates this security feature usage result.
ColumnEncryption This property is required. string
The usage of security feature - Column Encryption.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
DatabaseVault This property is required. string
The usage of security feature - Database Vault.
DefinedTags This property is required. 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"}
ExternalAuthentication This property is required. string
The usage of security feature - External Authentication.
FineGrainedAudit This property is required. string
The usage of security feature - Fine Grained Audit.
FreeformTags This property is required. 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"}
GlobalAuthentication This property is required. string
The usage of security feature - Global Authentication.
NetworkEncryption This property is required. string
The usage of security feature - Network Encryption.
PasswordAuthentication This property is required. string
The usage of security feature - Password Authentication.
PrivilegeAnalysis This property is required. string
The usage of security feature - Privilege Analysis.
TablespaceEncryption This property is required. string
The usage of security feature - Tablespace Encryption.
TargetId This property is required. string
A filter to return only items related to a specific target OCID.
TraditionalAudit This property is required. string
The usage of security feature - Traditional Audit.
UnifiedAudit This property is required. string
The usage of security feature - Unified Audit.
AssessmentId This property is required. string
The OCID of the assessment that generates this security feature usage result.
ColumnEncryption This property is required. string
The usage of security feature - Column Encryption.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
DatabaseVault This property is required. string
The usage of security feature - Database Vault.
DefinedTags This property is required. 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"}
ExternalAuthentication This property is required. string
The usage of security feature - External Authentication.
FineGrainedAudit This property is required. string
The usage of security feature - Fine Grained Audit.
FreeformTags This property is required. 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"}
GlobalAuthentication This property is required. string
The usage of security feature - Global Authentication.
NetworkEncryption This property is required. string
The usage of security feature - Network Encryption.
PasswordAuthentication This property is required. string
The usage of security feature - Password Authentication.
PrivilegeAnalysis This property is required. string
The usage of security feature - Privilege Analysis.
TablespaceEncryption This property is required. string
The usage of security feature - Tablespace Encryption.
TargetId This property is required. string
A filter to return only items related to a specific target OCID.
TraditionalAudit This property is required. string
The usage of security feature - Traditional Audit.
UnifiedAudit This property is required. string
The usage of security feature - Unified Audit.
assessmentId This property is required. String
The OCID of the assessment that generates this security feature usage result.
columnEncryption This property is required. String
The usage of security feature - Column Encryption.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
databaseVault This property is required. String
The usage of security feature - Database Vault.
definedTags This property is required. 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"}
externalAuthentication This property is required. String
The usage of security feature - External Authentication.
fineGrainedAudit This property is required. String
The usage of security feature - Fine Grained Audit.
freeformTags This property is required. 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"}
globalAuthentication This property is required. String
The usage of security feature - Global Authentication.
networkEncryption This property is required. String
The usage of security feature - Network Encryption.
passwordAuthentication This property is required. String
The usage of security feature - Password Authentication.
privilegeAnalysis This property is required. String
The usage of security feature - Privilege Analysis.
tablespaceEncryption This property is required. String
The usage of security feature - Tablespace Encryption.
targetId This property is required. String
A filter to return only items related to a specific target OCID.
traditionalAudit This property is required. String
The usage of security feature - Traditional Audit.
unifiedAudit This property is required. String
The usage of security feature - Unified Audit.
assessmentId This property is required. string
The OCID of the assessment that generates this security feature usage result.
columnEncryption This property is required. string
The usage of security feature - Column Encryption.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
databaseVault This property is required. string
The usage of security feature - Database Vault.
definedTags This property is required. {[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"}
externalAuthentication This property is required. string
The usage of security feature - External Authentication.
fineGrainedAudit This property is required. string
The usage of security feature - Fine Grained Audit.
freeformTags This property is required. {[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"}
globalAuthentication This property is required. string
The usage of security feature - Global Authentication.
networkEncryption This property is required. string
The usage of security feature - Network Encryption.
passwordAuthentication This property is required. string
The usage of security feature - Password Authentication.
privilegeAnalysis This property is required. string
The usage of security feature - Privilege Analysis.
tablespaceEncryption This property is required. string
The usage of security feature - Tablespace Encryption.
targetId This property is required. string
A filter to return only items related to a specific target OCID.
traditionalAudit This property is required. string
The usage of security feature - Traditional Audit.
unifiedAudit This property is required. string
The usage of security feature - Unified Audit.
assessment_id This property is required. str
The OCID of the assessment that generates this security feature usage result.
column_encryption This property is required. str
The usage of security feature - Column Encryption.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
database_vault This property is required. str
The usage of security feature - Database Vault.
defined_tags This property is required. 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"}
external_authentication This property is required. str
The usage of security feature - External Authentication.
fine_grained_audit This property is required. str
The usage of security feature - Fine Grained Audit.
freeform_tags This property is required. 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"}
global_authentication This property is required. str
The usage of security feature - Global Authentication.
network_encryption This property is required. str
The usage of security feature - Network Encryption.
password_authentication This property is required. str
The usage of security feature - Password Authentication.
privilege_analysis This property is required. str
The usage of security feature - Privilege Analysis.
tablespace_encryption This property is required. str
The usage of security feature - Tablespace Encryption.
target_id This property is required. str
A filter to return only items related to a specific target OCID.
traditional_audit This property is required. str
The usage of security feature - Traditional Audit.
unified_audit This property is required. str
The usage of security feature - Unified Audit.
assessmentId This property is required. String
The OCID of the assessment that generates this security feature usage result.
columnEncryption This property is required. String
The usage of security feature - Column Encryption.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
databaseVault This property is required. String
The usage of security feature - Database Vault.
definedTags This property is required. 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"}
externalAuthentication This property is required. String
The usage of security feature - External Authentication.
fineGrainedAudit This property is required. String
The usage of security feature - Fine Grained Audit.
freeformTags This property is required. 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"}
globalAuthentication This property is required. String
The usage of security feature - Global Authentication.
networkEncryption This property is required. String
The usage of security feature - Network Encryption.
passwordAuthentication This property is required. String
The usage of security feature - Password Authentication.
privilegeAnalysis This property is required. String
The usage of security feature - Privilege Analysis.
tablespaceEncryption This property is required. String
The usage of security feature - Tablespace Encryption.
targetId This property is required. String
A filter to return only items related to a specific target OCID.
traditionalAudit This property is required. String
The usage of security feature - Traditional Audit.
unifiedAudit This property is required. String
The usage of security feature - Unified Audit.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.