oci.DataSafe.getSecurityAssessments
Explore with Pulumi AI
This data source provides the list of Security Assessments in Oracle Cloud Infrastructure Data Safe service.
Gets a list of security assessments.
The ListSecurityAssessments operation returns only the assessments in the specified compartmentId
.
The list does not include any subcompartments of the compartmentId passed.
The parameter accessLevel
specifies whether to return only those compartments for which the
requestor has INSPECT permissions on at least one resource directly
or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if
Principal doesn’t have access to even one of the child compartments. This is valid only when
compartmentIdInSubtree
is set to true
.
The parameter compartmentIdInSubtree
applies when you perform ListSecurityAssessments on the
compartmentId
passed and when it is set to true, the entire hierarchy of compartments can be returned.
To get a full list of all compartments and subcompartments in the tenancy (root compartment),
set the parameter compartmentIdInSubtree
to true and accessLevel
to ACCESSIBLE.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSecurityAssessments = oci.DataSafe.getSecurityAssessments({
compartmentId: compartmentId,
accessLevel: securityAssessmentAccessLevel,
compartmentIdInSubtree: securityAssessmentCompartmentIdInSubtree,
displayName: securityAssessmentDisplayName,
isBaseline: securityAssessmentIsBaseline,
isScheduleAssessment: securityAssessmentIsScheduleAssessment,
scheduleAssessmentId: testScheduleAssessment.id,
state: securityAssessmentState,
targetDatabaseGroupId: testTargetDatabaseGroup.id,
targetId: testTarget.id,
targetType: securityAssessmentTargetType,
templateAssessmentId: testTemplateAssessment.id,
timeCreatedGreaterThanOrEqualTo: securityAssessmentTimeCreatedGreaterThanOrEqualTo,
timeCreatedLessThan: securityAssessmentTimeCreatedLessThan,
triggeredBy: securityAssessmentTriggeredBy,
type: securityAssessmentType,
});
import pulumi
import pulumi_oci as oci
test_security_assessments = oci.DataSafe.get_security_assessments(compartment_id=compartment_id,
access_level=security_assessment_access_level,
compartment_id_in_subtree=security_assessment_compartment_id_in_subtree,
display_name=security_assessment_display_name,
is_baseline=security_assessment_is_baseline,
is_schedule_assessment=security_assessment_is_schedule_assessment,
schedule_assessment_id=test_schedule_assessment["id"],
state=security_assessment_state,
target_database_group_id=test_target_database_group["id"],
target_id=test_target["id"],
target_type=security_assessment_target_type,
template_assessment_id=test_template_assessment["id"],
time_created_greater_than_or_equal_to=security_assessment_time_created_greater_than_or_equal_to,
time_created_less_than=security_assessment_time_created_less_than,
triggered_by=security_assessment_triggered_by,
type=security_assessment_type)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/datasafe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datasafe.GetSecurityAssessments(ctx, &datasafe.GetSecurityAssessmentsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(securityAssessmentAccessLevel),
CompartmentIdInSubtree: pulumi.BoolRef(securityAssessmentCompartmentIdInSubtree),
DisplayName: pulumi.StringRef(securityAssessmentDisplayName),
IsBaseline: pulumi.BoolRef(securityAssessmentIsBaseline),
IsScheduleAssessment: pulumi.BoolRef(securityAssessmentIsScheduleAssessment),
ScheduleAssessmentId: pulumi.StringRef(testScheduleAssessment.Id),
State: pulumi.StringRef(securityAssessmentState),
TargetDatabaseGroupId: pulumi.StringRef(testTargetDatabaseGroup.Id),
TargetId: pulumi.StringRef(testTarget.Id),
TargetType: pulumi.StringRef(securityAssessmentTargetType),
TemplateAssessmentId: pulumi.StringRef(testTemplateAssessment.Id),
TimeCreatedGreaterThanOrEqualTo: pulumi.StringRef(securityAssessmentTimeCreatedGreaterThanOrEqualTo),
TimeCreatedLessThan: pulumi.StringRef(securityAssessmentTimeCreatedLessThan),
TriggeredBy: pulumi.StringRef(securityAssessmentTriggeredBy),
Type: pulumi.StringRef(securityAssessmentType),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testSecurityAssessments = Oci.DataSafe.GetSecurityAssessments.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = securityAssessmentAccessLevel,
CompartmentIdInSubtree = securityAssessmentCompartmentIdInSubtree,
DisplayName = securityAssessmentDisplayName,
IsBaseline = securityAssessmentIsBaseline,
IsScheduleAssessment = securityAssessmentIsScheduleAssessment,
ScheduleAssessmentId = testScheduleAssessment.Id,
State = securityAssessmentState,
TargetDatabaseGroupId = testTargetDatabaseGroup.Id,
TargetId = testTarget.Id,
TargetType = securityAssessmentTargetType,
TemplateAssessmentId = testTemplateAssessment.Id,
TimeCreatedGreaterThanOrEqualTo = securityAssessmentTimeCreatedGreaterThanOrEqualTo,
TimeCreatedLessThan = securityAssessmentTimeCreatedLessThan,
TriggeredBy = securityAssessmentTriggeredBy,
Type = securityAssessmentType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetSecurityAssessmentsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testSecurityAssessments = DataSafeFunctions.getSecurityAssessments(GetSecurityAssessmentsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(securityAssessmentAccessLevel)
.compartmentIdInSubtree(securityAssessmentCompartmentIdInSubtree)
.displayName(securityAssessmentDisplayName)
.isBaseline(securityAssessmentIsBaseline)
.isScheduleAssessment(securityAssessmentIsScheduleAssessment)
.scheduleAssessmentId(testScheduleAssessment.id())
.state(securityAssessmentState)
.targetDatabaseGroupId(testTargetDatabaseGroup.id())
.targetId(testTarget.id())
.targetType(securityAssessmentTargetType)
.templateAssessmentId(testTemplateAssessment.id())
.timeCreatedGreaterThanOrEqualTo(securityAssessmentTimeCreatedGreaterThanOrEqualTo)
.timeCreatedLessThan(securityAssessmentTimeCreatedLessThan)
.triggeredBy(securityAssessmentTriggeredBy)
.type(securityAssessmentType)
.build());
}
}
variables:
testSecurityAssessments:
fn::invoke:
function: oci:DataSafe:getSecurityAssessments
arguments:
compartmentId: ${compartmentId}
accessLevel: ${securityAssessmentAccessLevel}
compartmentIdInSubtree: ${securityAssessmentCompartmentIdInSubtree}
displayName: ${securityAssessmentDisplayName}
isBaseline: ${securityAssessmentIsBaseline}
isScheduleAssessment: ${securityAssessmentIsScheduleAssessment}
scheduleAssessmentId: ${testScheduleAssessment.id}
state: ${securityAssessmentState}
targetDatabaseGroupId: ${testTargetDatabaseGroup.id}
targetId: ${testTarget.id}
targetType: ${securityAssessmentTargetType}
templateAssessmentId: ${testTemplateAssessment.id}
timeCreatedGreaterThanOrEqualTo: ${securityAssessmentTimeCreatedGreaterThanOrEqualTo}
timeCreatedLessThan: ${securityAssessmentTimeCreatedLessThan}
triggeredBy: ${securityAssessmentTriggeredBy}
type: ${securityAssessmentType}
Using getSecurityAssessments
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSecurityAssessments(args: GetSecurityAssessmentsArgs, opts?: InvokeOptions): Promise<GetSecurityAssessmentsResult>
function getSecurityAssessmentsOutput(args: GetSecurityAssessmentsOutputArgs, opts?: InvokeOptions): Output<GetSecurityAssessmentsResult>
def get_security_assessments(access_level: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetSecurityAssessmentsFilter]] = None,
is_baseline: Optional[bool] = None,
is_schedule_assessment: Optional[bool] = None,
schedule_assessment_id: Optional[str] = None,
state: Optional[str] = None,
target_database_group_id: Optional[str] = None,
target_id: Optional[str] = None,
target_type: Optional[str] = None,
template_assessment_id: Optional[str] = None,
time_created_greater_than_or_equal_to: Optional[str] = None,
time_created_less_than: Optional[str] = None,
triggered_by: Optional[str] = None,
type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSecurityAssessmentsResult
def get_security_assessments_output(access_level: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetSecurityAssessmentsFilterArgs]]]] = None,
is_baseline: Optional[pulumi.Input[bool]] = None,
is_schedule_assessment: Optional[pulumi.Input[bool]] = None,
schedule_assessment_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
target_database_group_id: Optional[pulumi.Input[str]] = None,
target_id: Optional[pulumi.Input[str]] = None,
target_type: Optional[pulumi.Input[str]] = None,
template_assessment_id: Optional[pulumi.Input[str]] = None,
time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
time_created_less_than: Optional[pulumi.Input[str]] = None,
triggered_by: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSecurityAssessmentsResult]
func GetSecurityAssessments(ctx *Context, args *GetSecurityAssessmentsArgs, opts ...InvokeOption) (*GetSecurityAssessmentsResult, error)
func GetSecurityAssessmentsOutput(ctx *Context, args *GetSecurityAssessmentsOutputArgs, opts ...InvokeOption) GetSecurityAssessmentsResultOutput
> Note: This function is named GetSecurityAssessments
in the Go SDK.
public static class GetSecurityAssessments
{
public static Task<GetSecurityAssessmentsResult> InvokeAsync(GetSecurityAssessmentsArgs args, InvokeOptions? opts = null)
public static Output<GetSecurityAssessmentsResult> Invoke(GetSecurityAssessmentsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSecurityAssessmentsResult> getSecurityAssessments(GetSecurityAssessmentsArgs args, InvokeOptions options)
public static Output<GetSecurityAssessmentsResult> getSecurityAssessments(GetSecurityAssessmentsArgs args, InvokeOptions options)
fn::invoke:
function: oci:DataSafe/getSecurityAssessments:getSecurityAssessments
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
List<Get
Security Assessments Filter> - Is
Baseline bool - A filter to return only the security assessments that are set as a baseline.
- Is
Schedule boolAssessment - A filter to return only security assessments of type save schedule.
- Schedule
Assessment stringId - The OCID of the security assessment of type SAVE_SCHEDULE.
- State string
- A filter to return only resources that match the specified lifecycle state.
- Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Target
Type string - A filter to return only only target database resources or target database group resources.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Time
Created stringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- Time
Created stringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- Triggered
By string - A filter to return only security assessments that were created by either user or system.
- Type string
- A filter to return only items that match the specified security assessment type.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
[]Get
Security Assessments Filter - Is
Baseline bool - A filter to return only the security assessments that are set as a baseline.
- Is
Schedule boolAssessment - A filter to return only security assessments of type save schedule.
- Schedule
Assessment stringId - The OCID of the security assessment of type SAVE_SCHEDULE.
- State string
- A filter to return only resources that match the specified lifecycle state.
- Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Target
Type string - A filter to return only only target database resources or target database group resources.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Time
Created stringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- Time
Created stringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- Triggered
By string - A filter to return only security assessments that were created by either user or system.
- Type string
- A filter to return only items that match the specified security assessment type.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name String - A filter to return only resources that match the specified display name.
- filters
List<Get
Security Assessments Filter> - is
Baseline Boolean - A filter to return only the security assessments that are set as a baseline.
- is
Schedule BooleanAssessment - A filter to return only security assessments of type save schedule.
- schedule
Assessment StringId - The OCID of the security assessment of type SAVE_SCHEDULE.
- state String
- A filter to return only resources that match the specified lifecycle state.
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only items related to a specific target OCID.
- target
Type String - A filter to return only only target database resources or target database group resources.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- time
Created StringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- time
Created StringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- triggered
By String - A filter to return only security assessments that were created by either user or system.
- type String
- A filter to return only items that match the specified security assessment type.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment
Id booleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name string - A filter to return only resources that match the specified display name.
- filters
Get
Security Assessments Filter[] - is
Baseline boolean - A filter to return only the security assessments that are set as a baseline.
- is
Schedule booleanAssessment - A filter to return only security assessments of type save schedule.
- schedule
Assessment stringId - The OCID of the security assessment of type SAVE_SCHEDULE.
- state string
- A filter to return only resources that match the specified lifecycle state.
- target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id string - A filter to return only items related to a specific target OCID.
- target
Type string - A filter to return only only target database resources or target database group resources.
- template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- time
Created stringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- time
Created stringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- triggered
By string - A filter to return only security assessments that were created by either user or system.
- type string
- A filter to return only items that match the specified security assessment type.
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- access_
level str - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment_
id_ boolin_ subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display_
name str - A filter to return only resources that match the specified display name.
- filters
Sequence[Get
Security Assessments Filter] - is_
baseline bool - A filter to return only the security assessments that are set as a baseline.
- is_
schedule_ boolassessment - A filter to return only security assessments of type save schedule.
- schedule_
assessment_ strid - The OCID of the security assessment of type SAVE_SCHEDULE.
- state str
- A filter to return only resources that match the specified lifecycle state.
- target_
database_ strgroup_ id - A filter to return the target database group that matches the specified OCID.
- target_
id str - A filter to return only items related to a specific target OCID.
- target_
type str - A filter to return only only target database resources or target database group resources.
- template_
assessment_ strid - The OCID of the security assessment of type TEMPLATE.
- time_
created_ strgreater_ than_ or_ equal_ to A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- time_
created_ strless_ than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- triggered_
by str - A filter to return only security assessments that were created by either user or system.
- type str
- A filter to return only items that match the specified security assessment type.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name String - A filter to return only resources that match the specified display name.
- filters List<Property Map>
- is
Baseline Boolean - A filter to return only the security assessments that are set as a baseline.
- is
Schedule BooleanAssessment - A filter to return only security assessments of type save schedule.
- schedule
Assessment StringId - The OCID of the security assessment of type SAVE_SCHEDULE.
- state String
- A filter to return only resources that match the specified lifecycle state.
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only items related to a specific target OCID.
- target
Type String - A filter to return only only target database resources or target database group resources.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- time
Created StringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- time
Created StringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- triggered
By String - A filter to return only security assessments that were created by either user or system.
- type String
- A filter to return only items that match the specified security assessment type.
getSecurityAssessments Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment that contains the security assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Assessments List<GetSecurity Assessments Security Assessment> - The list of security_assessments.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - The display name of the security assessment.
- Filters
List<Get
Security Assessments Filter> - Is
Baseline bool - Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
- Is
Schedule boolAssessment - Schedule
Assessment stringId - State string
- The current state of the security assessment.
- Target
Database stringGroup Id - The OCID of the target database group that the group assessment is created for.
- Target
Id string - Target
Type string - Indicates whether the security assessment is for a target database or a target database group.
- Template
Assessment stringId - The ocid of a security assessment which is of type TEMPLATE, this will be null or empty when type is TEMPLATE.
- Time
Created stringGreater Than Or Equal To - Time
Created stringLess Than - Triggered
By string - Indicates whether the security assessment was created by system or by a user.
- Type string
- The type of the security assessment. Possible values are:
- Compartment
Id string - The OCID of the compartment that contains the security assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Assessments []GetSecurity Assessments Security Assessment - The list of security_assessments.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - The display name of the security assessment.
- Filters
[]Get
Security Assessments Filter - Is
Baseline bool - Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
- Is
Schedule boolAssessment - Schedule
Assessment stringId - State string
- The current state of the security assessment.
- Target
Database stringGroup Id - The OCID of the target database group that the group assessment is created for.
- Target
Id string - Target
Type string - Indicates whether the security assessment is for a target database or a target database group.
- Template
Assessment stringId - The ocid of a security assessment which is of type TEMPLATE, this will be null or empty when type is TEMPLATE.
- Time
Created stringGreater Than Or Equal To - Time
Created stringLess Than - Triggered
By string - Indicates whether the security assessment was created by system or by a user.
- Type string
- The type of the security assessment. Possible values are:
- compartment
Id String - The OCID of the compartment that contains the security assessment.
- id String
- The provider-assigned unique ID for this managed resource.
- security
Assessments List<GetSecurity Assessments Security Assessment> - The list of security_assessments.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - The display name of the security assessment.
- filters
List<Get
Security Assessments Filter> - is
Baseline Boolean - Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
- is
Schedule BooleanAssessment - schedule
Assessment StringId - state String
- The current state of the security assessment.
- target
Database StringGroup Id - The OCID of the target database group that the group assessment is created for.
- target
Id String - target
Type String - Indicates whether the security assessment is for a target database or a target database group.
- template
Assessment StringId - The ocid of a security assessment which is of type TEMPLATE, this will be null or empty when type is TEMPLATE.
- time
Created StringGreater Than Or Equal To - time
Created StringLess Than - triggered
By String - Indicates whether the security assessment was created by system or by a user.
- type String
- The type of the security assessment. Possible values are:
- compartment
Id string - The OCID of the compartment that contains the security assessment.
- id string
- The provider-assigned unique ID for this managed resource.
- security
Assessments GetSecurity Assessments Security Assessment[] - The list of security_assessments.
- access
Level string - compartment
Id booleanIn Subtree - display
Name string - The display name of the security assessment.
- filters
Get
Security Assessments Filter[] - is
Baseline boolean - Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
- is
Schedule booleanAssessment - schedule
Assessment stringId - state string
- The current state of the security assessment.
- target
Database stringGroup Id - The OCID of the target database group that the group assessment is created for.
- target
Id string - target
Type string - Indicates whether the security assessment is for a target database or a target database group.
- template
Assessment stringId - The ocid of a security assessment which is of type TEMPLATE, this will be null or empty when type is TEMPLATE.
- time
Created stringGreater Than Or Equal To - time
Created stringLess Than - triggered
By string - Indicates whether the security assessment was created by system or by a user.
- type string
- The type of the security assessment. Possible values are:
- compartment_
id str - The OCID of the compartment that contains the security assessment.
- id str
- The provider-assigned unique ID for this managed resource.
- security_
assessments Sequence[GetSecurity Assessments Security Assessment] - The list of security_assessments.
- access_
level str - compartment_
id_ boolin_ subtree - display_
name str - The display name of the security assessment.
- filters
Sequence[Get
Security Assessments Filter] - is_
baseline bool - Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
- is_
schedule_ boolassessment - schedule_
assessment_ strid - state str
- The current state of the security assessment.
- target_
database_ strgroup_ id - The OCID of the target database group that the group assessment is created for.
- target_
id str - target_
type str - Indicates whether the security assessment is for a target database or a target database group.
- template_
assessment_ strid - The ocid of a security assessment which is of type TEMPLATE, this will be null or empty when type is TEMPLATE.
- time_
created_ strgreater_ than_ or_ equal_ to - time_
created_ strless_ than - triggered_
by str - Indicates whether the security assessment was created by system or by a user.
- type str
- The type of the security assessment. Possible values are:
- compartment
Id String - The OCID of the compartment that contains the security assessment.
- id String
- The provider-assigned unique ID for this managed resource.
- security
Assessments List<Property Map> - The list of security_assessments.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - The display name of the security assessment.
- filters List<Property Map>
- is
Baseline Boolean - Indicates whether or not the security assessment is set as a baseline. This is applicable only for saved security assessments.
- is
Schedule BooleanAssessment - schedule
Assessment StringId - state String
- The current state of the security assessment.
- target
Database StringGroup Id - The OCID of the target database group that the group assessment is created for.
- target
Id String - target
Type String - Indicates whether the security assessment is for a target database or a target database group.
- template
Assessment StringId - The ocid of a security assessment which is of type TEMPLATE, this will be null or empty when type is TEMPLATE.
- time
Created StringGreater Than Or Equal To - time
Created StringLess Than - triggered
By String - Indicates whether the security assessment was created by system or by a user.
- type String
- The type of the security assessment. Possible values are:
Supporting Types
GetSecurityAssessmentsFilter
GetSecurityAssessmentsSecurityAssessment
- Apply
Template intTrigger - Base
Security stringAssessment Id - Baseline
Assessment stringId - 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<Get
Security Assessments Security Assessment Check> - The security checks to be evaluated for type template.
- Compare
To intTemplate Baseline Trigger - Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- The description of the security assessment.
- Display
Name string - A filter to return only resources that match the specified display name.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Id string
- The OCID of the security assessment.
- Ignored
Assessment List<string>Ids - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- Ignored
Targets List<string> - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- Is
Assessment boolScheduled - Indicates whether the assessment is scheduled to run.
- Is
Baseline bool - A filter to return only the security assessments that are set as a baseline.
- Is
Deviated boolFrom Baseline - Indicates whether or not the security assessment deviates from the baseline.
- Last
Compared stringBaseline Id - The OCID of the baseline against which the latest security assessment was compared.
- Lifecycle
Details string - Details about the current state of the security assessment.
- Link string
- The summary of findings for the security assessment.
- Remove
Template intTrigger - Schedule string
- Schedule of the assessment that runs periodically in the specified format: - ;
- Schedule
Security stringAssessment Id - The OCID of the security assessment that is responsible for creating this scheduled save assessment.
- State string
- A filter to return only resources that match the specified lifecycle state.
- Statistics
List<Get
Security Assessments Security Assessment Statistic> - Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Target
Ids List<string> - Array of database target OCIDs.
- Target
Type string - A filter to return only only target database resources or target database group resources.
- Target
Version string - The version of the target database.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Time
Created string - The date and time the security assessment was created, in the format defined by RFC3339.
- Time
Last stringAssessed - The date and time the security assessment was last executed, in the format defined by RFC3339.
- Time
Updated string - The date and time the security assessment was last updated, in the format defined by RFC3339.
- Triggered
By string - A filter to return only security assessments that were created by either user or system.
- Type string
- A filter to return only items that match the specified security assessment type.
- Apply
Template intTrigger - Base
Security stringAssessment Id - Baseline
Assessment stringId - The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
- Checks
[]Get
Security Assessments Security Assessment Check - The security checks to be evaluated for type template.
- Compare
To intTemplate Baseline Trigger - Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- The description of the security assessment.
- Display
Name string - A filter to return only resources that match the specified display name.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Id string
- The OCID of the security assessment.
- Ignored
Assessment []stringIds - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- Ignored
Targets []string - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- Is
Assessment boolScheduled - Indicates whether the assessment is scheduled to run.
- Is
Baseline bool - A filter to return only the security assessments that are set as a baseline.
- Is
Deviated boolFrom Baseline - Indicates whether or not the security assessment deviates from the baseline.
- Last
Compared stringBaseline Id - The OCID of the baseline against which the latest security assessment was compared.
- Lifecycle
Details string - Details about the current state of the security assessment.
- Link string
- The summary of findings for the security assessment.
- Remove
Template intTrigger - Schedule string
- Schedule of the assessment that runs periodically in the specified format: - ;
- Schedule
Security stringAssessment Id - The OCID of the security assessment that is responsible for creating this scheduled save assessment.
- State string
- A filter to return only resources that match the specified lifecycle state.
- Statistics
[]Get
Security Assessments Security Assessment Statistic - Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Target
Ids []string - Array of database target OCIDs.
- Target
Type string - A filter to return only only target database resources or target database group resources.
- Target
Version string - The version of the target database.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Time
Created string - The date and time the security assessment was created, in the format defined by RFC3339.
- Time
Last stringAssessed - The date and time the security assessment was last executed, in the format defined by RFC3339.
- Time
Updated string - The date and time the security assessment was last updated, in the format defined by RFC3339.
- Triggered
By string - A filter to return only security assessments that were created by either user or system.
- Type string
- A filter to return only items that match the specified security assessment type.
- apply
Template IntegerTrigger - base
Security StringAssessment Id - baseline
Assessment StringId - 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<Get
Security Assessments Security Assessment Check> - The security checks to be evaluated for type template.
- compare
To IntegerTemplate Baseline Trigger - compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- The description of the security assessment.
- display
Name String - A filter to return only resources that match the specified display name.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id String
- The OCID of the security assessment.
- ignored
Assessment List<String>Ids - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- ignored
Targets List<String> - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- is
Assessment BooleanScheduled - Indicates whether the assessment is scheduled to run.
- is
Baseline Boolean - A filter to return only the security assessments that are set as a baseline.
- is
Deviated BooleanFrom Baseline - Indicates whether or not the security assessment deviates from the baseline.
- last
Compared StringBaseline Id - The OCID of the baseline against which the latest security assessment was compared.
- lifecycle
Details String - Details about the current state of the security assessment.
- link String
- The summary of findings for the security assessment.
- remove
Template IntegerTrigger - schedule String
- Schedule of the assessment that runs periodically in the specified format: - ;
- schedule
Security StringAssessment Id - The OCID of the security assessment that is responsible for creating this scheduled save assessment.
- state String
- A filter to return only resources that match the specified lifecycle state.
- statistics
List<Get
Security Assessments Security Assessment Statistic> - Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only items related to a specific target OCID.
- target
Ids List<String> - Array of database target OCIDs.
- target
Type String - A filter to return only only target database resources or target database group resources.
- target
Version String - The version of the target database.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- time
Created String - The date and time the security assessment was created, in the format defined by RFC3339.
- time
Last StringAssessed - The date and time the security assessment was last executed, in the format defined by RFC3339.
- time
Updated String - The date and time the security assessment was last updated, in the format defined by RFC3339.
- triggered
By String - A filter to return only security assessments that were created by either user or system.
- type String
- A filter to return only items that match the specified security assessment type.
- apply
Template numberTrigger - base
Security stringAssessment Id - baseline
Assessment stringId - The ocid of a security assessment which is of type TEMPLATE_BASELINE, this will be null or empty when type is TEMPLATE_BASELINE.
- checks
Get
Security Assessments Security Assessment Check[] - The security checks to be evaluated for type template.
- compare
To numberTemplate Baseline Trigger - compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description string
- The description of the security assessment.
- display
Name string - A filter to return only resources that match the specified display name.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id string
- The OCID of the security assessment.
- ignored
Assessment string[]Ids - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- ignored
Targets string[] - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- is
Assessment booleanScheduled - Indicates whether the assessment is scheduled to run.
- is
Baseline boolean - A filter to return only the security assessments that are set as a baseline.
- is
Deviated booleanFrom Baseline - Indicates whether or not the security assessment deviates from the baseline.
- last
Compared stringBaseline Id - The OCID of the baseline against which the latest security assessment was compared.
- lifecycle
Details string - Details about the current state of the security assessment.
- link string
- The summary of findings for the security assessment.
- remove
Template numberTrigger - schedule string
- Schedule of the assessment that runs periodically in the specified format: - ;
- schedule
Security stringAssessment Id - The OCID of the security assessment that is responsible for creating this scheduled save assessment.
- state string
- A filter to return only resources that match the specified lifecycle state.
- statistics
Get
Security Assessments Security Assessment Statistic[] - Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id string - A filter to return only items related to a specific target OCID.
- target
Ids string[] - Array of database target OCIDs.
- target
Type string - A filter to return only only target database resources or target database group resources.
- target
Version string - The version of the target database.
- template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- time
Created string - The date and time the security assessment was created, in the format defined by RFC3339.
- time
Last stringAssessed - The date and time the security assessment was last executed, in the format defined by RFC3339.
- time
Updated string - The date and time the security assessment was last updated, in the format defined by RFC3339.
- triggered
By string - A filter to return only security assessments that were created by either user or system.
- type string
- A filter to return only items that match the specified security assessment type.
- apply_
template_ inttrigger - base_
security_ strassessment_ id - baseline_
assessment_ strid - 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[Get
Security Assessments Security Assessment Check] - The security checks to be evaluated for type template.
- compare_
to_ inttemplate_ baseline_ trigger - compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description str
- The description of the security assessment.
- display_
name str - A filter to return only resources that match the specified display name.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id str
- The OCID of the security assessment.
- ignored_
assessment_ Sequence[str]ids - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- ignored_
targets Sequence[str] - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- is_
assessment_ boolscheduled - Indicates whether the assessment is scheduled to run.
- is_
baseline bool - A filter to return only the security assessments that are set as a baseline.
- is_
deviated_ boolfrom_ baseline - Indicates whether or not the security assessment deviates from the baseline.
- last_
compared_ strbaseline_ id - 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_ inttrigger - schedule str
- Schedule of the assessment that runs periodically in the specified format: - ;
- schedule_
security_ strassessment_ id - The OCID of the security assessment that is responsible for creating this scheduled save assessment.
- state str
- A filter to return only resources that match the specified lifecycle state.
- statistics
Sequence[Get
Security Assessments Security Assessment Statistic] - Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target_
database_ strgroup_ id - A filter to return the target database group that matches the specified OCID.
- target_
id str - A filter to return only items related to a specific target OCID.
- target_
ids Sequence[str] - Array of database target OCIDs.
- target_
type str - A filter to return only only target database resources or target database group resources.
- target_
version str - The version of the target database.
- template_
assessment_ strid - The OCID of the security assessment of type TEMPLATE.
- time_
created str - The date and time the security assessment was created, in the format defined by RFC3339.
- time_
last_ strassessed - The date and time the security assessment was last executed, in the format defined by RFC3339.
- time_
updated str - The date and time the security assessment was last updated, in the format defined by RFC3339.
- triggered_
by str - A filter to return only security assessments that were created by either user or system.
- type str
- A filter to return only items that match the specified security assessment type.
- apply
Template NumberTrigger - base
Security StringAssessment Id - baseline
Assessment StringId - 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.
- compare
To NumberTemplate Baseline Trigger - compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- The description of the security assessment.
- display
Name String - A filter to return only resources that match the specified display name.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id String
- The OCID of the security assessment.
- ignored
Assessment List<String>Ids - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- ignored
Targets List<String> - List containing maps as values. Example:
{"Operations": [ {"CostCenter": "42"} ] }
- is
Assessment BooleanScheduled - Indicates whether the assessment is scheduled to run.
- is
Baseline Boolean - A filter to return only the security assessments that are set as a baseline.
- is
Deviated BooleanFrom Baseline - Indicates whether or not the security assessment deviates from the baseline.
- last
Compared StringBaseline Id - The OCID of the baseline against which the latest security assessment was compared.
- lifecycle
Details String - Details about the current state of the security assessment.
- link String
- The summary of findings for the security assessment.
- remove
Template NumberTrigger - schedule String
- Schedule of the assessment that runs periodically in the specified format: - ;
- schedule
Security StringAssessment Id - The OCID of the security assessment that is responsible for creating this scheduled save assessment.
- state String
- A filter to return only resources that match the specified lifecycle state.
- statistics List<Property Map>
- Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only items related to a specific target OCID.
- target
Ids List<String> - Array of database target OCIDs.
- target
Type String - A filter to return only only target database resources or target database group resources.
- target
Version String - The version of the target database.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- time
Created String - The date and time the security assessment was created, in the format defined by RFC3339.
- time
Last StringAssessed - The date and time the security assessment was last executed, in the format defined by RFC3339.
- time
Updated String - The date and time the security assessment was last updated, in the format defined by RFC3339.
- triggered
By String - A filter to return only security assessments that were created by either user or system.
- type String
- A filter to return only items that match the specified security assessment type.
GetSecurityAssessmentsSecurityAssessmentCheck
- 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<Get
Security Assessments Security Assessment Check Reference> - 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.
- Suggested
Severity 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
[]Get
Security Assessments Security Assessment Check Reference - 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.
- Suggested
Severity 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<Get
Security Assessments Security Assessment Check Reference> - 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.
- suggested
Severity 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
Get
Security Assessments Security Assessment Check Reference[] - 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.
- suggested
Severity 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[Get
Security Assessments Security Assessment Check Reference] - 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.
- suggested
Severity 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.
GetSecurityAssessmentsSecurityAssessmentCheckReference
GetSecurityAssessmentsSecurityAssessmentStatistic
- Advisories
List<Get
Security Assessments Security Assessment Statistic Advisory> - Statistics showing the number of findings with a particular risk level for each category.
- Deferreds
List<Get
Security Assessments Security Assessment Statistic Deferred> - Statistics showing the number of findings with a particular risk level for each category.
- Evaluates
List<Get
Security Assessments Security Assessment Statistic Evaluate> - Statistics showing the number of findings with a particular risk level for each category.
- High
Risks List<GetSecurity Assessments Security Assessment Statistic High Risk> - Statistics showing the number of findings with a particular risk level for each category.
- Low
Risks List<GetSecurity Assessments Security Assessment Statistic Low Risk> - Statistics showing the number of findings with a particular risk level for each category.
- Medium
Risks List<GetSecurity Assessments Security Assessment Statistic Medium Risk> - Statistics showing the number of findings with a particular risk level for each category.
- Passes
List<Get
Security Assessments Security Assessment Statistic Pass> - 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
[]Get
Security Assessments Security Assessment Statistic Advisory - Statistics showing the number of findings with a particular risk level for each category.
- Deferreds
[]Get
Security Assessments Security Assessment Statistic Deferred - Statistics showing the number of findings with a particular risk level for each category.
- Evaluates
[]Get
Security Assessments Security Assessment Statistic Evaluate - Statistics showing the number of findings with a particular risk level for each category.
- High
Risks []GetSecurity Assessments Security Assessment Statistic High Risk - Statistics showing the number of findings with a particular risk level for each category.
- Low
Risks []GetSecurity Assessments Security Assessment Statistic Low Risk - Statistics showing the number of findings with a particular risk level for each category.
- Medium
Risks []GetSecurity Assessments Security Assessment Statistic Medium Risk - Statistics showing the number of findings with a particular risk level for each category.
- Passes
[]Get
Security Assessments Security Assessment Statistic Pass - 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<Get
Security Assessments Security Assessment Statistic Advisory> - Statistics showing the number of findings with a particular risk level for each category.
- deferreds
List<Get
Security Assessments Security Assessment Statistic Deferred> - Statistics showing the number of findings with a particular risk level for each category.
- evaluates
List<Get
Security Assessments Security Assessment Statistic Evaluate> - Statistics showing the number of findings with a particular risk level for each category.
- high
Risks List<GetSecurity Assessments Security Assessment Statistic High Risk> - Statistics showing the number of findings with a particular risk level for each category.
- low
Risks List<GetSecurity Assessments Security Assessment Statistic Low Risk> - Statistics showing the number of findings with a particular risk level for each category.
- medium
Risks List<GetSecurity Assessments Security Assessment Statistic Medium Risk> - Statistics showing the number of findings with a particular risk level for each category.
- passes
List<Get
Security Assessments Security Assessment Statistic Pass> - Statistics showing the number of findings with a particular risk level for each category.
- targets
Count Integer - The total number of targets in this security assessment.
- advisories
Get
Security Assessments Security Assessment Statistic Advisory[] - Statistics showing the number of findings with a particular risk level for each category.
- deferreds
Get
Security Assessments Security Assessment Statistic Deferred[] - Statistics showing the number of findings with a particular risk level for each category.
- evaluates
Get
Security Assessments Security Assessment Statistic Evaluate[] - Statistics showing the number of findings with a particular risk level for each category.
- high
Risks GetSecurity Assessments Security Assessment Statistic High Risk[] - Statistics showing the number of findings with a particular risk level for each category.
- low
Risks GetSecurity Assessments Security Assessment Statistic Low Risk[] - Statistics showing the number of findings with a particular risk level for each category.
- medium
Risks GetSecurity Assessments Security Assessment Statistic Medium Risk[] - Statistics showing the number of findings with a particular risk level for each category.
- passes
Get
Security Assessments Security Assessment Statistic Pass[] - Statistics showing the number of findings with a particular risk level for each category.
- targets
Count number - The total number of targets in this security assessment.
- advisories
Sequence[Get
Security Assessments Security Assessment Statistic Advisory] - Statistics showing the number of findings with a particular risk level for each category.
- deferreds
Sequence[Get
Security Assessments Security Assessment Statistic Deferred] - Statistics showing the number of findings with a particular risk level for each category.
- evaluates
Sequence[Get
Security Assessments Security Assessment Statistic Evaluate] - Statistics showing the number of findings with a particular risk level for each category.
- high_
risks Sequence[GetSecurity Assessments Security Assessment Statistic High Risk] - Statistics showing the number of findings with a particular risk level for each category.
- low_
risks Sequence[GetSecurity Assessments Security Assessment Statistic Low Risk] - Statistics showing the number of findings with a particular risk level for each category.
- medium_
risks Sequence[GetSecurity Assessments Security Assessment Statistic Medium Risk] - Statistics showing the number of findings with a particular risk level for each category.
- passes
Sequence[Get
Security Assessments Security Assessment Statistic Pass] - 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.
- high
Risks List<Property Map> - Statistics showing the number of findings with a particular risk level for each category.
- low
Risks List<Property Map> - Statistics showing the number of findings with a particular risk level for each category.
- medium
Risks 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.
- targets
Count Number - The total number of targets in this security assessment.
GetSecurityAssessmentsSecurityAssessmentStatisticAdvisory
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- auditing
Findings IntegerCount - The number of findings in the Auditing category.
- Integer
- The number of findings in the Authorization Control category.
- data
Encryption IntegerFindings Count - The number of findings in the Data Encryption category.
- db
Configuration IntegerFindings Count - The number of findings in the Database Configuration category.
- fine
Grained IntegerAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And IntegerRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Integer - The total number of targets in this security assessment.
- user
Accounts IntegerFindings Count - The number of findings in the User Accounts category.
- auditing
Findings numberCount - The number of findings in the Auditing category.
- number
- The number of findings in the Authorization Control category.
- data
Encryption numberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration numberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained numberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And numberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count number - The total number of targets in this security assessment.
- user
Accounts numberFindings Count - The number of findings in the User Accounts category.
- auditing_
findings_ intcount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- data_
encryption_ intfindings_ count - The number of findings in the Data Encryption category.
- db_
configuration_ intfindings_ count - The number of findings in the Database Configuration category.
- fine_
grained_ intaccess_ control_ findings_ count - The number of findings in the Fine-Grained Access Control category.
- privileges_
and_ introles_ findings_ count - The number of findings in the Privileges and Roles category.
- targets_
count int - The total number of targets in this security assessment.
- user_
accounts_ intfindings_ count - The number of findings in the User Accounts category.
- auditing
Findings NumberCount - The number of findings in the Auditing category.
- Number
- The number of findings in the Authorization Control category.
- data
Encryption NumberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration NumberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained NumberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And NumberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Number - The total number of targets in this security assessment.
- user
Accounts NumberFindings Count - The number of findings in the User Accounts category.
GetSecurityAssessmentsSecurityAssessmentStatisticDeferred
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- auditing
Findings IntegerCount - The number of findings in the Auditing category.
- Integer
- The number of findings in the Authorization Control category.
- data
Encryption IntegerFindings Count - The number of findings in the Data Encryption category.
- db
Configuration IntegerFindings Count - The number of findings in the Database Configuration category.
- fine
Grained IntegerAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And IntegerRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Integer - The total number of targets in this security assessment.
- user
Accounts IntegerFindings Count - The number of findings in the User Accounts category.
- auditing
Findings numberCount - The number of findings in the Auditing category.
- number
- The number of findings in the Authorization Control category.
- data
Encryption numberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration numberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained numberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And numberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count number - The total number of targets in this security assessment.
- user
Accounts numberFindings Count - The number of findings in the User Accounts category.
- auditing_
findings_ intcount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- data_
encryption_ intfindings_ count - The number of findings in the Data Encryption category.
- db_
configuration_ intfindings_ count - The number of findings in the Database Configuration category.
- fine_
grained_ intaccess_ control_ findings_ count - The number of findings in the Fine-Grained Access Control category.
- privileges_
and_ introles_ findings_ count - The number of findings in the Privileges and Roles category.
- targets_
count int - The total number of targets in this security assessment.
- user_
accounts_ intfindings_ count - The number of findings in the User Accounts category.
- auditing
Findings NumberCount - The number of findings in the Auditing category.
- Number
- The number of findings in the Authorization Control category.
- data
Encryption NumberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration NumberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained NumberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And NumberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Number - The total number of targets in this security assessment.
- user
Accounts NumberFindings Count - The number of findings in the User Accounts category.
GetSecurityAssessmentsSecurityAssessmentStatisticEvaluate
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- auditing
Findings IntegerCount - The number of findings in the Auditing category.
- Integer
- The number of findings in the Authorization Control category.
- data
Encryption IntegerFindings Count - The number of findings in the Data Encryption category.
- db
Configuration IntegerFindings Count - The number of findings in the Database Configuration category.
- fine
Grained IntegerAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And IntegerRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Integer - The total number of targets in this security assessment.
- user
Accounts IntegerFindings Count - The number of findings in the User Accounts category.
- auditing
Findings numberCount - The number of findings in the Auditing category.
- number
- The number of findings in the Authorization Control category.
- data
Encryption numberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration numberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained numberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And numberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count number - The total number of targets in this security assessment.
- user
Accounts numberFindings Count - The number of findings in the User Accounts category.
- auditing_
findings_ intcount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- data_
encryption_ intfindings_ count - The number of findings in the Data Encryption category.
- db_
configuration_ intfindings_ count - The number of findings in the Database Configuration category.
- fine_
grained_ intaccess_ control_ findings_ count - The number of findings in the Fine-Grained Access Control category.
- privileges_
and_ introles_ findings_ count - The number of findings in the Privileges and Roles category.
- targets_
count int - The total number of targets in this security assessment.
- user_
accounts_ intfindings_ count - The number of findings in the User Accounts category.
- auditing
Findings NumberCount - The number of findings in the Auditing category.
- Number
- The number of findings in the Authorization Control category.
- data
Encryption NumberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration NumberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained NumberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And NumberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Number - The total number of targets in this security assessment.
- user
Accounts NumberFindings Count - The number of findings in the User Accounts category.
GetSecurityAssessmentsSecurityAssessmentStatisticHighRisk
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- auditing
Findings IntegerCount - The number of findings in the Auditing category.
- Integer
- The number of findings in the Authorization Control category.
- data
Encryption IntegerFindings Count - The number of findings in the Data Encryption category.
- db
Configuration IntegerFindings Count - The number of findings in the Database Configuration category.
- fine
Grained IntegerAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And IntegerRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Integer - The total number of targets in this security assessment.
- user
Accounts IntegerFindings Count - The number of findings in the User Accounts category.
- auditing
Findings numberCount - The number of findings in the Auditing category.
- number
- The number of findings in the Authorization Control category.
- data
Encryption numberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration numberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained numberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And numberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count number - The total number of targets in this security assessment.
- user
Accounts numberFindings Count - The number of findings in the User Accounts category.
- auditing_
findings_ intcount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- data_
encryption_ intfindings_ count - The number of findings in the Data Encryption category.
- db_
configuration_ intfindings_ count - The number of findings in the Database Configuration category.
- fine_
grained_ intaccess_ control_ findings_ count - The number of findings in the Fine-Grained Access Control category.
- privileges_
and_ introles_ findings_ count - The number of findings in the Privileges and Roles category.
- targets_
count int - The total number of targets in this security assessment.
- user_
accounts_ intfindings_ count - The number of findings in the User Accounts category.
- auditing
Findings NumberCount - The number of findings in the Auditing category.
- Number
- The number of findings in the Authorization Control category.
- data
Encryption NumberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration NumberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained NumberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And NumberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Number - The total number of targets in this security assessment.
- user
Accounts NumberFindings Count - The number of findings in the User Accounts category.
GetSecurityAssessmentsSecurityAssessmentStatisticLowRisk
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- auditing
Findings IntegerCount - The number of findings in the Auditing category.
- Integer
- The number of findings in the Authorization Control category.
- data
Encryption IntegerFindings Count - The number of findings in the Data Encryption category.
- db
Configuration IntegerFindings Count - The number of findings in the Database Configuration category.
- fine
Grained IntegerAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And IntegerRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Integer - The total number of targets in this security assessment.
- user
Accounts IntegerFindings Count - The number of findings in the User Accounts category.
- auditing
Findings numberCount - The number of findings in the Auditing category.
- number
- The number of findings in the Authorization Control category.
- data
Encryption numberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration numberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained numberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And numberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count number - The total number of targets in this security assessment.
- user
Accounts numberFindings Count - The number of findings in the User Accounts category.
- auditing_
findings_ intcount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- data_
encryption_ intfindings_ count - The number of findings in the Data Encryption category.
- db_
configuration_ intfindings_ count - The number of findings in the Database Configuration category.
- fine_
grained_ intaccess_ control_ findings_ count - The number of findings in the Fine-Grained Access Control category.
- privileges_
and_ introles_ findings_ count - The number of findings in the Privileges and Roles category.
- targets_
count int - The total number of targets in this security assessment.
- user_
accounts_ intfindings_ count - The number of findings in the User Accounts category.
- auditing
Findings NumberCount - The number of findings in the Auditing category.
- Number
- The number of findings in the Authorization Control category.
- data
Encryption NumberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration NumberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained NumberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And NumberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Number - The total number of targets in this security assessment.
- user
Accounts NumberFindings Count - The number of findings in the User Accounts category.
GetSecurityAssessmentsSecurityAssessmentStatisticMediumRisk
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- auditing
Findings IntegerCount - The number of findings in the Auditing category.
- Integer
- The number of findings in the Authorization Control category.
- data
Encryption IntegerFindings Count - The number of findings in the Data Encryption category.
- db
Configuration IntegerFindings Count - The number of findings in the Database Configuration category.
- fine
Grained IntegerAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And IntegerRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Integer - The total number of targets in this security assessment.
- user
Accounts IntegerFindings Count - The number of findings in the User Accounts category.
- auditing
Findings numberCount - The number of findings in the Auditing category.
- number
- The number of findings in the Authorization Control category.
- data
Encryption numberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration numberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained numberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And numberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count number - The total number of targets in this security assessment.
- user
Accounts numberFindings Count - The number of findings in the User Accounts category.
- auditing_
findings_ intcount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- data_
encryption_ intfindings_ count - The number of findings in the Data Encryption category.
- db_
configuration_ intfindings_ count - The number of findings in the Database Configuration category.
- fine_
grained_ intaccess_ control_ findings_ count - The number of findings in the Fine-Grained Access Control category.
- privileges_
and_ introles_ findings_ count - The number of findings in the Privileges and Roles category.
- targets_
count int - The total number of targets in this security assessment.
- user_
accounts_ intfindings_ count - The number of findings in the User Accounts category.
- auditing
Findings NumberCount - The number of findings in the Auditing category.
- Number
- The number of findings in the Authorization Control category.
- data
Encryption NumberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration NumberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained NumberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And NumberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Number - The total number of targets in this security assessment.
- user
Accounts NumberFindings Count - The number of findings in the User Accounts category.
GetSecurityAssessmentsSecurityAssessmentStatisticPass
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- Auditing
Findings intCount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- Data
Encryption intFindings Count - The number of findings in the Data Encryption category.
- Db
Configuration intFindings Count - The number of findings in the Database Configuration category.
- Fine
Grained intAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- Privileges
And intRoles Findings Count - The number of findings in the Privileges and Roles category.
- Targets
Count int - The total number of targets in this security assessment.
- User
Accounts intFindings Count - The number of findings in the User Accounts category.
- auditing
Findings IntegerCount - The number of findings in the Auditing category.
- Integer
- The number of findings in the Authorization Control category.
- data
Encryption IntegerFindings Count - The number of findings in the Data Encryption category.
- db
Configuration IntegerFindings Count - The number of findings in the Database Configuration category.
- fine
Grained IntegerAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And IntegerRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Integer - The total number of targets in this security assessment.
- user
Accounts IntegerFindings Count - The number of findings in the User Accounts category.
- auditing
Findings numberCount - The number of findings in the Auditing category.
- number
- The number of findings in the Authorization Control category.
- data
Encryption numberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration numberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained numberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And numberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count number - The total number of targets in this security assessment.
- user
Accounts numberFindings Count - The number of findings in the User Accounts category.
- auditing_
findings_ intcount - The number of findings in the Auditing category.
- int
- The number of findings in the Authorization Control category.
- data_
encryption_ intfindings_ count - The number of findings in the Data Encryption category.
- db_
configuration_ intfindings_ count - The number of findings in the Database Configuration category.
- fine_
grained_ intaccess_ control_ findings_ count - The number of findings in the Fine-Grained Access Control category.
- privileges_
and_ introles_ findings_ count - The number of findings in the Privileges and Roles category.
- targets_
count int - The total number of targets in this security assessment.
- user_
accounts_ intfindings_ count - The number of findings in the User Accounts category.
- auditing
Findings NumberCount - The number of findings in the Auditing category.
- Number
- The number of findings in the Authorization Control category.
- data
Encryption NumberFindings Count - The number of findings in the Data Encryption category.
- db
Configuration NumberFindings Count - The number of findings in the Database Configuration category.
- fine
Grained NumberAccess Control Findings Count - The number of findings in the Fine-Grained Access Control category.
- privileges
And NumberRoles Findings Count - The number of findings in the Privileges and Roles category.
- targets
Count Number - The total number of targets in this security assessment.
- user
Accounts NumberFindings Count - The number of findings in the User Accounts category.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.