1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSecurityAssessments
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

oci.DataSafe.getSecurityAssessments

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 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: _var.compartment_id,
        accessLevel: _var.security_assessment_access_level,
        compartmentIdInSubtree: _var.security_assessment_compartment_id_in_subtree,
        displayName: _var.security_assessment_display_name,
        isBaseline: _var.security_assessment_is_baseline,
        isScheduleAssessment: _var.security_assessment_is_schedule_assessment,
        scheduleAssessmentId: oci_data_safe_schedule_assessment.test_schedule_assessment.id,
        state: _var.security_assessment_state,
        targetId: oci_cloud_guard_target.test_target.id,
        timeCreatedGreaterThanOrEqualTo: _var.security_assessment_time_created_greater_than_or_equal_to,
        timeCreatedLessThan: _var.security_assessment_time_created_less_than,
        triggeredBy: _var.security_assessment_triggered_by,
        type: _var.security_assessment_type,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_security_assessments = oci.DataSafe.get_security_assessments(compartment_id=var["compartment_id"],
        access_level=var["security_assessment_access_level"],
        compartment_id_in_subtree=var["security_assessment_compartment_id_in_subtree"],
        display_name=var["security_assessment_display_name"],
        is_baseline=var["security_assessment_is_baseline"],
        is_schedule_assessment=var["security_assessment_is_schedule_assessment"],
        schedule_assessment_id=oci_data_safe_schedule_assessment["test_schedule_assessment"]["id"],
        state=var["security_assessment_state"],
        target_id=oci_cloud_guard_target["test_target"]["id"],
        time_created_greater_than_or_equal_to=var["security_assessment_time_created_greater_than_or_equal_to"],
        time_created_less_than=var["security_assessment_time_created_less_than"],
        triggered_by=var["security_assessment_triggered_by"],
        type=var["security_assessment_type"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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:                   _var.Compartment_id,
    			AccessLevel:                     pulumi.StringRef(_var.Security_assessment_access_level),
    			CompartmentIdInSubtree:          pulumi.BoolRef(_var.Security_assessment_compartment_id_in_subtree),
    			DisplayName:                     pulumi.StringRef(_var.Security_assessment_display_name),
    			IsBaseline:                      pulumi.BoolRef(_var.Security_assessment_is_baseline),
    			IsScheduleAssessment:            pulumi.BoolRef(_var.Security_assessment_is_schedule_assessment),
    			ScheduleAssessmentId:            pulumi.StringRef(oci_data_safe_schedule_assessment.Test_schedule_assessment.Id),
    			State:                           pulumi.StringRef(_var.Security_assessment_state),
    			TargetId:                        pulumi.StringRef(oci_cloud_guard_target.Test_target.Id),
    			TimeCreatedGreaterThanOrEqualTo: pulumi.StringRef(_var.Security_assessment_time_created_greater_than_or_equal_to),
    			TimeCreatedLessThan:             pulumi.StringRef(_var.Security_assessment_time_created_less_than),
    			TriggeredBy:                     pulumi.StringRef(_var.Security_assessment_triggered_by),
    			Type:                            pulumi.StringRef(_var.Security_assessment_type),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testSecurityAssessments = Oci.DataSafe.GetSecurityAssessments.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            AccessLevel = @var.Security_assessment_access_level,
            CompartmentIdInSubtree = @var.Security_assessment_compartment_id_in_subtree,
            DisplayName = @var.Security_assessment_display_name,
            IsBaseline = @var.Security_assessment_is_baseline,
            IsScheduleAssessment = @var.Security_assessment_is_schedule_assessment,
            ScheduleAssessmentId = oci_data_safe_schedule_assessment.Test_schedule_assessment.Id,
            State = @var.Security_assessment_state,
            TargetId = oci_cloud_guard_target.Test_target.Id,
            TimeCreatedGreaterThanOrEqualTo = @var.Security_assessment_time_created_greater_than_or_equal_to,
            TimeCreatedLessThan = @var.Security_assessment_time_created_less_than,
            TriggeredBy = @var.Security_assessment_triggered_by,
            Type = @var.Security_assessment_type,
        });
    
    });
    
    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(var_.compartment_id())
                .accessLevel(var_.security_assessment_access_level())
                .compartmentIdInSubtree(var_.security_assessment_compartment_id_in_subtree())
                .displayName(var_.security_assessment_display_name())
                .isBaseline(var_.security_assessment_is_baseline())
                .isScheduleAssessment(var_.security_assessment_is_schedule_assessment())
                .scheduleAssessmentId(oci_data_safe_schedule_assessment.test_schedule_assessment().id())
                .state(var_.security_assessment_state())
                .targetId(oci_cloud_guard_target.test_target().id())
                .timeCreatedGreaterThanOrEqualTo(var_.security_assessment_time_created_greater_than_or_equal_to())
                .timeCreatedLessThan(var_.security_assessment_time_created_less_than())
                .triggeredBy(var_.security_assessment_triggered_by())
                .type(var_.security_assessment_type())
                .build());
    
        }
    }
    
    variables:
      testSecurityAssessments:
        fn::invoke:
          Function: oci:DataSafe:getSecurityAssessments
          Arguments:
            compartmentId: ${var.compartment_id}
            accessLevel: ${var.security_assessment_access_level}
            compartmentIdInSubtree: ${var.security_assessment_compartment_id_in_subtree}
            displayName: ${var.security_assessment_display_name}
            isBaseline: ${var.security_assessment_is_baseline}
            isScheduleAssessment: ${var.security_assessment_is_schedule_assessment}
            scheduleAssessmentId: ${oci_data_safe_schedule_assessment.test_schedule_assessment.id}
            state: ${var.security_assessment_state}
            targetId: ${oci_cloud_guard_target.test_target.id}
            timeCreatedGreaterThanOrEqualTo: ${var.security_assessment_time_created_greater_than_or_equal_to}
            timeCreatedLessThan: ${var.security_assessment_time_created_less_than}
            triggeredBy: ${var.security_assessment_triggered_by}
            type: ${var.security_assessment_type}
    

    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>
    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]
    func GetSecurityAssessments(ctx *Context, args *GetSecurityAssessmentsArgs, opts ...InvokeOption) (*GetSecurityAssessmentsResult, error)
    func GetSecurityAssessmentsOutput(ctx *Context, args *GetSecurityAssessmentsOutputArgs, opts ...InvokeOption) GetSecurityAssessmentsResultOutput

    > 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)
    }
    public static CompletableFuture<GetSecurityAssessmentsResult> getSecurityAssessments(GetSecurityAssessmentsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataSafe/getSecurityAssessments:getSecurityAssessments
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    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 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 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 []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 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 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 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 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 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 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 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 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 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 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 string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetSecurityAssessmentsSecurityAssessment

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    Description string
    The description of the security assessment.
    DisplayName string
    A filter to return only resources that match the specified display name.
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
    Id string
    The OCID of the security assessment.
    IgnoredAssessmentIds List<string>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IgnoredTargets List<string>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IsBaseline bool
    A filter to return only the security assessments that are set as a baseline.
    IsDeviatedFromBaseline bool
    Indicates whether or not the security assessment deviates from the baseline.
    LastComparedBaselineId string
    The OCID of the baseline against which the latest security assessment was compared.
    LifecycleDetails string
    Details about the current state of the security assessment.
    Link string
    The summary of findings for the security assessment.
    Schedule string
    Schedule of the assessment that runs periodically in the specified format: - ;
    ScheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    State string
    A filter to return only resources that match the specified lifecycle state.
    Statistics 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 Dictionary<string, object>
    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 string
    A filter to return only items related to a specific target OCID.
    TargetIds List<string>
    Array of database target OCIDs.
    TargetVersion string
    The version of the target database.
    TimeCreated string
    The date and time the security assessment was created, in the format defined by RFC3339.
    TimeLastAssessed string
    The date and time the security assessment was last executed, in the format defined by RFC3339.
    TimeUpdated string
    The date and time the security assessment was last updated, in the format defined by RFC3339.
    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 string
    A filter to return only resources that match the specified compartment OCID.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    Description string
    The description of the security assessment.
    DisplayName string
    A filter to return only resources that match the specified display name.
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
    Id string
    The OCID of the security assessment.
    IgnoredAssessmentIds []string
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IgnoredTargets []string
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IsBaseline bool
    A filter to return only the security assessments that are set as a baseline.
    IsDeviatedFromBaseline bool
    Indicates whether or not the security assessment deviates from the baseline.
    LastComparedBaselineId string
    The OCID of the baseline against which the latest security assessment was compared.
    LifecycleDetails string
    Details about the current state of the security assessment.
    Link string
    The summary of findings for the security assessment.
    Schedule string
    Schedule of the assessment that runs periodically in the specified format: - ;
    ScheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    State string
    A filter to return only resources that match the specified lifecycle state.
    Statistics []GetSecurityAssessmentsSecurityAssessmentStatistic
    Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
    SystemTags map[string]interface{}
    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 string
    A filter to return only items related to a specific target OCID.
    TargetIds []string
    Array of database target OCIDs.
    TargetVersion string
    The version of the target database.
    TimeCreated string
    The date and time the security assessment was created, in the format defined by RFC3339.
    TimeLastAssessed string
    The date and time the security assessment was last executed, in the format defined by RFC3339.
    TimeUpdated string
    The date and time the security assessment was last updated, in the format defined by RFC3339.
    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 String
    A filter to return only resources that match the specified compartment OCID.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description String
    The description of the security assessment.
    displayName String
    A filter to return only resources that match the specified display name.
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
    id String
    The OCID of the security assessment.
    ignoredAssessmentIds List<String>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    ignoredTargets List<String>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    isBaseline Boolean
    A filter to return only the security assessments that are set as a baseline.
    isDeviatedFromBaseline Boolean
    Indicates whether or not the security assessment deviates from the baseline.
    lastComparedBaselineId String
    The OCID of the baseline against which the latest security assessment was compared.
    lifecycleDetails String
    Details about the current state of the security assessment.
    link String
    The summary of findings for the security assessment.
    schedule String
    Schedule of the assessment that runs periodically in the specified format: - ;
    scheduleSecurityAssessmentId String
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state String
    A filter to return only resources that match the specified lifecycle state.
    statistics 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 Map<String,Object>
    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 String
    A filter to return only items related to a specific target OCID.
    targetIds List<String>
    Array of database target OCIDs.
    targetVersion String
    The version of the target database.
    timeCreated String
    The date and time the security assessment was created, in the format defined by RFC3339.
    timeLastAssessed String
    The date and time the security assessment was last executed, in the format defined by RFC3339.
    timeUpdated String
    The date and time the security assessment was last updated, in the format defined by RFC3339.
    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 string
    A filter to return only resources that match the specified compartment OCID.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description string
    The description of the security assessment.
    displayName string
    A filter to return only resources that match the specified display name.
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
    id string
    The OCID of the security assessment.
    ignoredAssessmentIds string[]
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    ignoredTargets string[]
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    isBaseline boolean
    A filter to return only the security assessments that are set as a baseline.
    isDeviatedFromBaseline boolean
    Indicates whether or not the security assessment deviates from the baseline.
    lastComparedBaselineId string
    The OCID of the baseline against which the latest security assessment was compared.
    lifecycleDetails string
    Details about the current state of the security assessment.
    link string
    The summary of findings for the security assessment.
    schedule string
    Schedule of the assessment that runs periodically in the specified format: - ;
    scheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state string
    A filter to return only resources that match the specified lifecycle state.
    statistics GetSecurityAssessmentsSecurityAssessmentStatistic[]
    Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
    systemTags {[key: string]: any}
    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 string
    A filter to return only items related to a specific target OCID.
    targetIds string[]
    Array of database target OCIDs.
    targetVersion string
    The version of the target database.
    timeCreated string
    The date and time the security assessment was created, in the format defined by RFC3339.
    timeLastAssessed string
    The date and time the security assessment was last executed, in the format defined by RFC3339.
    timeUpdated string
    The date and time the security assessment was last updated, in the format defined by RFC3339.
    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 str
    A filter to return only resources that match the specified compartment OCID.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description str
    The description of the security assessment.
    display_name str
    A filter to return only resources that match the specified display name.
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
    id str
    The OCID of the security assessment.
    ignored_assessment_ids Sequence[str]
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    ignored_targets Sequence[str]
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    is_baseline bool
    A filter to return only the security assessments that are set as a baseline.
    is_deviated_from_baseline bool
    Indicates whether or not the security assessment deviates from the baseline.
    last_compared_baseline_id str
    The OCID of the baseline against which the latest security assessment was compared.
    lifecycle_details str
    Details about the current state of the security assessment.
    link str
    The summary of findings for the security assessment.
    schedule str
    Schedule of the assessment that runs periodically in the specified format: - ;
    schedule_security_assessment_id str
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state str
    A filter to return only resources that match the specified lifecycle state.
    statistics 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 Mapping[str, Any]
    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 str
    A filter to return only items related to a specific target OCID.
    target_ids Sequence[str]
    Array of database target OCIDs.
    target_version str
    The version of the target database.
    time_created str
    The date and time the security assessment was created, in the format defined by RFC3339.
    time_last_assessed str
    The date and time the security assessment was last executed, in the format defined by RFC3339.
    time_updated str
    The date and time the security assessment was last updated, in the format defined by RFC3339.
    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 String
    A filter to return only resources that match the specified compartment OCID.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description String
    The description of the security assessment.
    displayName String
    A filter to return only resources that match the specified display name.
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
    id String
    The OCID of the security assessment.
    ignoredAssessmentIds List<String>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    ignoredTargets List<String>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    isBaseline Boolean
    A filter to return only the security assessments that are set as a baseline.
    isDeviatedFromBaseline Boolean
    Indicates whether or not the security assessment deviates from the baseline.
    lastComparedBaselineId String
    The OCID of the baseline against which the latest security assessment was compared.
    lifecycleDetails String
    Details about the current state of the security assessment.
    link String
    The summary of findings for the security assessment.
    schedule String
    Schedule of the assessment that runs periodically in the specified format: - ;
    scheduleSecurityAssessmentId String
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state String
    A filter to return only resources that match the specified lifecycle state.
    statistics 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 Map<Any>
    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 String
    A filter to return only items related to a specific target OCID.
    targetIds List<String>
    Array of database target OCIDs.
    targetVersion String
    The version of the target database.
    timeCreated String
    The date and time the security assessment was created, in the format defined by RFC3339.
    timeLastAssessed String
    The date and time the security assessment was last executed, in the format defined by RFC3339.
    timeUpdated String
    The date and time the security assessment was last updated, in the format defined by RFC3339.
    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.

    GetSecurityAssessmentsSecurityAssessmentStatistic

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

    GetSecurityAssessmentsSecurityAssessmentStatisticAdvisory

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

    GetSecurityAssessmentsSecurityAssessmentStatisticDeferred

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

    GetSecurityAssessmentsSecurityAssessmentStatisticEvaluate

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

    GetSecurityAssessmentsSecurityAssessmentStatisticHighRisk

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

    GetSecurityAssessmentsSecurityAssessmentStatisticLowRisk

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

    GetSecurityAssessmentsSecurityAssessmentStatisticMediumRisk

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

    GetSecurityAssessmentsSecurityAssessmentStatisticPass

    AuditingFindingsCount int
    The number of findings in the Auditing category.
    AuthorizationControlFindingsCount int
    The number of findings in the Authorization Control category.
    DataEncryptionFindingsCount int
    The number of findings in the Data Encryption category.
    DbConfigurationFindingsCount int
    The number of findings in the Database Configuration category.
    FineGrainedAccessControlFindingsCount int
    The number of findings in the Fine-Grained Access Control category.
    PrivilegesAndRolesFindingsCount int
    The number of findings in the Privileges and Roles category.
    TargetsCount int
    The total number of targets in this security assessment.
    UserAccountsFindingsCount int
    The number of findings in the User Accounts category.
    AuditingFindingsCount int
    The number of findings in the Auditing category.
    AuthorizationControlFindingsCount int
    The number of findings in the Authorization Control category.
    DataEncryptionFindingsCount int
    The number of findings in the Data Encryption category.
    DbConfigurationFindingsCount int
    The number of findings in the Database Configuration category.
    FineGrainedAccessControlFindingsCount int
    The number of findings in the Fine-Grained Access Control category.
    PrivilegesAndRolesFindingsCount int
    The number of findings in the Privileges and Roles category.
    TargetsCount int
    The total number of targets in this security assessment.
    UserAccountsFindingsCount int
    The number of findings in the User Accounts category.
    auditingFindingsCount Integer
    The number of findings in the Auditing category.
    authorizationControlFindingsCount Integer
    The number of findings in the Authorization Control category.
    dataEncryptionFindingsCount Integer
    The number of findings in the Data Encryption category.
    dbConfigurationFindingsCount Integer
    The number of findings in the Database Configuration category.
    fineGrainedAccessControlFindingsCount Integer
    The number of findings in the Fine-Grained Access Control category.
    privilegesAndRolesFindingsCount Integer
    The number of findings in the Privileges and Roles category.
    targetsCount Integer
    The total number of targets in this security assessment.
    userAccountsFindingsCount Integer
    The number of findings in the User Accounts category.
    auditingFindingsCount number
    The number of findings in the Auditing category.
    authorizationControlFindingsCount number
    The number of findings in the Authorization Control category.
    dataEncryptionFindingsCount number
    The number of findings in the Data Encryption category.
    dbConfigurationFindingsCount number
    The number of findings in the Database Configuration category.
    fineGrainedAccessControlFindingsCount number
    The number of findings in the Fine-Grained Access Control category.
    privilegesAndRolesFindingsCount number
    The number of findings in the Privileges and Roles category.
    targetsCount number
    The total number of targets in this security assessment.
    userAccountsFindingsCount number
    The number of findings in the User Accounts category.
    auditing_findings_count int
    The number of findings in the Auditing category.
    authorization_control_findings_count int
    The number of findings in the Authorization Control category.
    data_encryption_findings_count int
    The number of findings in the Data Encryption category.
    db_configuration_findings_count int
    The number of findings in the Database Configuration category.
    fine_grained_access_control_findings_count int
    The number of findings in the Fine-Grained Access Control category.
    privileges_and_roles_findings_count int
    The number of findings in the Privileges and Roles category.
    targets_count int
    The total number of targets in this security assessment.
    user_accounts_findings_count int
    The number of findings in the User Accounts category.
    auditingFindingsCount Number
    The number of findings in the Auditing category.
    authorizationControlFindingsCount Number
    The number of findings in the Authorization Control category.
    dataEncryptionFindingsCount Number
    The number of findings in the Data Encryption category.
    dbConfigurationFindingsCount Number
    The number of findings in the Database Configuration category.
    fineGrainedAccessControlFindingsCount Number
    The number of findings in the Fine-Grained Access Control category.
    privilegesAndRolesFindingsCount Number
    The number of findings in the Privileges and Roles category.
    targetsCount Number
    The total number of targets in this security assessment.
    userAccountsFindingsCount 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.
    oci logo
    Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi