1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. SecurityAssessment
Oracle Cloud Infrastructure v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi

oci.DataSafe.SecurityAssessment

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi

    This resource provides the Security Assessment resource in Oracle Cloud Infrastructure Data Safe service.

    Creates a new saved security assessment for one or multiple targets in a compartment. When this operation is performed, it will save the latest assessments in the specified compartment. If a schedule is passed, it will persist the latest assessments, at the defined date and time, in the format defined by RFC3339.

    Create SecurityAssessment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SecurityAssessment(name: string, args: SecurityAssessmentArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityAssessment(resource_name: str,
                           args: SecurityAssessmentArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecurityAssessment(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           compartment_id: Optional[str] = None,
                           display_name: Optional[str] = None,
                           is_assessment_scheduled: Optional[bool] = None,
                           base_security_assessment_id: Optional[str] = None,
                           defined_tags: Optional[Mapping[str, str]] = None,
                           description: Optional[str] = None,
                           apply_template_trigger: Optional[int] = None,
                           freeform_tags: Optional[Mapping[str, str]] = None,
                           compare_to_template_baseline_trigger: Optional[int] = None,
                           remove_template_trigger: Optional[int] = None,
                           schedule: Optional[str] = None,
                           target_id: Optional[str] = None,
                           target_type: Optional[str] = None,
                           template_assessment_id: Optional[str] = None,
                           type: Optional[str] = None)
    func NewSecurityAssessment(ctx *Context, name string, args SecurityAssessmentArgs, opts ...ResourceOption) (*SecurityAssessment, error)
    public SecurityAssessment(string name, SecurityAssessmentArgs args, CustomResourceOptions? opts = null)
    public SecurityAssessment(String name, SecurityAssessmentArgs args)
    public SecurityAssessment(String name, SecurityAssessmentArgs args, CustomResourceOptions options)
    
    type: oci:DataSafe:SecurityAssessment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SecurityAssessmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SecurityAssessmentArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SecurityAssessmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityAssessmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityAssessmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var securityAssessmentResource = new Oci.DataSafe.SecurityAssessment("securityAssessmentResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        IsAssessmentScheduled = false,
        BaseSecurityAssessmentId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        Description = "string",
        ApplyTemplateTrigger = 0,
        FreeformTags = 
        {
            { "string", "string" },
        },
        CompareToTemplateBaselineTrigger = 0,
        RemoveTemplateTrigger = 0,
        Schedule = "string",
        TargetId = "string",
        TargetType = "string",
        TemplateAssessmentId = "string",
        Type = "string",
    });
    
    example, err := datasafe.NewSecurityAssessment(ctx, "securityAssessmentResource", &datasafe.SecurityAssessmentArgs{
    	CompartmentId:            pulumi.String("string"),
    	DisplayName:              pulumi.String("string"),
    	IsAssessmentScheduled:    pulumi.Bool(false),
    	BaseSecurityAssessmentId: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description:          pulumi.String("string"),
    	ApplyTemplateTrigger: pulumi.Int(0),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	CompareToTemplateBaselineTrigger: pulumi.Int(0),
    	RemoveTemplateTrigger:            pulumi.Int(0),
    	Schedule:                         pulumi.String("string"),
    	TargetId:                         pulumi.String("string"),
    	TargetType:                       pulumi.String("string"),
    	TemplateAssessmentId:             pulumi.String("string"),
    	Type:                             pulumi.String("string"),
    })
    
    var securityAssessmentResource = new SecurityAssessment("securityAssessmentResource", SecurityAssessmentArgs.builder()
        .compartmentId("string")
        .displayName("string")
        .isAssessmentScheduled(false)
        .baseSecurityAssessmentId("string")
        .definedTags(Map.of("string", "string"))
        .description("string")
        .applyTemplateTrigger(0)
        .freeformTags(Map.of("string", "string"))
        .compareToTemplateBaselineTrigger(0)
        .removeTemplateTrigger(0)
        .schedule("string")
        .targetId("string")
        .targetType("string")
        .templateAssessmentId("string")
        .type("string")
        .build());
    
    security_assessment_resource = oci.datasafe.SecurityAssessment("securityAssessmentResource",
        compartment_id="string",
        display_name="string",
        is_assessment_scheduled=False,
        base_security_assessment_id="string",
        defined_tags={
            "string": "string",
        },
        description="string",
        apply_template_trigger=0,
        freeform_tags={
            "string": "string",
        },
        compare_to_template_baseline_trigger=0,
        remove_template_trigger=0,
        schedule="string",
        target_id="string",
        target_type="string",
        template_assessment_id="string",
        type="string")
    
    const securityAssessmentResource = new oci.datasafe.SecurityAssessment("securityAssessmentResource", {
        compartmentId: "string",
        displayName: "string",
        isAssessmentScheduled: false,
        baseSecurityAssessmentId: "string",
        definedTags: {
            string: "string",
        },
        description: "string",
        applyTemplateTrigger: 0,
        freeformTags: {
            string: "string",
        },
        compareToTemplateBaselineTrigger: 0,
        removeTemplateTrigger: 0,
        schedule: "string",
        targetId: "string",
        targetType: "string",
        templateAssessmentId: "string",
        type: "string",
    });
    
    type: oci:DataSafe:SecurityAssessment
    properties:
        applyTemplateTrigger: 0
        baseSecurityAssessmentId: string
        compareToTemplateBaselineTrigger: 0
        compartmentId: string
        definedTags:
            string: string
        description: string
        displayName: string
        freeformTags:
            string: string
        isAssessmentScheduled: false
        removeTemplateTrigger: 0
        schedule: string
        targetId: string
        targetType: string
        templateAssessmentId: string
        type: string
    

    SecurityAssessment Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SecurityAssessment resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment that contains the security assessment.
    ApplyTemplateTrigger int
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    BaseSecurityAssessmentId string
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    CompareToTemplateBaselineTrigger int
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) Description of the security assessment.
    DisplayName string
    (Updatable) The display name of the security assessment.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    IsAssessmentScheduled bool
    (Updatable) Indicates whether the assessment is scheduled to run.
    RemoveTemplateTrigger int

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Schedule string

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    TargetId string
    The OCID of the target database or target database group on which security assessment is to be run.
    TargetType string
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    TemplateAssessmentId string
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    Type string
    The type of the security assessment
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the security assessment.
    ApplyTemplateTrigger int
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    BaseSecurityAssessmentId string
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    CompareToTemplateBaselineTrigger int
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) Description of the security assessment.
    DisplayName string
    (Updatable) The display name of the security assessment.
    FreeformTags map[string]string
    (Updatable) 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"}
    IsAssessmentScheduled bool
    (Updatable) Indicates whether the assessment is scheduled to run.
    RemoveTemplateTrigger int

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Schedule string

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    TargetId string
    The OCID of the target database or target database group on which security assessment is to be run.
    TargetType string
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    TemplateAssessmentId string
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    Type string
    The type of the security assessment
    compartmentId String
    (Updatable) The OCID of the compartment that contains the security assessment.
    applyTemplateTrigger Integer
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    baseSecurityAssessmentId String
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    compareToTemplateBaselineTrigger Integer
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) Description of the security assessment.
    displayName String
    (Updatable) The display name of the security assessment.
    freeformTags Map<String,String>
    (Updatable) 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"}
    isAssessmentScheduled Boolean
    (Updatable) Indicates whether the assessment is scheduled to run.
    removeTemplateTrigger Integer

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    schedule String

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    targetId String
    The OCID of the target database or target database group on which security assessment is to be run.
    targetType String
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    templateAssessmentId String
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    type String
    The type of the security assessment
    compartmentId string
    (Updatable) The OCID of the compartment that contains the security assessment.
    applyTemplateTrigger number
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    baseSecurityAssessmentId string
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    compareToTemplateBaselineTrigger number
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) Description of the security assessment.
    displayName string
    (Updatable) The display name of the security assessment.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    isAssessmentScheduled boolean
    (Updatable) Indicates whether the assessment is scheduled to run.
    removeTemplateTrigger number

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    schedule string

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    targetId string
    The OCID of the target database or target database group on which security assessment is to be run.
    targetType string
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    templateAssessmentId string
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    type string
    The type of the security assessment
    compartment_id str
    (Updatable) The OCID of the compartment that contains the security assessment.
    apply_template_trigger int
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    base_security_assessment_id str
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    compare_to_template_baseline_trigger int
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) Description of the security assessment.
    display_name str
    (Updatable) The display name of the security assessment.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    is_assessment_scheduled bool
    (Updatable) Indicates whether the assessment is scheduled to run.
    remove_template_trigger int

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    schedule str

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    target_id str
    The OCID of the target database or target database group on which security assessment is to be run.
    target_type str
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    template_assessment_id str
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    type str
    The type of the security assessment
    compartmentId String
    (Updatable) The OCID of the compartment that contains the security assessment.
    applyTemplateTrigger Number
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    baseSecurityAssessmentId String
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    compareToTemplateBaselineTrigger Number
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    definedTags Map<String>
    (Updatable) 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
    (Updatable) Description of the security assessment.
    displayName String
    (Updatable) The display name of the security assessment.
    freeformTags Map<String>
    (Updatable) 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"}
    isAssessmentScheduled Boolean
    (Updatable) Indicates whether the assessment is scheduled to run.
    removeTemplateTrigger Number

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    schedule String

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    targetId String
    The OCID of the target database or target database group on which security assessment is to be run.
    targetType String
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    templateAssessmentId String
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    type String
    The type of the security assessment

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SecurityAssessment resource produces the following output properties:

    BaselineAssessmentId string
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    Checks List<SecurityAssessmentCheck>
    The security checks to be evaluated for type template.
    Id string
    The provider-assigned unique ID for this managed resource.
    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
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    ScheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    State string
    The current state of the security assessment.
    Statistics List<SecurityAssessmentStatistic>
    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, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for.
    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
    Indicates whether the security assessment was created by system or by a user.
    BaselineAssessmentId string
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    Checks []SecurityAssessmentCheckType
    The security checks to be evaluated for type template.
    Id string
    The provider-assigned unique ID for this managed resource.
    IgnoredAssessmentIds []string
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IgnoredTargets []string
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IsBaseline bool
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    ScheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    State string
    The current state of the security assessment.
    Statistics []SecurityAssessmentStatistic
    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]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for.
    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
    Indicates whether the security assessment was created by system or by a user.
    baselineAssessmentId String
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    checks List<SecurityAssessmentCheck>
    The security checks to be evaluated for type template.
    id String
    The provider-assigned unique ID for this managed resource.
    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
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    scheduleSecurityAssessmentId String
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state String
    The current state of the security assessment.
    statistics List<SecurityAssessmentStatistic>
    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,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDatabaseGroupId String
    The OCID of the target database group that the group assessment is created for.
    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
    Indicates whether the security assessment was created by system or by a user.
    baselineAssessmentId string
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    checks SecurityAssessmentCheck[]
    The security checks to be evaluated for type template.
    id string
    The provider-assigned unique ID for this managed resource.
    ignoredAssessmentIds string[]
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    ignoredTargets string[]
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    isBaseline boolean
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    scheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state string
    The current state of the security assessment.
    statistics SecurityAssessmentStatistic[]
    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]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for.
    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
    Indicates whether the security assessment was created by system or by a user.
    baseline_assessment_id str
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    checks Sequence[SecurityAssessmentCheck]
    The security checks to be evaluated for type template.
    id str
    The provider-assigned unique ID for this managed resource.
    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
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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_security_assessment_id str
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state str
    The current state of the security assessment.
    statistics Sequence[SecurityAssessmentStatistic]
    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, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_database_group_id str
    The OCID of the target database group that the group assessment is created for.
    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
    Indicates whether the security assessment was created by system or by a user.
    baselineAssessmentId String
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    checks List<Property Map>
    The security checks to be evaluated for type template.
    id String
    The provider-assigned unique ID for this managed resource.
    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
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    scheduleSecurityAssessmentId String
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state String
    The current state of the security assessment.
    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<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDatabaseGroupId String
    The OCID of the target database group that the group assessment is created for.
    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
    Indicates whether the security assessment was created by system or by a user.

    Look up Existing SecurityAssessment Resource

    Get an existing SecurityAssessment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SecurityAssessmentState, opts?: CustomResourceOptions): SecurityAssessment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            apply_template_trigger: Optional[int] = None,
            base_security_assessment_id: Optional[str] = None,
            baseline_assessment_id: Optional[str] = None,
            checks: Optional[Sequence[SecurityAssessmentCheckArgs]] = None,
            compare_to_template_baseline_trigger: Optional[int] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            ignored_assessment_ids: Optional[Sequence[str]] = None,
            ignored_targets: Optional[Sequence[str]] = None,
            is_assessment_scheduled: Optional[bool] = None,
            is_baseline: Optional[bool] = None,
            is_deviated_from_baseline: Optional[bool] = None,
            last_compared_baseline_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            link: Optional[str] = None,
            remove_template_trigger: Optional[int] = None,
            schedule: Optional[str] = None,
            schedule_security_assessment_id: Optional[str] = None,
            state: Optional[str] = None,
            statistics: Optional[Sequence[SecurityAssessmentStatisticArgs]] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            target_database_group_id: Optional[str] = None,
            target_id: Optional[str] = None,
            target_ids: Optional[Sequence[str]] = None,
            target_type: Optional[str] = None,
            target_version: Optional[str] = None,
            template_assessment_id: Optional[str] = None,
            time_created: Optional[str] = None,
            time_last_assessed: Optional[str] = None,
            time_updated: Optional[str] = None,
            triggered_by: Optional[str] = None,
            type: Optional[str] = None) -> SecurityAssessment
    func GetSecurityAssessment(ctx *Context, name string, id IDInput, state *SecurityAssessmentState, opts ...ResourceOption) (*SecurityAssessment, error)
    public static SecurityAssessment Get(string name, Input<string> id, SecurityAssessmentState? state, CustomResourceOptions? opts = null)
    public static SecurityAssessment get(String name, Output<String> id, SecurityAssessmentState state, CustomResourceOptions options)
    resources:  _:    type: oci:DataSafe:SecurityAssessment    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApplyTemplateTrigger int
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    BaseSecurityAssessmentId string
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    BaselineAssessmentId string
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    Checks List<SecurityAssessmentCheck>
    The security checks to be evaluated for type template.
    CompareToTemplateBaselineTrigger int
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the security assessment.
    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) Description of the security assessment.
    DisplayName string
    (Updatable) The display name of the security assessment.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    IgnoredAssessmentIds List<string>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IgnoredTargets List<string>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IsAssessmentScheduled bool
    (Updatable) Indicates whether the assessment is scheduled to run.
    IsBaseline bool
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    RemoveTemplateTrigger int

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Schedule string

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    ScheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    State string
    The current state of the security assessment.
    Statistics List<SecurityAssessmentStatistic>
    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, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for.
    TargetId string
    The OCID of the target database or target database group on which security assessment is to be run.
    TargetIds List<string>
    Array of database target OCIDs.
    TargetType string
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    TargetVersion string
    The version of the target database.
    TemplateAssessmentId string
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    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
    Indicates whether the security assessment was created by system or by a user.
    Type string
    The type of the security assessment
    ApplyTemplateTrigger int
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    BaseSecurityAssessmentId string
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    BaselineAssessmentId string
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    Checks []SecurityAssessmentCheckTypeArgs
    The security checks to be evaluated for type template.
    CompareToTemplateBaselineTrigger int
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the security assessment.
    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) Description of the security assessment.
    DisplayName string
    (Updatable) The display name of the security assessment.
    FreeformTags map[string]string
    (Updatable) 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"}
    IgnoredAssessmentIds []string
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IgnoredTargets []string
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    IsAssessmentScheduled bool
    (Updatable) Indicates whether the assessment is scheduled to run.
    IsBaseline bool
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    RemoveTemplateTrigger int

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Schedule string

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    ScheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    State string
    The current state of the security assessment.
    Statistics []SecurityAssessmentStatisticArgs
    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]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for.
    TargetId string
    The OCID of the target database or target database group on which security assessment is to be run.
    TargetIds []string
    Array of database target OCIDs.
    TargetType string
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    TargetVersion string
    The version of the target database.
    TemplateAssessmentId string
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    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
    Indicates whether the security assessment was created by system or by a user.
    Type string
    The type of the security assessment
    applyTemplateTrigger Integer
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    baseSecurityAssessmentId String
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    baselineAssessmentId String
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    checks List<SecurityAssessmentCheck>
    The security checks to be evaluated for type template.
    compareToTemplateBaselineTrigger Integer
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    compartmentId String
    (Updatable) The OCID of the compartment that contains the security assessment.
    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) Description of the security assessment.
    displayName String
    (Updatable) The display name of the security assessment.
    freeformTags Map<String,String>
    (Updatable) 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"}
    ignoredAssessmentIds List<String>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    ignoredTargets List<String>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    isAssessmentScheduled Boolean
    (Updatable) Indicates whether the assessment is scheduled to run.
    isBaseline Boolean
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    removeTemplateTrigger Integer

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    schedule String

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    scheduleSecurityAssessmentId String
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state String
    The current state of the security assessment.
    statistics List<SecurityAssessmentStatistic>
    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,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDatabaseGroupId String
    The OCID of the target database group that the group assessment is created for.
    targetId String
    The OCID of the target database or target database group on which security assessment is to be run.
    targetIds List<String>
    Array of database target OCIDs.
    targetType String
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    targetVersion String
    The version of the target database.
    templateAssessmentId String
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    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
    Indicates whether the security assessment was created by system or by a user.
    type String
    The type of the security assessment
    applyTemplateTrigger number
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    baseSecurityAssessmentId string
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    baselineAssessmentId string
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    checks SecurityAssessmentCheck[]
    The security checks to be evaluated for type template.
    compareToTemplateBaselineTrigger number
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    compartmentId string
    (Updatable) The OCID of the compartment that contains the security assessment.
    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) Description of the security assessment.
    displayName string
    (Updatable) The display name of the security assessment.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    ignoredAssessmentIds string[]
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    ignoredTargets string[]
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    isAssessmentScheduled boolean
    (Updatable) Indicates whether the assessment is scheduled to run.
    isBaseline boolean
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    removeTemplateTrigger number

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    schedule string

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    scheduleSecurityAssessmentId string
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state string
    The current state of the security assessment.
    statistics SecurityAssessmentStatistic[]
    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]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for.
    targetId string
    The OCID of the target database or target database group on which security assessment is to be run.
    targetIds string[]
    Array of database target OCIDs.
    targetType string
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    targetVersion string
    The version of the target database.
    templateAssessmentId string
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    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
    Indicates whether the security assessment was created by system or by a user.
    type string
    The type of the security assessment
    apply_template_trigger int
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    base_security_assessment_id str
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    baseline_assessment_id str
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    checks Sequence[SecurityAssessmentCheckArgs]
    The security checks to be evaluated for type template.
    compare_to_template_baseline_trigger int
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    compartment_id str
    (Updatable) The OCID of the compartment that contains the security assessment.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) Description of the security assessment.
    display_name str
    (Updatable) The display name of the security assessment.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    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_assessment_scheduled bool
    (Updatable) Indicates whether the assessment is scheduled to run.
    is_baseline bool
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    remove_template_trigger int

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    schedule str

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    schedule_security_assessment_id str
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state str
    The current state of the security assessment.
    statistics Sequence[SecurityAssessmentStatisticArgs]
    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, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_database_group_id str
    The OCID of the target database group that the group assessment is created for.
    target_id str
    The OCID of the target database or target database group on which security assessment is to be run.
    target_ids Sequence[str]
    Array of database target OCIDs.
    target_type str
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    target_version str
    The version of the target database.
    template_assessment_id str
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    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
    Indicates whether the security assessment was created by system or by a user.
    type str
    The type of the security assessment
    applyTemplateTrigger Number
    (Updatable) An optional property when incremented triggers Apply Template. Could be set to any integer value.
    baseSecurityAssessmentId String
    The OCID of the security assessment. The assessment should be of type SAVED. It will be required while creating the template baseline assessment for individual targets to fetch the detailed information from an existing security assessment.
    baselineAssessmentId String
    The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
    checks List<Property Map>
    The security checks to be evaluated for type template.
    compareToTemplateBaselineTrigger Number
    (Updatable) An optional property when incremented triggers Compare To Template Baseline. Could be set to any integer value.
    compartmentId String
    (Updatable) The OCID of the compartment that contains the security assessment.
    definedTags Map<String>
    (Updatable) 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
    (Updatable) Description of the security assessment.
    displayName String
    (Updatable) The display name of the security assessment.
    freeformTags Map<String>
    (Updatable) 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"}
    ignoredAssessmentIds List<String>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    ignoredTargets List<String>
    List containing maps as values. Example: {"Operations": [ {"CostCenter": "42"} ] }
    isAssessmentScheduled Boolean
    (Updatable) Indicates whether the assessment is scheduled to run.
    isBaseline Boolean
    Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
    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.
    removeTemplateTrigger Number

    (Updatable) An optional property when incremented triggers Remove Template. Could be set to any integer value.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    schedule String

    (Updatable) To schedule the assessment for running periodically, specify the schedule in this attribute. Create or schedule one assessment per compartment. If not defined, the assessment runs immediately. Format - ;

    Allowed version strings - "v1" v1's version specific schedule - Each of the above fields potentially introduce constraints. A workrequest is created only when clock time satisfies all the constraints. Constraints introduced: 1. seconds = (So, the allowed range for is [0, 59]) 2. minutes = (So, the allowed range for is [0, 59]) 3. hours = (So, the allowed range for is [0, 23]) can be either '' (without quotes or a number between 1(Monday) and 7(Sunday)) 4. No constraint introduced when it is ''. When not, day of week must equal the given value can be either '' (without quotes or a number between 1 and 28) 5. No constraint introduced when it is ''. When not, day of month must equal the given value

    scheduleSecurityAssessmentId String
    The OCID of the security assessment that is responsible for creating this scheduled save assessment.
    state String
    The current state of the security assessment.
    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<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDatabaseGroupId String
    The OCID of the target database group that the group assessment is created for.
    targetId String
    The OCID of the target database or target database group on which security assessment is to be run.
    targetIds List<String>
    Array of database target OCIDs.
    targetType String
    The type of security assessment resource whether it is individual or group resource. For individual target use type TARGET_DATABASE and for group resource use type TARGET_DATABASE_GROUP. If not provided, TARGET_DATABASE would be used as default value.
    targetVersion String
    The version of the target database.
    templateAssessmentId String
    The OCID of the template assessment. It will be required while creating the template baseline assessment.
    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
    Indicates whether the security assessment was created by system or by a user.
    type String
    The type of the security assessment

    Supporting Types

    SecurityAssessmentCheck, SecurityAssessmentCheckArgs

    Category string
    The category to which the check belongs to.
    Key string
    A unique identifier for the check.
    Oneline string
    Provides a recommended approach to take to remediate the check reported.
    References List<SecurityAssessmentCheckReference>
    Provides information on whether the check is related to a CIS Oracle Database Benchmark recommendation, STIG rule, GDPR Article/Recital or related to the Oracle Best Practice.
    Remarks string
    The explanation of the issue in this check. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    SuggestedSeverity string
    The severity of the check as suggested by Data Safe security assessment. This will be the default severity in the template baseline security assessment.
    Title string
    The short title for the check.
    Category string
    The category to which the check belongs to.
    Key string
    A unique identifier for the check.
    Oneline string
    Provides a recommended approach to take to remediate the check reported.
    References []SecurityAssessmentCheckReference
    Provides information on whether the check is related to a CIS Oracle Database Benchmark recommendation, STIG rule, GDPR Article/Recital or related to the Oracle Best Practice.
    Remarks string
    The explanation of the issue in this check. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    SuggestedSeverity string
    The severity of the check as suggested by Data Safe security assessment. This will be the default severity in the template baseline security assessment.
    Title string
    The short title for the check.
    category String
    The category to which the check belongs to.
    key String
    A unique identifier for the check.
    oneline String
    Provides a recommended approach to take to remediate the check reported.
    references List<SecurityAssessmentCheckReference>
    Provides information on whether the check is related to a CIS Oracle Database Benchmark recommendation, STIG rule, GDPR Article/Recital or related to the Oracle Best Practice.
    remarks String
    The explanation of the issue in this check. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    suggestedSeverity String
    The severity of the check as suggested by Data Safe security assessment. This will be the default severity in the template baseline security assessment.
    title String
    The short title for the check.
    category string
    The category to which the check belongs to.
    key string
    A unique identifier for the check.
    oneline string
    Provides a recommended approach to take to remediate the check reported.
    references SecurityAssessmentCheckReference[]
    Provides information on whether the check is related to a CIS Oracle Database Benchmark recommendation, STIG rule, GDPR Article/Recital or related to the Oracle Best Practice.
    remarks string
    The explanation of the issue in this check. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    suggestedSeverity string
    The severity of the check as suggested by Data Safe security assessment. This will be the default severity in the template baseline security assessment.
    title string
    The short title for the check.
    category str
    The category to which the check belongs to.
    key str
    A unique identifier for the check.
    oneline str
    Provides a recommended approach to take to remediate the check reported.
    references Sequence[SecurityAssessmentCheckReference]
    Provides information on whether the check is related to a CIS Oracle Database Benchmark recommendation, STIG rule, GDPR Article/Recital or related to the Oracle Best Practice.
    remarks str
    The explanation of the issue in this check. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    suggested_severity str
    The severity of the check as suggested by Data Safe security assessment. This will be the default severity in the template baseline security assessment.
    title str
    The short title for the check.
    category String
    The category to which the check belongs to.
    key String
    A unique identifier for the check.
    oneline String
    Provides a recommended approach to take to remediate the check reported.
    references List<Property Map>
    Provides information on whether the check is related to a CIS Oracle Database Benchmark recommendation, STIG rule, GDPR Article/Recital or related to the Oracle Best Practice.
    remarks String
    The explanation of the issue in this check. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    suggestedSeverity String
    The severity of the check as suggested by Data Safe security assessment. This will be the default severity in the template baseline security assessment.
    title String
    The short title for the check.

    SecurityAssessmentCheckReference, SecurityAssessmentCheckReferenceArgs

    Cis string
    Relevant section from CIS.
    Gdpr string
    Relevant section from GDPR.
    Obp string
    Relevant section from OBP.
    Stig string
    Relevant section from STIG.
    Cis string
    Relevant section from CIS.
    Gdpr string
    Relevant section from GDPR.
    Obp string
    Relevant section from OBP.
    Stig string
    Relevant section from STIG.
    cis String
    Relevant section from CIS.
    gdpr String
    Relevant section from GDPR.
    obp String
    Relevant section from OBP.
    stig String
    Relevant section from STIG.
    cis string
    Relevant section from CIS.
    gdpr string
    Relevant section from GDPR.
    obp string
    Relevant section from OBP.
    stig string
    Relevant section from STIG.
    cis str
    Relevant section from CIS.
    gdpr str
    Relevant section from GDPR.
    obp str
    Relevant section from OBP.
    stig str
    Relevant section from STIG.
    cis String
    Relevant section from CIS.
    gdpr String
    Relevant section from GDPR.
    obp String
    Relevant section from OBP.
    stig String
    Relevant section from STIG.

    SecurityAssessmentStatistic, SecurityAssessmentStatisticArgs

    Advisories List<SecurityAssessmentStatisticAdvisory>
    Statistics showing the number of findings with a particular risk level for each category.
    Deferreds List<SecurityAssessmentStatisticDeferred>
    Statistics showing the number of findings with a particular risk level for each category.
    Evaluates List<SecurityAssessmentStatisticEvaluate>
    Statistics showing the number of findings with a particular risk level for each category.
    HighRisks List<SecurityAssessmentStatisticHighRisk>
    Statistics showing the number of findings with a particular risk level for each category.
    LowRisks List<SecurityAssessmentStatisticLowRisk>
    Statistics showing the number of findings with a particular risk level for each category.
    MediumRisks List<SecurityAssessmentStatisticMediumRisk>
    Statistics showing the number of findings with a particular risk level for each category.
    Passes List<SecurityAssessmentStatisticPass>
    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 []SecurityAssessmentStatisticAdvisory
    Statistics showing the number of findings with a particular risk level for each category.
    Deferreds []SecurityAssessmentStatisticDeferred
    Statistics showing the number of findings with a particular risk level for each category.
    Evaluates []SecurityAssessmentStatisticEvaluate
    Statistics showing the number of findings with a particular risk level for each category.
    HighRisks []SecurityAssessmentStatisticHighRisk
    Statistics showing the number of findings with a particular risk level for each category.
    LowRisks []SecurityAssessmentStatisticLowRisk
    Statistics showing the number of findings with a particular risk level for each category.
    MediumRisks []SecurityAssessmentStatisticMediumRisk
    Statistics showing the number of findings with a particular risk level for each category.
    Passes []SecurityAssessmentStatisticPass
    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<SecurityAssessmentStatisticAdvisory>
    Statistics showing the number of findings with a particular risk level for each category.
    deferreds List<SecurityAssessmentStatisticDeferred>
    Statistics showing the number of findings with a particular risk level for each category.
    evaluates List<SecurityAssessmentStatisticEvaluate>
    Statistics showing the number of findings with a particular risk level for each category.
    highRisks List<SecurityAssessmentStatisticHighRisk>
    Statistics showing the number of findings with a particular risk level for each category.
    lowRisks List<SecurityAssessmentStatisticLowRisk>
    Statistics showing the number of findings with a particular risk level for each category.
    mediumRisks List<SecurityAssessmentStatisticMediumRisk>
    Statistics showing the number of findings with a particular risk level for each category.
    passes List<SecurityAssessmentStatisticPass>
    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 SecurityAssessmentStatisticAdvisory[]
    Statistics showing the number of findings with a particular risk level for each category.
    deferreds SecurityAssessmentStatisticDeferred[]
    Statistics showing the number of findings with a particular risk level for each category.
    evaluates SecurityAssessmentStatisticEvaluate[]
    Statistics showing the number of findings with a particular risk level for each category.
    highRisks SecurityAssessmentStatisticHighRisk[]
    Statistics showing the number of findings with a particular risk level for each category.
    lowRisks SecurityAssessmentStatisticLowRisk[]
    Statistics showing the number of findings with a particular risk level for each category.
    mediumRisks SecurityAssessmentStatisticMediumRisk[]
    Statistics showing the number of findings with a particular risk level for each category.
    passes SecurityAssessmentStatisticPass[]
    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 Sequence[SecurityAssessmentStatisticAdvisory]
    Statistics showing the number of findings with a particular risk level for each category.
    deferreds Sequence[SecurityAssessmentStatisticDeferred]
    Statistics showing the number of findings with a particular risk level for each category.
    evaluates Sequence[SecurityAssessmentStatisticEvaluate]
    Statistics showing the number of findings with a particular risk level for each category.
    high_risks Sequence[SecurityAssessmentStatisticHighRisk]
    Statistics showing the number of findings with a particular risk level for each category.
    low_risks Sequence[SecurityAssessmentStatisticLowRisk]
    Statistics showing the number of findings with a particular risk level for each category.
    medium_risks Sequence[SecurityAssessmentStatisticMediumRisk]
    Statistics showing the number of findings with a particular risk level for each category.
    passes Sequence[SecurityAssessmentStatisticPass]
    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.

    SecurityAssessmentStatisticAdvisory, SecurityAssessmentStatisticAdvisoryArgs

    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.

    SecurityAssessmentStatisticDeferred, SecurityAssessmentStatisticDeferredArgs

    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.

    SecurityAssessmentStatisticEvaluate, SecurityAssessmentStatisticEvaluateArgs

    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.

    SecurityAssessmentStatisticHighRisk, SecurityAssessmentStatisticHighRiskArgs

    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.

    SecurityAssessmentStatisticLowRisk, SecurityAssessmentStatisticLowRiskArgs

    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.

    SecurityAssessmentStatisticMediumRisk, SecurityAssessmentStatisticMediumRiskArgs

    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.

    SecurityAssessmentStatisticPass, SecurityAssessmentStatisticPassArgs

    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.

    Import

    SecurityAssessments can be imported using the id, e.g.

    $ pulumi import oci:DataSafe/securityAssessment:SecurityAssessment test_security_assessment "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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 v3.8.0 published on Thursday, Sep 18, 2025 by Pulumi