1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSecurityAssessments
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.DataSafe.getSecurityAssessments

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

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

Gets a list of security assessments.

The ListSecurityAssessments operation returns only the assessments in the specified compartmentId. The list does not include any subcompartments of the compartmentId passed.

The parameter accessLevel specifies whether to return only those compartments for which the requestor has INSPECT permissions on at least one resource directly or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if Principal doesn’t have access to even one of the child compartments. This is valid only when compartmentIdInSubtree is set to true.

The parameter compartmentIdInSubtree applies when you perform ListSecurityAssessments on the compartmentId passed and when it is set to true, the entire hierarchy of compartments can be returned. To get a full list of all compartments and subcompartments in the tenancy (root compartment), set the parameter compartmentIdInSubtree to true and accessLevel to ACCESSIBLE.

Example Usage

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

const testSecurityAssessments = oci.DataSafe.getSecurityAssessments({
    compartmentId: compartmentId,
    accessLevel: securityAssessmentAccessLevel,
    compartmentIdInSubtree: securityAssessmentCompartmentIdInSubtree,
    displayName: securityAssessmentDisplayName,
    isBaseline: securityAssessmentIsBaseline,
    isScheduleAssessment: securityAssessmentIsScheduleAssessment,
    scheduleAssessmentId: testScheduleAssessment.id,
    state: securityAssessmentState,
    targetId: testTarget.id,
    timeCreatedGreaterThanOrEqualTo: securityAssessmentTimeCreatedGreaterThanOrEqualTo,
    timeCreatedLessThan: securityAssessmentTimeCreatedLessThan,
    triggeredBy: securityAssessmentTriggeredBy,
    type: securityAssessmentType,
});
Copy
import pulumi
import pulumi_oci as oci

test_security_assessments = oci.DataSafe.get_security_assessments(compartment_id=compartment_id,
    access_level=security_assessment_access_level,
    compartment_id_in_subtree=security_assessment_compartment_id_in_subtree,
    display_name=security_assessment_display_name,
    is_baseline=security_assessment_is_baseline,
    is_schedule_assessment=security_assessment_is_schedule_assessment,
    schedule_assessment_id=test_schedule_assessment["id"],
    state=security_assessment_state,
    target_id=test_target["id"],
    time_created_greater_than_or_equal_to=security_assessment_time_created_greater_than_or_equal_to,
    time_created_less_than=security_assessment_time_created_less_than,
    triggered_by=security_assessment_triggered_by,
    type=security_assessment_type)
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.GetSecurityAssessments(ctx, &datasafe.GetSecurityAssessmentsArgs{
			CompartmentId:                   compartmentId,
			AccessLevel:                     pulumi.StringRef(securityAssessmentAccessLevel),
			CompartmentIdInSubtree:          pulumi.BoolRef(securityAssessmentCompartmentIdInSubtree),
			DisplayName:                     pulumi.StringRef(securityAssessmentDisplayName),
			IsBaseline:                      pulumi.BoolRef(securityAssessmentIsBaseline),
			IsScheduleAssessment:            pulumi.BoolRef(securityAssessmentIsScheduleAssessment),
			ScheduleAssessmentId:            pulumi.StringRef(testScheduleAssessment.Id),
			State:                           pulumi.StringRef(securityAssessmentState),
			TargetId:                        pulumi.StringRef(testTarget.Id),
			TimeCreatedGreaterThanOrEqualTo: pulumi.StringRef(securityAssessmentTimeCreatedGreaterThanOrEqualTo),
			TimeCreatedLessThan:             pulumi.StringRef(securityAssessmentTimeCreatedLessThan),
			TriggeredBy:                     pulumi.StringRef(securityAssessmentTriggeredBy),
			Type:                            pulumi.StringRef(securityAssessmentType),
		}, 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 testSecurityAssessments = Oci.DataSafe.GetSecurityAssessments.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = securityAssessmentAccessLevel,
        CompartmentIdInSubtree = securityAssessmentCompartmentIdInSubtree,
        DisplayName = securityAssessmentDisplayName,
        IsBaseline = securityAssessmentIsBaseline,
        IsScheduleAssessment = securityAssessmentIsScheduleAssessment,
        ScheduleAssessmentId = testScheduleAssessment.Id,
        State = securityAssessmentState,
        TargetId = testTarget.Id,
        TimeCreatedGreaterThanOrEqualTo = securityAssessmentTimeCreatedGreaterThanOrEqualTo,
        TimeCreatedLessThan = securityAssessmentTimeCreatedLessThan,
        TriggeredBy = securityAssessmentTriggeredBy,
        Type = securityAssessmentType,
    });

});
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.GetSecurityAssessmentsArgs;
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 testSecurityAssessments = DataSafeFunctions.getSecurityAssessments(GetSecurityAssessmentsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(securityAssessmentAccessLevel)
            .compartmentIdInSubtree(securityAssessmentCompartmentIdInSubtree)
            .displayName(securityAssessmentDisplayName)
            .isBaseline(securityAssessmentIsBaseline)
            .isScheduleAssessment(securityAssessmentIsScheduleAssessment)
            .scheduleAssessmentId(testScheduleAssessment.id())
            .state(securityAssessmentState)
            .targetId(testTarget.id())
            .timeCreatedGreaterThanOrEqualTo(securityAssessmentTimeCreatedGreaterThanOrEqualTo)
            .timeCreatedLessThan(securityAssessmentTimeCreatedLessThan)
            .triggeredBy(securityAssessmentTriggeredBy)
            .type(securityAssessmentType)
            .build());

    }
}
Copy
variables:
  testSecurityAssessments:
    fn::invoke:
      function: oci:DataSafe:getSecurityAssessments
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${securityAssessmentAccessLevel}
        compartmentIdInSubtree: ${securityAssessmentCompartmentIdInSubtree}
        displayName: ${securityAssessmentDisplayName}
        isBaseline: ${securityAssessmentIsBaseline}
        isScheduleAssessment: ${securityAssessmentIsScheduleAssessment}
        scheduleAssessmentId: ${testScheduleAssessment.id}
        state: ${securityAssessmentState}
        targetId: ${testTarget.id}
        timeCreatedGreaterThanOrEqualTo: ${securityAssessmentTimeCreatedGreaterThanOrEqualTo}
        timeCreatedLessThan: ${securityAssessmentTimeCreatedLessThan}
        triggeredBy: ${securityAssessmentTriggeredBy}
        type: ${securityAssessmentType}
Copy

Using getSecurityAssessments

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 getSecurityAssessments(args: GetSecurityAssessmentsArgs, opts?: InvokeOptions): Promise<GetSecurityAssessmentsResult>
function getSecurityAssessmentsOutput(args: GetSecurityAssessmentsOutputArgs, opts?: InvokeOptions): Output<GetSecurityAssessmentsResult>
Copy
def get_security_assessments(access_level: Optional[str] = None,
                             compartment_id: Optional[str] = None,
                             compartment_id_in_subtree: Optional[bool] = None,
                             display_name: Optional[str] = None,
                             filters: Optional[Sequence[_datasafe.GetSecurityAssessmentsFilter]] = None,
                             is_baseline: Optional[bool] = None,
                             is_schedule_assessment: Optional[bool] = None,
                             schedule_assessment_id: Optional[str] = None,
                             state: Optional[str] = None,
                             target_id: Optional[str] = None,
                             time_created_greater_than_or_equal_to: Optional[str] = None,
                             time_created_less_than: Optional[str] = None,
                             triggered_by: Optional[str] = None,
                             type: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetSecurityAssessmentsResult
def get_security_assessments_output(access_level: Optional[pulumi.Input[str]] = None,
                             compartment_id: Optional[pulumi.Input[str]] = None,
                             compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                             display_name: Optional[pulumi.Input[str]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetSecurityAssessmentsFilterArgs]]]] = None,
                             is_baseline: Optional[pulumi.Input[bool]] = None,
                             is_schedule_assessment: Optional[pulumi.Input[bool]] = None,
                             schedule_assessment_id: Optional[pulumi.Input[str]] = None,
                             state: Optional[pulumi.Input[str]] = None,
                             target_id: Optional[pulumi.Input[str]] = None,
                             time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                             time_created_less_than: Optional[pulumi.Input[str]] = None,
                             triggered_by: Optional[pulumi.Input[str]] = None,
                             type: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetSecurityAssessmentsResult]
Copy
func GetSecurityAssessments(ctx *Context, args *GetSecurityAssessmentsArgs, opts ...InvokeOption) (*GetSecurityAssessmentsResult, error)
func GetSecurityAssessmentsOutput(ctx *Context, args *GetSecurityAssessmentsOutputArgs, opts ...InvokeOption) GetSecurityAssessmentsResultOutput
Copy

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

public static class GetSecurityAssessments 
{
    public static Task<GetSecurityAssessmentsResult> InvokeAsync(GetSecurityAssessmentsArgs args, InvokeOptions? opts = null)
    public static Output<GetSecurityAssessmentsResult> Invoke(GetSecurityAssessmentsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSecurityAssessmentsResult> getSecurityAssessments(GetSecurityAssessmentsArgs args, InvokeOptions options)
public static Output<GetSecurityAssessmentsResult> getSecurityAssessments(GetSecurityAssessmentsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataSafe/getSecurityAssessments:getSecurityAssessments
  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.
DisplayName string
A filter to return only resources that match the specified display name.
Filters Changes to this property will trigger replacement. List<GetSecurityAssessmentsFilter>
IsBaseline bool
A filter to return only the security assessments that are set as a baseline.
IsScheduleAssessment bool
A filter to return only security assessments of type save schedule.
ScheduleAssessmentId string
The OCID of the security assessment of type SAVE_SCHEDULE.
State string
A filter to return only resources that match the specified lifecycle state.
TargetId string
A filter to return only items related to a specific target OCID.
TimeCreatedGreaterThanOrEqualTo string

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

TimeCreatedLessThan string

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

TriggeredBy string
A filter to return only security asessments that were created by either user or system.
Type string
A filter to return only items that match the specified security assessment type.
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.
DisplayName string
A filter to return only resources that match the specified display name.
Filters Changes to this property will trigger replacement. []GetSecurityAssessmentsFilter
IsBaseline bool
A filter to return only the security assessments that are set as a baseline.
IsScheduleAssessment bool
A filter to return only security assessments of type save schedule.
ScheduleAssessmentId string
The OCID of the security assessment of type SAVE_SCHEDULE.
State string
A filter to return only resources that match the specified lifecycle state.
TargetId string
A filter to return only items related to a specific target OCID.
TimeCreatedGreaterThanOrEqualTo string

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

TimeCreatedLessThan string

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

TriggeredBy string
A filter to return only security asessments that were created by either user or system.
Type string
A filter to return only items that match the specified security assessment type.
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.
displayName String
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. List<GetSecurityAssessmentsFilter>
isBaseline Boolean
A filter to return only the security assessments that are set as a baseline.
isScheduleAssessment Boolean
A filter to return only security assessments of type save schedule.
scheduleAssessmentId String
The OCID of the security assessment of type SAVE_SCHEDULE.
state String
A filter to return only resources that match the specified lifecycle state.
targetId String
A filter to return only items related to a specific target OCID.
timeCreatedGreaterThanOrEqualTo String

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

timeCreatedLessThan String

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

triggeredBy String
A filter to return only security asessments that were created by either user or system.
type String
A filter to return only items that match the specified security assessment type.
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.
displayName string
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. GetSecurityAssessmentsFilter[]
isBaseline boolean
A filter to return only the security assessments that are set as a baseline.
isScheduleAssessment boolean
A filter to return only security assessments of type save schedule.
scheduleAssessmentId string
The OCID of the security assessment of type SAVE_SCHEDULE.
state string
A filter to return only resources that match the specified lifecycle state.
targetId string
A filter to return only items related to a specific target OCID.
timeCreatedGreaterThanOrEqualTo string

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

timeCreatedLessThan string

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

triggeredBy string
A filter to return only security asessments that were created by either user or system.
type string
A filter to return only items that match the specified security assessment type.
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.
display_name str
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. Sequence[datasafe.GetSecurityAssessmentsFilter]
is_baseline bool
A filter to return only the security assessments that are set as a baseline.
is_schedule_assessment bool
A filter to return only security assessments of type save schedule.
schedule_assessment_id str
The OCID of the security assessment of type SAVE_SCHEDULE.
state str
A filter to return only resources that match the specified lifecycle state.
target_id str
A filter to return only items related to a specific target OCID.
time_created_greater_than_or_equal_to str

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

time_created_less_than str

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

triggered_by str
A filter to return only security asessments that were created by either user or system.
type str
A filter to return only items that match the specified security assessment type.
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.
displayName String
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. List<Property Map>
isBaseline Boolean
A filter to return only the security assessments that are set as a baseline.
isScheduleAssessment Boolean
A filter to return only security assessments of type save schedule.
scheduleAssessmentId String
The OCID of the security assessment of type SAVE_SCHEDULE.
state String
A filter to return only resources that match the specified lifecycle state.
targetId String
A filter to return only items related to a specific target OCID.
timeCreatedGreaterThanOrEqualTo String

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

timeCreatedLessThan String

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

triggeredBy String
A filter to return only security asessments that were created by either user or system.
type String
A filter to return only items that match the specified security assessment type.

getSecurityAssessments Result

The following output properties are available:

CompartmentId string
The OCID of the compartment that contains the security assessment.
Id string
The provider-assigned unique ID for this managed resource.
SecurityAssessments List<GetSecurityAssessmentsSecurityAssessment>
The list of security_assessments.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
The display name of the security assessment.
Filters List<GetSecurityAssessmentsFilter>
IsBaseline bool
Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
IsScheduleAssessment bool
ScheduleAssessmentId string
State string
The current state of the security assessment.
TargetId string
TimeCreatedGreaterThanOrEqualTo string
TimeCreatedLessThan string
TriggeredBy string
Indicates whether the security assessment was created by system or by a user.
Type string
The type of this security assessment. The possible types are:
CompartmentId string
The OCID of the compartment that contains the security assessment.
Id string
The provider-assigned unique ID for this managed resource.
SecurityAssessments []GetSecurityAssessmentsSecurityAssessment
The list of security_assessments.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
The display name of the security assessment.
Filters []GetSecurityAssessmentsFilter
IsBaseline bool
Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
IsScheduleAssessment bool
ScheduleAssessmentId string
State string
The current state of the security assessment.
TargetId string
TimeCreatedGreaterThanOrEqualTo string
TimeCreatedLessThan string
TriggeredBy string
Indicates whether the security assessment was created by system or by a user.
Type string
The type of this security assessment. The possible types are:
compartmentId String
The OCID of the compartment that contains the security assessment.
id String
The provider-assigned unique ID for this managed resource.
securityAssessments List<GetSecurityAssessmentsSecurityAssessment>
The list of security_assessments.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
The display name of the security assessment.
filters List<GetSecurityAssessmentsFilter>
isBaseline Boolean
Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
isScheduleAssessment Boolean
scheduleAssessmentId String
state String
The current state of the security assessment.
targetId String
timeCreatedGreaterThanOrEqualTo String
timeCreatedLessThan String
triggeredBy String
Indicates whether the security assessment was created by system or by a user.
type String
The type of this security assessment. The possible types are:
compartmentId string
The OCID of the compartment that contains the security assessment.
id string
The provider-assigned unique ID for this managed resource.
securityAssessments GetSecurityAssessmentsSecurityAssessment[]
The list of security_assessments.
accessLevel string
compartmentIdInSubtree boolean
displayName string
The display name of the security assessment.
filters GetSecurityAssessmentsFilter[]
isBaseline boolean
Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
isScheduleAssessment boolean
scheduleAssessmentId string
state string
The current state of the security assessment.
targetId string
timeCreatedGreaterThanOrEqualTo string
timeCreatedLessThan string
triggeredBy string
Indicates whether the security assessment was created by system or by a user.
type string
The type of this security assessment. The possible types are:
compartment_id str
The OCID of the compartment that contains the security assessment.
id str
The provider-assigned unique ID for this managed resource.
security_assessments Sequence[datasafe.GetSecurityAssessmentsSecurityAssessment]
The list of security_assessments.
access_level str
compartment_id_in_subtree bool
display_name str
The display name of the security assessment.
filters Sequence[datasafe.GetSecurityAssessmentsFilter]
is_baseline bool
Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
is_schedule_assessment bool
schedule_assessment_id str
state str
The current state of the security assessment.
target_id str
time_created_greater_than_or_equal_to str
time_created_less_than str
triggered_by str
Indicates whether the security assessment was created by system or by a user.
type str
The type of this security assessment. The possible types are:
compartmentId String
The OCID of the compartment that contains the security assessment.
id String
The provider-assigned unique ID for this managed resource.
securityAssessments List<Property Map>
The list of security_assessments.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
The display name of the security assessment.
filters List<Property Map>
isBaseline Boolean
Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
isScheduleAssessment Boolean
scheduleAssessmentId String
state String
The current state of the security assessment.
targetId String
timeCreatedGreaterThanOrEqualTo String
timeCreatedLessThan String
triggeredBy String
Indicates whether the security assessment was created by system or by a user.
type String
The type of this security assessment. The possible types are:

Supporting Types

GetSecurityAssessmentsFilter

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

GetSecurityAssessmentsSecurityAssessment

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
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"}
Description This property is required. string
The description of the security assessment.
DisplayName This property is required. string
A filter to return only resources that match the specified display name.
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"}
Id This property is required. string
The OCID of the security assessment.
IgnoredAssessmentIds This property is required. List<string>
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
IgnoredTargets This property is required. List<string>
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
IsAssessmentScheduled This property is required. bool
Indicates whether the assessment is scheduled to run.
IsBaseline This property is required. bool
A filter to return only the security assessments that are set as a baseline.
IsDeviatedFromBaseline This property is required. bool
Indicates whether or not the security assessment deviates from the baseline.
LastComparedBaselineId This property is required. string
The OCID of the baseline against which the latest security assessment was compared.
LifecycleDetails This property is required. string
Details about the current state of the security assessment.
Link This property is required. string
The summary of findings for the security assessment.
Schedule This property is required. string
Schedule of the assessment that runs periodically in the specified format: - ;
ScheduleSecurityAssessmentId This property is required. string
The OCID of the security assessment that is responsible for creating this scheduled save assessment.
State This property is required. string
A filter to return only resources that match the specified lifecycle state.
Statistics This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatistic>
Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
SystemTags This property is required. 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"}
TargetId This property is required. string
A filter to return only items related to a specific target OCID.
TargetIds This property is required. List<string>
Array of database target OCIDs.
TargetVersion This property is required. string
The version of the target database.
TimeCreated This property is required. string
The date and time the security assessment was created, in the format defined by RFC3339.
TimeLastAssessed This property is required. string
The date and time the security assessment was last executed, in the format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the security assessment was last updated, in the format defined by RFC3339.
TriggeredBy This property is required. string
A filter to return only security asessments that were created by either user or system.
Type This property is required. string
A filter to return only items that match the specified security assessment type.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
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"}
Description This property is required. string
The description of the security assessment.
DisplayName This property is required. string
A filter to return only resources that match the specified display name.
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"}
Id This property is required. string
The OCID of the security assessment.
IgnoredAssessmentIds This property is required. []string
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
IgnoredTargets This property is required. []string
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
IsAssessmentScheduled This property is required. bool
Indicates whether the assessment is scheduled to run.
IsBaseline This property is required. bool
A filter to return only the security assessments that are set as a baseline.
IsDeviatedFromBaseline This property is required. bool
Indicates whether or not the security assessment deviates from the baseline.
LastComparedBaselineId This property is required. string
The OCID of the baseline against which the latest security assessment was compared.
LifecycleDetails This property is required. string
Details about the current state of the security assessment.
Link This property is required. string
The summary of findings for the security assessment.
Schedule This property is required. string
Schedule of the assessment that runs periodically in the specified format: - ;
ScheduleSecurityAssessmentId This property is required. string
The OCID of the security assessment that is responsible for creating this scheduled save assessment.
State This property is required. string
A filter to return only resources that match the specified lifecycle state.
Statistics This property is required. []GetSecurityAssessmentsSecurityAssessmentStatistic
Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
SystemTags This property is required. 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"}
TargetId This property is required. string
A filter to return only items related to a specific target OCID.
TargetIds This property is required. []string
Array of database target OCIDs.
TargetVersion This property is required. string
The version of the target database.
TimeCreated This property is required. string
The date and time the security assessment was created, in the format defined by RFC3339.
TimeLastAssessed This property is required. string
The date and time the security assessment was last executed, in the format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the security assessment was last updated, in the format defined by RFC3339.
TriggeredBy This property is required. string
A filter to return only security asessments that were created by either user or system.
Type This property is required. string
A filter to return only items that match the specified security assessment type.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
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"}
description This property is required. String
The description of the security assessment.
displayName This property is required. String
A filter to return only resources that match the specified display name.
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"}
id This property is required. String
The OCID of the security assessment.
ignoredAssessmentIds This property is required. List<String>
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
ignoredTargets This property is required. List<String>
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
isAssessmentScheduled This property is required. Boolean
Indicates whether the assessment is scheduled to run.
isBaseline This property is required. Boolean
A filter to return only the security assessments that are set as a baseline.
isDeviatedFromBaseline This property is required. Boolean
Indicates whether or not the security assessment deviates from the baseline.
lastComparedBaselineId This property is required. String
The OCID of the baseline against which the latest security assessment was compared.
lifecycleDetails This property is required. String
Details about the current state of the security assessment.
link This property is required. String
The summary of findings for the security assessment.
schedule This property is required. String
Schedule of the assessment that runs periodically in the specified format: - ;
scheduleSecurityAssessmentId This property is required. String
The OCID of the security assessment that is responsible for creating this scheduled save assessment.
state This property is required. String
A filter to return only resources that match the specified lifecycle state.
statistics This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatistic>
Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
systemTags This property is required. 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"}
targetId This property is required. String
A filter to return only items related to a specific target OCID.
targetIds This property is required. List<String>
Array of database target OCIDs.
targetVersion This property is required. String
The version of the target database.
timeCreated This property is required. String
The date and time the security assessment was created, in the format defined by RFC3339.
timeLastAssessed This property is required. String
The date and time the security assessment was last executed, in the format defined by RFC3339.
timeUpdated This property is required. String
The date and time the security assessment was last updated, in the format defined by RFC3339.
triggeredBy This property is required. String
A filter to return only security asessments that were created by either user or system.
type This property is required. String
A filter to return only items that match the specified security assessment type.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
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"}
description This property is required. string
The description of the security assessment.
displayName This property is required. string
A filter to return only resources that match the specified display name.
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"}
id This property is required. string
The OCID of the security assessment.
ignoredAssessmentIds This property is required. string[]
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
ignoredTargets This property is required. string[]
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
isAssessmentScheduled This property is required. boolean
Indicates whether the assessment is scheduled to run.
isBaseline This property is required. boolean
A filter to return only the security assessments that are set as a baseline.
isDeviatedFromBaseline This property is required. boolean
Indicates whether or not the security assessment deviates from the baseline.
lastComparedBaselineId This property is required. string
The OCID of the baseline against which the latest security assessment was compared.
lifecycleDetails This property is required. string
Details about the current state of the security assessment.
link This property is required. string
The summary of findings for the security assessment.
schedule This property is required. string
Schedule of the assessment that runs periodically in the specified format: - ;
scheduleSecurityAssessmentId This property is required. string
The OCID of the security assessment that is responsible for creating this scheduled save assessment.
state This property is required. string
A filter to return only resources that match the specified lifecycle state.
statistics This property is required. GetSecurityAssessmentsSecurityAssessmentStatistic[]
Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
systemTags This property is required. {[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"}
targetId This property is required. string
A filter to return only items related to a specific target OCID.
targetIds This property is required. string[]
Array of database target OCIDs.
targetVersion This property is required. string
The version of the target database.
timeCreated This property is required. string
The date and time the security assessment was created, in the format defined by RFC3339.
timeLastAssessed This property is required. string
The date and time the security assessment was last executed, in the format defined by RFC3339.
timeUpdated This property is required. string
The date and time the security assessment was last updated, in the format defined by RFC3339.
triggeredBy This property is required. string
A filter to return only security asessments that were created by either user or system.
type This property is required. string
A filter to return only items that match the specified security assessment type.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
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"}
description This property is required. str
The description of the security assessment.
display_name This property is required. str
A filter to return only resources that match the specified display name.
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"}
id This property is required. str
The OCID of the security assessment.
ignored_assessment_ids This property is required. Sequence[str]
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
ignored_targets This property is required. Sequence[str]
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
is_assessment_scheduled This property is required. bool
Indicates whether the assessment is scheduled to run.
is_baseline This property is required. bool
A filter to return only the security assessments that are set as a baseline.
is_deviated_from_baseline This property is required. bool
Indicates whether or not the security assessment deviates from the baseline.
last_compared_baseline_id This property is required. str
The OCID of the baseline against which the latest security assessment was compared.
lifecycle_details This property is required. str
Details about the current state of the security assessment.
link This property is required. str
The summary of findings for the security assessment.
schedule This property is required. str
Schedule of the assessment that runs periodically in the specified format: - ;
schedule_security_assessment_id This property is required. str
The OCID of the security assessment that is responsible for creating this scheduled save assessment.
state This property is required. str
A filter to return only resources that match the specified lifecycle state.
statistics This property is required. Sequence[datasafe.GetSecurityAssessmentsSecurityAssessmentStatistic]
Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
system_tags This property is required. 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_id This property is required. str
A filter to return only items related to a specific target OCID.
target_ids This property is required. Sequence[str]
Array of database target OCIDs.
target_version This property is required. str
The version of the target database.
time_created This property is required. str
The date and time the security assessment was created, in the format defined by RFC3339.
time_last_assessed This property is required. str
The date and time the security assessment was last executed, in the format defined by RFC3339.
time_updated This property is required. str
The date and time the security assessment was last updated, in the format defined by RFC3339.
triggered_by This property is required. str
A filter to return only security asessments that were created by either user or system.
type This property is required. str
A filter to return only items that match the specified security assessment type.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
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"}
description This property is required. String
The description of the security assessment.
displayName This property is required. String
A filter to return only resources that match the specified display name.
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"}
id This property is required. String
The OCID of the security assessment.
ignoredAssessmentIds This property is required. List<String>
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
ignoredTargets This property is required. List<String>
List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
isAssessmentScheduled This property is required. Boolean
Indicates whether the assessment is scheduled to run.
isBaseline This property is required. Boolean
A filter to return only the security assessments that are set as a baseline.
isDeviatedFromBaseline This property is required. Boolean
Indicates whether or not the security assessment deviates from the baseline.
lastComparedBaselineId This property is required. String
The OCID of the baseline against which the latest security assessment was compared.
lifecycleDetails This property is required. String
Details about the current state of the security assessment.
link This property is required. String
The summary of findings for the security assessment.
schedule This property is required. String
Schedule of the assessment that runs periodically in the specified format: - ;
scheduleSecurityAssessmentId This property is required. String
The OCID of the security assessment that is responsible for creating this scheduled save assessment.
state This property is required. String
A filter to return only resources that match the specified lifecycle state.
statistics This property is required. List<Property Map>
Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
systemTags This property is required. 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"}
targetId This property is required. String
A filter to return only items related to a specific target OCID.
targetIds This property is required. List<String>
Array of database target OCIDs.
targetVersion This property is required. String
The version of the target database.
timeCreated This property is required. String
The date and time the security assessment was created, in the format defined by RFC3339.
timeLastAssessed This property is required. String
The date and time the security assessment was last executed, in the format defined by RFC3339.
timeUpdated This property is required. String
The date and time the security assessment was last updated, in the format defined by RFC3339.
triggeredBy This property is required. String
A filter to return only security asessments that were created by either user or system.
type This property is required. String
A filter to return only items that match the specified security assessment type.

GetSecurityAssessmentsSecurityAssessmentStatistic

Advisories This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticAdvisory>
Statistics showing the number of findings with a particular risk level for each category.
Deferreds This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticDeferred>
Statistics showing the number of findings with a particular risk level for each category.
Evaluates This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticEvaluate>
Statistics showing the number of findings with a particular risk level for each category.
HighRisks This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticHighRisk>
Statistics showing the number of findings with a particular risk level for each category.
LowRisks This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticLowRisk>
Statistics showing the number of findings with a particular risk level for each category.
MediumRisks This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticMediumRisk>
Statistics showing the number of findings with a particular risk level for each category.
Passes This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticPass>
Statistics showing the number of findings with a particular risk level for each category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
Advisories This property is required. []GetSecurityAssessmentsSecurityAssessmentStatisticAdvisory
Statistics showing the number of findings with a particular risk level for each category.
Deferreds This property is required. []GetSecurityAssessmentsSecurityAssessmentStatisticDeferred
Statistics showing the number of findings with a particular risk level for each category.
Evaluates This property is required. []GetSecurityAssessmentsSecurityAssessmentStatisticEvaluate
Statistics showing the number of findings with a particular risk level for each category.
HighRisks This property is required. []GetSecurityAssessmentsSecurityAssessmentStatisticHighRisk
Statistics showing the number of findings with a particular risk level for each category.
LowRisks This property is required. []GetSecurityAssessmentsSecurityAssessmentStatisticLowRisk
Statistics showing the number of findings with a particular risk level for each category.
MediumRisks This property is required. []GetSecurityAssessmentsSecurityAssessmentStatisticMediumRisk
Statistics showing the number of findings with a particular risk level for each category.
Passes This property is required. []GetSecurityAssessmentsSecurityAssessmentStatisticPass
Statistics showing the number of findings with a particular risk level for each category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
advisories This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticAdvisory>
Statistics showing the number of findings with a particular risk level for each category.
deferreds This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticDeferred>
Statistics showing the number of findings with a particular risk level for each category.
evaluates This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticEvaluate>
Statistics showing the number of findings with a particular risk level for each category.
highRisks This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticHighRisk>
Statistics showing the number of findings with a particular risk level for each category.
lowRisks This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticLowRisk>
Statistics showing the number of findings with a particular risk level for each category.
mediumRisks This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticMediumRisk>
Statistics showing the number of findings with a particular risk level for each category.
passes This property is required. List<GetSecurityAssessmentsSecurityAssessmentStatisticPass>
Statistics showing the number of findings with a particular risk level for each category.
targetsCount This property is required. Integer
The total number of targets in this security assessment.
advisories This property is required. GetSecurityAssessmentsSecurityAssessmentStatisticAdvisory[]
Statistics showing the number of findings with a particular risk level for each category.
deferreds This property is required. GetSecurityAssessmentsSecurityAssessmentStatisticDeferred[]
Statistics showing the number of findings with a particular risk level for each category.
evaluates This property is required. GetSecurityAssessmentsSecurityAssessmentStatisticEvaluate[]
Statistics showing the number of findings with a particular risk level for each category.
highRisks This property is required. GetSecurityAssessmentsSecurityAssessmentStatisticHighRisk[]
Statistics showing the number of findings with a particular risk level for each category.
lowRisks This property is required. GetSecurityAssessmentsSecurityAssessmentStatisticLowRisk[]
Statistics showing the number of findings with a particular risk level for each category.
mediumRisks This property is required. GetSecurityAssessmentsSecurityAssessmentStatisticMediumRisk[]
Statistics showing the number of findings with a particular risk level for each category.
passes This property is required. GetSecurityAssessmentsSecurityAssessmentStatisticPass[]
Statistics showing the number of findings with a particular risk level for each category.
targetsCount This property is required. number
The total number of targets in this security assessment.
advisories This property is required. Sequence[datasafe.GetSecurityAssessmentsSecurityAssessmentStatisticAdvisory]
Statistics showing the number of findings with a particular risk level for each category.
deferreds This property is required. Sequence[datasafe.GetSecurityAssessmentsSecurityAssessmentStatisticDeferred]
Statistics showing the number of findings with a particular risk level for each category.
evaluates This property is required. Sequence[datasafe.GetSecurityAssessmentsSecurityAssessmentStatisticEvaluate]
Statistics showing the number of findings with a particular risk level for each category.
high_risks This property is required. Sequence[datasafe.GetSecurityAssessmentsSecurityAssessmentStatisticHighRisk]
Statistics showing the number of findings with a particular risk level for each category.
low_risks This property is required. Sequence[datasafe.GetSecurityAssessmentsSecurityAssessmentStatisticLowRisk]
Statistics showing the number of findings with a particular risk level for each category.
medium_risks This property is required. Sequence[datasafe.GetSecurityAssessmentsSecurityAssessmentStatisticMediumRisk]
Statistics showing the number of findings with a particular risk level for each category.
passes This property is required. Sequence[datasafe.GetSecurityAssessmentsSecurityAssessmentStatisticPass]
Statistics showing the number of findings with a particular risk level for each category.
targets_count This property is required. int
The total number of targets in this security assessment.
advisories This property is required. List<Property Map>
Statistics showing the number of findings with a particular risk level for each category.
deferreds This property is required. List<Property Map>
Statistics showing the number of findings with a particular risk level for each category.
evaluates This property is required. List<Property Map>
Statistics showing the number of findings with a particular risk level for each category.
highRisks This property is required. List<Property Map>
Statistics showing the number of findings with a particular risk level for each category.
lowRisks This property is required. List<Property Map>
Statistics showing the number of findings with a particular risk level for each category.
mediumRisks This property is required. List<Property Map>
Statistics showing the number of findings with a particular risk level for each category.
passes This property is required. List<Property Map>
Statistics showing the number of findings with a particular risk level for each category.
targetsCount This property is required. Number
The total number of targets in this security assessment.

GetSecurityAssessmentsSecurityAssessmentStatisticAdvisory

AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Integer
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Integer
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Integer
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Integer
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Integer
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Integer
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Integer
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Integer
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. number
The number of findings in the User Accounts category.
auditing_findings_count This property is required. int
The number of findings in the Auditing category.
authorization_control_findings_count This property is required. int
The number of findings in the Authorization Control category.
data_encryption_findings_count This property is required. int
The number of findings in the Data Encryption category.
db_configuration_findings_count This property is required. int
The number of findings in the Database Configuration category.
fine_grained_access_control_findings_count This property is required. int
The number of findings in the Fine-Grained Access Control category.
privileges_and_roles_findings_count This property is required. int
The number of findings in the Privileges and Roles category.
targets_count This property is required. int
The total number of targets in this security assessment.
user_accounts_findings_count This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Number
The number of findings in the User Accounts category.

GetSecurityAssessmentsSecurityAssessmentStatisticDeferred

AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Integer
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Integer
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Integer
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Integer
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Integer
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Integer
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Integer
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Integer
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. number
The number of findings in the User Accounts category.
auditing_findings_count This property is required. int
The number of findings in the Auditing category.
authorization_control_findings_count This property is required. int
The number of findings in the Authorization Control category.
data_encryption_findings_count This property is required. int
The number of findings in the Data Encryption category.
db_configuration_findings_count This property is required. int
The number of findings in the Database Configuration category.
fine_grained_access_control_findings_count This property is required. int
The number of findings in the Fine-Grained Access Control category.
privileges_and_roles_findings_count This property is required. int
The number of findings in the Privileges and Roles category.
targets_count This property is required. int
The total number of targets in this security assessment.
user_accounts_findings_count This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Number
The number of findings in the User Accounts category.

GetSecurityAssessmentsSecurityAssessmentStatisticEvaluate

AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Integer
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Integer
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Integer
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Integer
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Integer
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Integer
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Integer
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Integer
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. number
The number of findings in the User Accounts category.
auditing_findings_count This property is required. int
The number of findings in the Auditing category.
authorization_control_findings_count This property is required. int
The number of findings in the Authorization Control category.
data_encryption_findings_count This property is required. int
The number of findings in the Data Encryption category.
db_configuration_findings_count This property is required. int
The number of findings in the Database Configuration category.
fine_grained_access_control_findings_count This property is required. int
The number of findings in the Fine-Grained Access Control category.
privileges_and_roles_findings_count This property is required. int
The number of findings in the Privileges and Roles category.
targets_count This property is required. int
The total number of targets in this security assessment.
user_accounts_findings_count This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Number
The number of findings in the User Accounts category.

GetSecurityAssessmentsSecurityAssessmentStatisticHighRisk

AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Integer
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Integer
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Integer
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Integer
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Integer
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Integer
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Integer
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Integer
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. number
The number of findings in the User Accounts category.
auditing_findings_count This property is required. int
The number of findings in the Auditing category.
authorization_control_findings_count This property is required. int
The number of findings in the Authorization Control category.
data_encryption_findings_count This property is required. int
The number of findings in the Data Encryption category.
db_configuration_findings_count This property is required. int
The number of findings in the Database Configuration category.
fine_grained_access_control_findings_count This property is required. int
The number of findings in the Fine-Grained Access Control category.
privileges_and_roles_findings_count This property is required. int
The number of findings in the Privileges and Roles category.
targets_count This property is required. int
The total number of targets in this security assessment.
user_accounts_findings_count This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Number
The number of findings in the User Accounts category.

GetSecurityAssessmentsSecurityAssessmentStatisticLowRisk

AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Integer
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Integer
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Integer
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Integer
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Integer
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Integer
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Integer
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Integer
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. number
The number of findings in the User Accounts category.
auditing_findings_count This property is required. int
The number of findings in the Auditing category.
authorization_control_findings_count This property is required. int
The number of findings in the Authorization Control category.
data_encryption_findings_count This property is required. int
The number of findings in the Data Encryption category.
db_configuration_findings_count This property is required. int
The number of findings in the Database Configuration category.
fine_grained_access_control_findings_count This property is required. int
The number of findings in the Fine-Grained Access Control category.
privileges_and_roles_findings_count This property is required. int
The number of findings in the Privileges and Roles category.
targets_count This property is required. int
The total number of targets in this security assessment.
user_accounts_findings_count This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Number
The number of findings in the User Accounts category.

GetSecurityAssessmentsSecurityAssessmentStatisticMediumRisk

AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Integer
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Integer
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Integer
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Integer
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Integer
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Integer
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Integer
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Integer
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. number
The number of findings in the User Accounts category.
auditing_findings_count This property is required. int
The number of findings in the Auditing category.
authorization_control_findings_count This property is required. int
The number of findings in the Authorization Control category.
data_encryption_findings_count This property is required. int
The number of findings in the Data Encryption category.
db_configuration_findings_count This property is required. int
The number of findings in the Database Configuration category.
fine_grained_access_control_findings_count This property is required. int
The number of findings in the Fine-Grained Access Control category.
privileges_and_roles_findings_count This property is required. int
The number of findings in the Privileges and Roles category.
targets_count This property is required. int
The total number of targets in this security assessment.
user_accounts_findings_count This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Number
The number of findings in the User Accounts category.

GetSecurityAssessmentsSecurityAssessmentStatisticPass

AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
AuditingFindingsCount This property is required. int
The number of findings in the Auditing category.
AuthorizationControlFindingsCount This property is required. int
The number of findings in the Authorization Control category.
DataEncryptionFindingsCount This property is required. int
The number of findings in the Data Encryption category.
DbConfigurationFindingsCount This property is required. int
The number of findings in the Database Configuration category.
FineGrainedAccessControlFindingsCount This property is required. int
The number of findings in the Fine-Grained Access Control category.
PrivilegesAndRolesFindingsCount This property is required. int
The number of findings in the Privileges and Roles category.
TargetsCount This property is required. int
The total number of targets in this security assessment.
UserAccountsFindingsCount This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Integer
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Integer
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Integer
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Integer
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Integer
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Integer
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Integer
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Integer
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. number
The number of findings in the User Accounts category.
auditing_findings_count This property is required. int
The number of findings in the Auditing category.
authorization_control_findings_count This property is required. int
The number of findings in the Authorization Control category.
data_encryption_findings_count This property is required. int
The number of findings in the Data Encryption category.
db_configuration_findings_count This property is required. int
The number of findings in the Database Configuration category.
fine_grained_access_control_findings_count This property is required. int
The number of findings in the Fine-Grained Access Control category.
privileges_and_roles_findings_count This property is required. int
The number of findings in the Privileges and Roles category.
targets_count This property is required. int
The total number of targets in this security assessment.
user_accounts_findings_count This property is required. int
The number of findings in the User Accounts category.
auditingFindingsCount This property is required. Number
The number of findings in the Auditing category.
authorizationControlFindingsCount This property is required. Number
The number of findings in the Authorization Control category.
dataEncryptionFindingsCount This property is required. Number
The number of findings in the Data Encryption category.
dbConfigurationFindingsCount This property is required. Number
The number of findings in the Database Configuration category.
fineGrainedAccessControlFindingsCount This property is required. Number
The number of findings in the Fine-Grained Access Control category.
privilegesAndRolesFindingsCount This property is required. Number
The number of findings in the Privileges and Roles category.
targetsCount This property is required. Number
The total number of targets in this security assessment.
userAccountsFindingsCount This property is required. Number
The number of findings in the User Accounts category.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi