1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSecurityAssessmentTemplateBaselineComparison
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.DataSafe.getSecurityAssessmentTemplateBaselineComparison

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This data source provides details about a specific Security Assessment Template Baseline Comparison resource in Oracle Cloud Infrastructure Data Safe service.

    Gets the details of the comparison report for the security assessments submitted for comparison.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSecurityAssessmentTemplateBaselineComparison = oci.DataSafe.getSecurityAssessmentTemplateBaselineComparison({
        comparisonSecurityAssessmentId: testSecurityAssessment.id,
        securityAssessmentId: testSecurityAssessment.id,
        category: securityAssessmentTemplateBaselineComparisonCategory,
        findingKey: securityAssessmentTemplateBaselineComparisonFindingKey,
        targetId: testTarget.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_security_assessment_template_baseline_comparison = oci.DataSafe.get_security_assessment_template_baseline_comparison(comparison_security_assessment_id=test_security_assessment["id"],
        security_assessment_id=test_security_assessment["id"],
        category=security_assessment_template_baseline_comparison_category,
        finding_key=security_assessment_template_baseline_comparison_finding_key,
        target_id=test_target["id"])
    
    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.GetSecurityAssessmentTemplateBaselineComparison(ctx, &datasafe.GetSecurityAssessmentTemplateBaselineComparisonArgs{
    			ComparisonSecurityAssessmentId: testSecurityAssessment.Id,
    			SecurityAssessmentId:           testSecurityAssessment.Id,
    			Category:                       pulumi.StringRef(securityAssessmentTemplateBaselineComparisonCategory),
    			FindingKey:                     pulumi.StringRef(securityAssessmentTemplateBaselineComparisonFindingKey),
    			TargetId:                       pulumi.StringRef(testTarget.Id),
    		}, 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 testSecurityAssessmentTemplateBaselineComparison = Oci.DataSafe.GetSecurityAssessmentTemplateBaselineComparison.Invoke(new()
        {
            ComparisonSecurityAssessmentId = testSecurityAssessment.Id,
            SecurityAssessmentId = testSecurityAssessment.Id,
            Category = securityAssessmentTemplateBaselineComparisonCategory,
            FindingKey = securityAssessmentTemplateBaselineComparisonFindingKey,
            TargetId = testTarget.Id,
        });
    
    });
    
    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.GetSecurityAssessmentTemplateBaselineComparisonArgs;
    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 testSecurityAssessmentTemplateBaselineComparison = DataSafeFunctions.getSecurityAssessmentTemplateBaselineComparison(GetSecurityAssessmentTemplateBaselineComparisonArgs.builder()
                .comparisonSecurityAssessmentId(testSecurityAssessment.id())
                .securityAssessmentId(testSecurityAssessment.id())
                .category(securityAssessmentTemplateBaselineComparisonCategory)
                .findingKey(securityAssessmentTemplateBaselineComparisonFindingKey)
                .targetId(testTarget.id())
                .build());
    
        }
    }
    
    variables:
      testSecurityAssessmentTemplateBaselineComparison:
        fn::invoke:
          function: oci:DataSafe:getSecurityAssessmentTemplateBaselineComparison
          arguments:
            comparisonSecurityAssessmentId: ${testSecurityAssessment.id}
            securityAssessmentId: ${testSecurityAssessment.id}
            category: ${securityAssessmentTemplateBaselineComparisonCategory}
            findingKey: ${securityAssessmentTemplateBaselineComparisonFindingKey}
            targetId: ${testTarget.id}
    

    Using getSecurityAssessmentTemplateBaselineComparison

    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 getSecurityAssessmentTemplateBaselineComparison(args: GetSecurityAssessmentTemplateBaselineComparisonArgs, opts?: InvokeOptions): Promise<GetSecurityAssessmentTemplateBaselineComparisonResult>
    function getSecurityAssessmentTemplateBaselineComparisonOutput(args: GetSecurityAssessmentTemplateBaselineComparisonOutputArgs, opts?: InvokeOptions): Output<GetSecurityAssessmentTemplateBaselineComparisonResult>
    def get_security_assessment_template_baseline_comparison(category: Optional[str] = None,
                                                             comparison_security_assessment_id: Optional[str] = None,
                                                             finding_key: Optional[str] = None,
                                                             security_assessment_id: Optional[str] = None,
                                                             target_id: Optional[str] = None,
                                                             opts: Optional[InvokeOptions] = None) -> GetSecurityAssessmentTemplateBaselineComparisonResult
    def get_security_assessment_template_baseline_comparison_output(category: Optional[pulumi.Input[str]] = None,
                                                             comparison_security_assessment_id: Optional[pulumi.Input[str]] = None,
                                                             finding_key: Optional[pulumi.Input[str]] = None,
                                                             security_assessment_id: Optional[pulumi.Input[str]] = None,
                                                             target_id: Optional[pulumi.Input[str]] = None,
                                                             opts: Optional[InvokeOptions] = None) -> Output[GetSecurityAssessmentTemplateBaselineComparisonResult]
    func GetSecurityAssessmentTemplateBaselineComparison(ctx *Context, args *GetSecurityAssessmentTemplateBaselineComparisonArgs, opts ...InvokeOption) (*GetSecurityAssessmentTemplateBaselineComparisonResult, error)
    func GetSecurityAssessmentTemplateBaselineComparisonOutput(ctx *Context, args *GetSecurityAssessmentTemplateBaselineComparisonOutputArgs, opts ...InvokeOption) GetSecurityAssessmentTemplateBaselineComparisonResultOutput

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

    public static class GetSecurityAssessmentTemplateBaselineComparison 
    {
        public static Task<GetSecurityAssessmentTemplateBaselineComparisonResult> InvokeAsync(GetSecurityAssessmentTemplateBaselineComparisonArgs args, InvokeOptions? opts = null)
        public static Output<GetSecurityAssessmentTemplateBaselineComparisonResult> Invoke(GetSecurityAssessmentTemplateBaselineComparisonInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSecurityAssessmentTemplateBaselineComparisonResult> getSecurityAssessmentTemplateBaselineComparison(GetSecurityAssessmentTemplateBaselineComparisonArgs args, InvokeOptions options)
    public static Output<GetSecurityAssessmentTemplateBaselineComparisonResult> getSecurityAssessmentTemplateBaselineComparison(GetSecurityAssessmentTemplateBaselineComparisonArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DataSafe/getSecurityAssessmentTemplateBaselineComparison:getSecurityAssessmentTemplateBaselineComparison
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ComparisonSecurityAssessmentId string
    The OCID of the security assessment baseline.
    SecurityAssessmentId string
    The OCID of the security assessment.
    Category string
    The category of the finding.
    FindingKey string
    The unique key that identifies the finding. It is a string and unique within a security assessment.
    TargetId string
    A filter to return only items related to a specific target OCID.
    ComparisonSecurityAssessmentId string
    The OCID of the security assessment baseline.
    SecurityAssessmentId string
    The OCID of the security assessment.
    Category string
    The category of the finding.
    FindingKey string
    The unique key that identifies the finding. It is a string and unique within a security assessment.
    TargetId string
    A filter to return only items related to a specific target OCID.
    comparisonSecurityAssessmentId String
    The OCID of the security assessment baseline.
    securityAssessmentId String
    The OCID of the security assessment.
    category String
    The category of the finding.
    findingKey String
    The unique key that identifies the finding. It is a string and unique within a security assessment.
    targetId String
    A filter to return only items related to a specific target OCID.
    comparisonSecurityAssessmentId string
    The OCID of the security assessment baseline.
    securityAssessmentId string
    The OCID of the security assessment.
    category string
    The category of the finding.
    findingKey string
    The unique key that identifies the finding. It is a string and unique within a security assessment.
    targetId string
    A filter to return only items related to a specific target OCID.
    comparison_security_assessment_id str
    The OCID of the security assessment baseline.
    security_assessment_id str
    The OCID of the security assessment.
    category str
    The category of the finding.
    finding_key str
    The unique key that identifies the finding. It is a string and unique within a security assessment.
    target_id str
    A filter to return only items related to a specific target OCID.
    comparisonSecurityAssessmentId String
    The OCID of the security assessment baseline.
    securityAssessmentId String
    The OCID of the security assessment.
    category String
    The category of the finding.
    findingKey String
    The unique key that identifies the finding. It is a string and unique within a security assessment.
    targetId String
    A filter to return only items related to a specific target OCID.

    getSecurityAssessmentTemplateBaselineComparison Result

    The following output properties are available:

    Auditings List<GetSecurityAssessmentTemplateBaselineComparisonAuditing>
    A comparison between findings belonging to Auditing category.
    AuthorizationControls List<GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControl>
    A comparison between findings belonging to Authorization Control category.
    ComparisonSecurityAssessmentId string
    DataEncryptions List<GetSecurityAssessmentTemplateBaselineComparisonDataEncryption>
    Comparison between findings belonging to Data Encryption category.
    DbConfigurations List<GetSecurityAssessmentTemplateBaselineComparisonDbConfiguration>
    Comparison between findings belonging to Database Configuration category.
    FineGrainedAccessControls List<GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControl>
    Comparison between findings belonging to Fine-Grained Access Control category.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrivilegesAndRoles List<GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRole>
    Comparison between findings belonging to Privileges and Roles category.
    SecurityAssessmentId string
    State string
    The current state of the finding.
    TemplateBaselineId string
    The OCID of the security assessment that is set as a template baseline.
    TemplateBaselineName string
    The display name of the security assessment that is set as a template baseline.
    TimeCreated string
    The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
    UserAccounts List<GetSecurityAssessmentTemplateBaselineComparisonUserAccount>
    Comparison between findings belonging to User Accounts category.
    Category string
    FindingKey string
    TargetId string
    The OCID of the target database.
    Auditings []GetSecurityAssessmentTemplateBaselineComparisonAuditing
    A comparison between findings belonging to Auditing category.
    AuthorizationControls []GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControl
    A comparison between findings belonging to Authorization Control category.
    ComparisonSecurityAssessmentId string
    DataEncryptions []GetSecurityAssessmentTemplateBaselineComparisonDataEncryption
    Comparison between findings belonging to Data Encryption category.
    DbConfigurations []GetSecurityAssessmentTemplateBaselineComparisonDbConfiguration
    Comparison between findings belonging to Database Configuration category.
    FineGrainedAccessControls []GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControl
    Comparison between findings belonging to Fine-Grained Access Control category.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrivilegesAndRoles []GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRole
    Comparison between findings belonging to Privileges and Roles category.
    SecurityAssessmentId string
    State string
    The current state of the finding.
    TemplateBaselineId string
    The OCID of the security assessment that is set as a template baseline.
    TemplateBaselineName string
    The display name of the security assessment that is set as a template baseline.
    TimeCreated string
    The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
    UserAccounts []GetSecurityAssessmentTemplateBaselineComparisonUserAccount
    Comparison between findings belonging to User Accounts category.
    Category string
    FindingKey string
    TargetId string
    The OCID of the target database.
    auditings List<GetSecurityAssessmentTemplateBaselineComparisonAuditing>
    A comparison between findings belonging to Auditing category.
    authorizationControls List<GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControl>
    A comparison between findings belonging to Authorization Control category.
    comparisonSecurityAssessmentId String
    dataEncryptions List<GetSecurityAssessmentTemplateBaselineComparisonDataEncryption>
    Comparison between findings belonging to Data Encryption category.
    dbConfigurations List<GetSecurityAssessmentTemplateBaselineComparisonDbConfiguration>
    Comparison between findings belonging to Database Configuration category.
    fineGrainedAccessControls List<GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControl>
    Comparison between findings belonging to Fine-Grained Access Control category.
    id String
    The provider-assigned unique ID for this managed resource.
    privilegesAndRoles List<GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRole>
    Comparison between findings belonging to Privileges and Roles category.
    securityAssessmentId String
    state String
    The current state of the finding.
    templateBaselineId String
    The OCID of the security assessment that is set as a template baseline.
    templateBaselineName String
    The display name of the security assessment that is set as a template baseline.
    timeCreated String
    The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
    userAccounts List<GetSecurityAssessmentTemplateBaselineComparisonUserAccount>
    Comparison between findings belonging to User Accounts category.
    category String
    findingKey String
    targetId String
    The OCID of the target database.
    auditings GetSecurityAssessmentTemplateBaselineComparisonAuditing[]
    A comparison between findings belonging to Auditing category.
    authorizationControls GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControl[]
    A comparison between findings belonging to Authorization Control category.
    comparisonSecurityAssessmentId string
    dataEncryptions GetSecurityAssessmentTemplateBaselineComparisonDataEncryption[]
    Comparison between findings belonging to Data Encryption category.
    dbConfigurations GetSecurityAssessmentTemplateBaselineComparisonDbConfiguration[]
    Comparison between findings belonging to Database Configuration category.
    fineGrainedAccessControls GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControl[]
    Comparison between findings belonging to Fine-Grained Access Control category.
    id string
    The provider-assigned unique ID for this managed resource.
    privilegesAndRoles GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRole[]
    Comparison between findings belonging to Privileges and Roles category.
    securityAssessmentId string
    state string
    The current state of the finding.
    templateBaselineId string
    The OCID of the security assessment that is set as a template baseline.
    templateBaselineName string
    The display name of the security assessment that is set as a template baseline.
    timeCreated string
    The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
    userAccounts GetSecurityAssessmentTemplateBaselineComparisonUserAccount[]
    Comparison between findings belonging to User Accounts category.
    category string
    findingKey string
    targetId string
    The OCID of the target database.
    auditings Sequence[GetSecurityAssessmentTemplateBaselineComparisonAuditing]
    A comparison between findings belonging to Auditing category.
    authorization_controls Sequence[GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControl]
    A comparison between findings belonging to Authorization Control category.
    comparison_security_assessment_id str
    data_encryptions Sequence[GetSecurityAssessmentTemplateBaselineComparisonDataEncryption]
    Comparison between findings belonging to Data Encryption category.
    db_configurations Sequence[GetSecurityAssessmentTemplateBaselineComparisonDbConfiguration]
    Comparison between findings belonging to Database Configuration category.
    fine_grained_access_controls Sequence[GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControl]
    Comparison between findings belonging to Fine-Grained Access Control category.
    id str
    The provider-assigned unique ID for this managed resource.
    privileges_and_roles Sequence[GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRole]
    Comparison between findings belonging to Privileges and Roles category.
    security_assessment_id str
    state str
    The current state of the finding.
    template_baseline_id str
    The OCID of the security assessment that is set as a template baseline.
    template_baseline_name str
    The display name of the security assessment that is set as a template baseline.
    time_created str
    The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
    user_accounts Sequence[GetSecurityAssessmentTemplateBaselineComparisonUserAccount]
    Comparison between findings belonging to User Accounts category.
    category str
    finding_key str
    target_id str
    The OCID of the target database.
    auditings List<Property Map>
    A comparison between findings belonging to Auditing category.
    authorizationControls List<Property Map>
    A comparison between findings belonging to Authorization Control category.
    comparisonSecurityAssessmentId String
    dataEncryptions List<Property Map>
    Comparison between findings belonging to Data Encryption category.
    dbConfigurations List<Property Map>
    Comparison between findings belonging to Database Configuration category.
    fineGrainedAccessControls List<Property Map>
    Comparison between findings belonging to Fine-Grained Access Control category.
    id String
    The provider-assigned unique ID for this managed resource.
    privilegesAndRoles List<Property Map>
    Comparison between findings belonging to Privileges and Roles category.
    securityAssessmentId String
    state String
    The current state of the finding.
    templateBaselineId String
    The OCID of the security assessment that is set as a template baseline.
    templateBaselineName String
    The display name of the security assessment that is set as a template baseline.
    timeCreated String
    The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
    userAccounts List<Property Map>
    Comparison between findings belonging to User Accounts category.
    category String
    findingKey String
    targetId String
    The OCID of the target database.

    Supporting Types

    GetSecurityAssessmentTemplateBaselineComparisonAuditing

    Baselines List<GetSecurityAssessmentTemplateBaselineComparisonAuditingBaseline>
    The particular finding reported by the security assessment.
    Targets List<GetSecurityAssessmentTemplateBaselineComparisonAuditingTarget>
    A target-based comparison between two security assessments.
    Baselines []GetSecurityAssessmentTemplateBaselineComparisonAuditingBaseline
    The particular finding reported by the security assessment.
    Targets []GetSecurityAssessmentTemplateBaselineComparisonAuditingTarget
    A target-based comparison between two security assessments.
    baselines List<GetSecurityAssessmentTemplateBaselineComparisonAuditingBaseline>
    The particular finding reported by the security assessment.
    targets List<GetSecurityAssessmentTemplateBaselineComparisonAuditingTarget>
    A target-based comparison between two security assessments.
    baselines GetSecurityAssessmentTemplateBaselineComparisonAuditingBaseline[]
    The particular finding reported by the security assessment.
    targets GetSecurityAssessmentTemplateBaselineComparisonAuditingTarget[]
    A target-based comparison between two security assessments.
    baselines Sequence[GetSecurityAssessmentTemplateBaselineComparisonAuditingBaseline]
    The particular finding reported by the security assessment.
    targets Sequence[GetSecurityAssessmentTemplateBaselineComparisonAuditingTarget]
    A target-based comparison between two security assessments.
    baselines List<Property Map>
    The particular finding reported by the security assessment.
    targets List<Property Map>
    A target-based comparison between two security assessments.

    GetSecurityAssessmentTemplateBaselineComparisonAuditingBaseline

    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details List<string>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References List<GetSecurityAssessmentTemplateBaselineComparisonAuditingBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details []string
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References []GetSecurityAssessmentTemplateBaselineComparisonAuditingBaselineReference
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<GetSecurityAssessmentTemplateBaselineComparisonAuditingBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.
    assessmentId string
    The OCID of the assessment that generated this finding.
    details string[]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified boolean
    Determines if this risk level was modified by user.
    justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails string
    Details about the current state of the finding.
    oracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references GetSecurityAssessmentTemplateBaselineComparisonAuditingBaselineReference[]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity string
    The severity of this diff.
    state string
    The current state of the finding.
    summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId string
    A filter to return only items related to a specific target OCID.
    timeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title string
    The short title for the finding.
    assessment_id str
    The OCID of the assessment that generated this finding.
    details Sequence[str]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    has_target_db_risk_level_changed bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    is_risk_modified bool
    Determines if this risk level was modified by user.
    justification str
    User provided reason for accepting or modifying this finding if they choose to do so.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycle_details str
    Details about the current state of the finding.
    oracle_defined_severity str
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references Sequence[GetSecurityAssessmentTemplateBaselineComparisonAuditingBaselineReference]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks str
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity str
    The severity of this diff.
    state str
    The current state of the finding.
    summary str
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    target_id str
    A filter to return only items related to a specific target OCID.
    time_updated str
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    time_valid_until str
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title str
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<Property Map>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonAuditingBaselineReference

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

    GetSecurityAssessmentTemplateBaselineComparisonAuditingTarget

    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    severity string
    The severity of this diff.
    targetId string
    A filter to return only items related to a specific target OCID.
    title string
    The short title for the finding.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    severity str
    The severity of this diff.
    target_id str
    A filter to return only items related to a specific target OCID.
    title str
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControl

    Baselines List<GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaseline>
    The particular finding reported by the security assessment.
    Targets List<GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlTarget>
    A target-based comparison between two security assessments.
    Baselines []GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaseline
    The particular finding reported by the security assessment.
    Targets []GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlTarget
    A target-based comparison between two security assessments.
    baselines List<GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaseline>
    The particular finding reported by the security assessment.
    targets List<GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlTarget>
    A target-based comparison between two security assessments.
    baselines GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaseline[]
    The particular finding reported by the security assessment.
    targets GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlTarget[]
    A target-based comparison between two security assessments.
    baselines List<Property Map>
    The particular finding reported by the security assessment.
    targets List<Property Map>
    A target-based comparison between two security assessments.

    GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaseline

    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details List<string>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References List<GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details []string
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References []GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaselineReference
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.
    assessmentId string
    The OCID of the assessment that generated this finding.
    details string[]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified boolean
    Determines if this risk level was modified by user.
    justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails string
    Details about the current state of the finding.
    oracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaselineReference[]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity string
    The severity of this diff.
    state string
    The current state of the finding.
    summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId string
    A filter to return only items related to a specific target OCID.
    timeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title string
    The short title for the finding.
    assessment_id str
    The OCID of the assessment that generated this finding.
    details Sequence[str]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    has_target_db_risk_level_changed bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    is_risk_modified bool
    Determines if this risk level was modified by user.
    justification str
    User provided reason for accepting or modifying this finding if they choose to do so.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycle_details str
    Details about the current state of the finding.
    oracle_defined_severity str
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references Sequence[GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaselineReference]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks str
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity str
    The severity of this diff.
    state str
    The current state of the finding.
    summary str
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    target_id str
    A filter to return only items related to a specific target OCID.
    time_updated str
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    time_valid_until str
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title str
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<Property Map>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaselineReference

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

    GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlTarget

    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    severity string
    The severity of this diff.
    targetId string
    A filter to return only items related to a specific target OCID.
    title string
    The short title for the finding.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    severity str
    The severity of this diff.
    target_id str
    A filter to return only items related to a specific target OCID.
    title str
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonDataEncryption

    Baselines List<GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaseline>
    The particular finding reported by the security assessment.
    Targets List<GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionTarget>
    A target-based comparison between two security assessments.
    Baselines []GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaseline
    The particular finding reported by the security assessment.
    Targets []GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionTarget
    A target-based comparison between two security assessments.
    baselines List<GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaseline>
    The particular finding reported by the security assessment.
    targets List<GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionTarget>
    A target-based comparison between two security assessments.
    baselines GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaseline[]
    The particular finding reported by the security assessment.
    targets GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionTarget[]
    A target-based comparison between two security assessments.
    baselines Sequence[GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaseline]
    The particular finding reported by the security assessment.
    targets Sequence[GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionTarget]
    A target-based comparison between two security assessments.
    baselines List<Property Map>
    The particular finding reported by the security assessment.
    targets List<Property Map>
    A target-based comparison between two security assessments.

    GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaseline

    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details List<string>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References List<GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details []string
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References []GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaselineReference
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.
    assessmentId string
    The OCID of the assessment that generated this finding.
    details string[]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified boolean
    Determines if this risk level was modified by user.
    justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails string
    Details about the current state of the finding.
    oracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaselineReference[]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity string
    The severity of this diff.
    state string
    The current state of the finding.
    summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId string
    A filter to return only items related to a specific target OCID.
    timeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title string
    The short title for the finding.
    assessment_id str
    The OCID of the assessment that generated this finding.
    details Sequence[str]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    has_target_db_risk_level_changed bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    is_risk_modified bool
    Determines if this risk level was modified by user.
    justification str
    User provided reason for accepting or modifying this finding if they choose to do so.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycle_details str
    Details about the current state of the finding.
    oracle_defined_severity str
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references Sequence[GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaselineReference]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks str
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity str
    The severity of this diff.
    state str
    The current state of the finding.
    summary str
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    target_id str
    A filter to return only items related to a specific target OCID.
    time_updated str
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    time_valid_until str
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title str
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<Property Map>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaselineReference

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

    GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionTarget

    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    severity string
    The severity of this diff.
    targetId string
    A filter to return only items related to a specific target OCID.
    title string
    The short title for the finding.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    severity str
    The severity of this diff.
    target_id str
    A filter to return only items related to a specific target OCID.
    title str
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonDbConfiguration

    Baselines List<GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaseline>
    The particular finding reported by the security assessment.
    Targets List<GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationTarget>
    A target-based comparison between two security assessments.
    Baselines []GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaseline
    The particular finding reported by the security assessment.
    Targets []GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationTarget
    A target-based comparison between two security assessments.
    baselines List<GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaseline>
    The particular finding reported by the security assessment.
    targets List<GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationTarget>
    A target-based comparison between two security assessments.
    baselines GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaseline[]
    The particular finding reported by the security assessment.
    targets GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationTarget[]
    A target-based comparison between two security assessments.
    baselines Sequence[GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaseline]
    The particular finding reported by the security assessment.
    targets Sequence[GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationTarget]
    A target-based comparison between two security assessments.
    baselines List<Property Map>
    The particular finding reported by the security assessment.
    targets List<Property Map>
    A target-based comparison between two security assessments.

    GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaseline

    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details List<string>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References List<GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details []string
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References []GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaselineReference
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.
    assessmentId string
    The OCID of the assessment that generated this finding.
    details string[]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified boolean
    Determines if this risk level was modified by user.
    justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails string
    Details about the current state of the finding.
    oracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaselineReference[]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity string
    The severity of this diff.
    state string
    The current state of the finding.
    summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId string
    A filter to return only items related to a specific target OCID.
    timeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title string
    The short title for the finding.
    assessment_id str
    The OCID of the assessment that generated this finding.
    details Sequence[str]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    has_target_db_risk_level_changed bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    is_risk_modified bool
    Determines if this risk level was modified by user.
    justification str
    User provided reason for accepting or modifying this finding if they choose to do so.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycle_details str
    Details about the current state of the finding.
    oracle_defined_severity str
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references Sequence[GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaselineReference]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks str
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity str
    The severity of this diff.
    state str
    The current state of the finding.
    summary str
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    target_id str
    A filter to return only items related to a specific target OCID.
    time_updated str
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    time_valid_until str
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title str
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<Property Map>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaselineReference

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

    GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationTarget

    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    severity string
    The severity of this diff.
    targetId string
    A filter to return only items related to a specific target OCID.
    title string
    The short title for the finding.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    severity str
    The severity of this diff.
    target_id str
    A filter to return only items related to a specific target OCID.
    title str
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControl

    Baselines []GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaseline
    The particular finding reported by the security assessment.
    Targets []GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlTarget
    A target-based comparison between two security assessments.
    baselines GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaseline[]
    The particular finding reported by the security assessment.
    targets GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlTarget[]
    A target-based comparison between two security assessments.
    baselines List<Property Map>
    The particular finding reported by the security assessment.
    targets List<Property Map>
    A target-based comparison between two security assessments.

    GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaseline

    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details List<string>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References List<GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details []string
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References []GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaselineReference
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.
    assessmentId string
    The OCID of the assessment that generated this finding.
    details string[]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified boolean
    Determines if this risk level was modified by user.
    justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails string
    Details about the current state of the finding.
    oracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaselineReference[]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity string
    The severity of this diff.
    state string
    The current state of the finding.
    summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId string
    A filter to return only items related to a specific target OCID.
    timeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title string
    The short title for the finding.
    assessment_id str
    The OCID of the assessment that generated this finding.
    details Sequence[str]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    has_target_db_risk_level_changed bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    is_risk_modified bool
    Determines if this risk level was modified by user.
    justification str
    User provided reason for accepting or modifying this finding if they choose to do so.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycle_details str
    Details about the current state of the finding.
    oracle_defined_severity str
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references Sequence[GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaselineReference]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks str
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity str
    The severity of this diff.
    state str
    The current state of the finding.
    summary str
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    target_id str
    A filter to return only items related to a specific target OCID.
    time_updated str
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    time_valid_until str
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title str
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<Property Map>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaselineReference

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

    GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlTarget

    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    severity string
    The severity of this diff.
    targetId string
    A filter to return only items related to a specific target OCID.
    title string
    The short title for the finding.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    severity str
    The severity of this diff.
    target_id str
    A filter to return only items related to a specific target OCID.
    title str
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRole

    Baselines List<GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaseline>
    The particular finding reported by the security assessment.
    Targets List<GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleTarget>
    A target-based comparison between two security assessments.
    Baselines []GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaseline
    The particular finding reported by the security assessment.
    Targets []GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleTarget
    A target-based comparison between two security assessments.
    baselines List<GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaseline>
    The particular finding reported by the security assessment.
    targets List<GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleTarget>
    A target-based comparison between two security assessments.
    baselines GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaseline[]
    The particular finding reported by the security assessment.
    targets GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleTarget[]
    A target-based comparison between two security assessments.
    baselines Sequence[GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaseline]
    The particular finding reported by the security assessment.
    targets Sequence[GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleTarget]
    A target-based comparison between two security assessments.
    baselines List<Property Map>
    The particular finding reported by the security assessment.
    targets List<Property Map>
    A target-based comparison between two security assessments.

    GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaseline

    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details List<string>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References List<GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details []string
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References []GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaselineReference
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.
    assessmentId string
    The OCID of the assessment that generated this finding.
    details string[]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified boolean
    Determines if this risk level was modified by user.
    justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails string
    Details about the current state of the finding.
    oracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaselineReference[]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity string
    The severity of this diff.
    state string
    The current state of the finding.
    summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId string
    A filter to return only items related to a specific target OCID.
    timeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title string
    The short title for the finding.
    assessment_id str
    The OCID of the assessment that generated this finding.
    details Sequence[str]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    has_target_db_risk_level_changed bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    is_risk_modified bool
    Determines if this risk level was modified by user.
    justification str
    User provided reason for accepting or modifying this finding if they choose to do so.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycle_details str
    Details about the current state of the finding.
    oracle_defined_severity str
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references Sequence[GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaselineReference]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks str
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity str
    The severity of this diff.
    state str
    The current state of the finding.
    summary str
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    target_id str
    A filter to return only items related to a specific target OCID.
    time_updated str
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    time_valid_until str
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title str
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<Property Map>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaselineReference

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

    GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleTarget

    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    severity string
    The severity of this diff.
    targetId string
    A filter to return only items related to a specific target OCID.
    title string
    The short title for the finding.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    severity str
    The severity of this diff.
    target_id str
    A filter to return only items related to a specific target OCID.
    title str
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonUserAccount

    Baselines List<GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaseline>
    The particular finding reported by the security assessment.
    Targets List<GetSecurityAssessmentTemplateBaselineComparisonUserAccountTarget>
    A target-based comparison between two security assessments.
    Baselines []GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaseline
    The particular finding reported by the security assessment.
    Targets []GetSecurityAssessmentTemplateBaselineComparisonUserAccountTarget
    A target-based comparison between two security assessments.
    baselines List<GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaseline>
    The particular finding reported by the security assessment.
    targets List<GetSecurityAssessmentTemplateBaselineComparisonUserAccountTarget>
    A target-based comparison between two security assessments.
    baselines GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaseline[]
    The particular finding reported by the security assessment.
    targets GetSecurityAssessmentTemplateBaselineComparisonUserAccountTarget[]
    A target-based comparison between two security assessments.
    baselines Sequence[GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaseline]
    The particular finding reported by the security assessment.
    targets Sequence[GetSecurityAssessmentTemplateBaselineComparisonUserAccountTarget]
    A target-based comparison between two security assessments.
    baselines List<Property Map>
    The particular finding reported by the security assessment.
    targets List<Property Map>
    A target-based comparison between two security assessments.

    GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaseline

    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details List<string>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References List<GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    AssessmentId string
    The OCID of the assessment that generated this finding.
    Details []string
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    HasTargetDbRiskLevelChanged bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    IsRiskModified bool
    Determines if this risk level was modified by user.
    Justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    LifecycleDetails string
    Details about the current state of the finding.
    OracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    References []GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaselineReference
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    Remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    Severity string
    The severity of this diff.
    State string
    The current state of the finding.
    Summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TimeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    TimeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    Title string
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaselineReference>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.
    assessmentId string
    The OCID of the assessment that generated this finding.
    details string[]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified boolean
    Determines if this risk level was modified by user.
    justification string
    User provided reason for accepting or modifying this finding if they choose to do so.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails string
    Details about the current state of the finding.
    oracleDefinedSeverity string
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaselineReference[]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks string
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity string
    The severity of this diff.
    state string
    The current state of the finding.
    summary string
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId string
    A filter to return only items related to a specific target OCID.
    timeUpdated string
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil string
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title string
    The short title for the finding.
    assessment_id str
    The OCID of the assessment that generated this finding.
    details Sequence[str]
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    has_target_db_risk_level_changed bool
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    is_risk_modified bool
    Determines if this risk level was modified by user.
    justification str
    User provided reason for accepting or modifying this finding if they choose to do so.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycle_details str
    Details about the current state of the finding.
    oracle_defined_severity str
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references Sequence[GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaselineReference]
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks str
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity str
    The severity of this diff.
    state str
    The current state of the finding.
    summary str
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    target_id str
    A filter to return only items related to a specific target OCID.
    time_updated str
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    time_valid_until str
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title str
    The short title for the finding.
    assessmentId String
    The OCID of the assessment that generated this finding.
    details List<String>
    The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
    hasTargetDbRiskLevelChanged Boolean
    Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
    isRiskModified Boolean
    Determines if this risk level was modified by user.
    justification String
    User provided reason for accepting or modifying this finding if they choose to do so.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    lifecycleDetails String
    Details about the current state of the finding.
    oracleDefinedSeverity String
    The severity of the finding as determined by security assessment. This cannot be modified by user.
    references List<Property Map>
    Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
    remarks String
    The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
    severity String
    The severity of this diff.
    state String
    The current state of the finding.
    summary String
    The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
    targetId String
    A filter to return only items related to a specific target OCID.
    timeUpdated String
    The date and time the risk level of finding was last updated, in the format defined by RFC3339.
    timeValidUntil String
    The time until which the change in severity(deferred/modified) of this finding is valid.
    title String
    The short title for the finding.

    GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaselineReference

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

    GetSecurityAssessmentTemplateBaselineComparisonUserAccountTarget

    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    Key string
    A unique identifier for the finding. This is common for the finding across targets.
    Severity string
    The severity of this diff.
    TargetId string
    A filter to return only items related to a specific target OCID.
    Title string
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.
    key string
    A unique identifier for the finding. This is common for the finding across targets.
    severity string
    The severity of this diff.
    targetId string
    A filter to return only items related to a specific target OCID.
    title string
    The short title for the finding.
    key str
    A unique identifier for the finding. This is common for the finding across targets.
    severity str
    The severity of this diff.
    target_id str
    A filter to return only items related to a specific target OCID.
    title str
    The short title for the finding.
    key String
    A unique identifier for the finding. This is common for the finding across targets.
    severity String
    The severity of this diff.
    targetId String
    A filter to return only items related to a specific target OCID.
    title String
    The short title for the finding.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi