Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi
oci.DataSafe.getSecurityAssessmentComparison
Explore with Pulumi AI
This data source provides details about a specific Security Assessment 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 testSecurityAssessmentComparison = oci.DataSafe.getSecurityAssessmentComparison({
    comparisonSecurityAssessmentId: testSecurityAssessment.id,
    securityAssessmentId: testSecurityAssessment.id,
});
import pulumi
import pulumi_oci as oci
test_security_assessment_comparison = oci.DataSafe.get_security_assessment_comparison(comparison_security_assessment_id=test_security_assessment["id"],
    security_assessment_id=test_security_assessment["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetSecurityAssessmentComparison(ctx, &datasafe.GetSecurityAssessmentComparisonArgs{
			ComparisonSecurityAssessmentId: testSecurityAssessment.Id,
			SecurityAssessmentId:           testSecurityAssessment.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 testSecurityAssessmentComparison = Oci.DataSafe.GetSecurityAssessmentComparison.Invoke(new()
    {
        ComparisonSecurityAssessmentId = testSecurityAssessment.Id,
        SecurityAssessmentId = testSecurityAssessment.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.GetSecurityAssessmentComparisonArgs;
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 testSecurityAssessmentComparison = DataSafeFunctions.getSecurityAssessmentComparison(GetSecurityAssessmentComparisonArgs.builder()
            .comparisonSecurityAssessmentId(testSecurityAssessment.id())
            .securityAssessmentId(testSecurityAssessment.id())
            .build());
    }
}
variables:
  testSecurityAssessmentComparison:
    fn::invoke:
      function: oci:DataSafe:getSecurityAssessmentComparison
      arguments:
        comparisonSecurityAssessmentId: ${testSecurityAssessment.id}
        securityAssessmentId: ${testSecurityAssessment.id}
Using getSecurityAssessmentComparison
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 getSecurityAssessmentComparison(args: GetSecurityAssessmentComparisonArgs, opts?: InvokeOptions): Promise<GetSecurityAssessmentComparisonResult>
function getSecurityAssessmentComparisonOutput(args: GetSecurityAssessmentComparisonOutputArgs, opts?: InvokeOptions): Output<GetSecurityAssessmentComparisonResult>def get_security_assessment_comparison(comparison_security_assessment_id: Optional[str] = None,
                                       security_assessment_id: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetSecurityAssessmentComparisonResult
def get_security_assessment_comparison_output(comparison_security_assessment_id: Optional[pulumi.Input[str]] = None,
                                       security_assessment_id: Optional[pulumi.Input[str]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetSecurityAssessmentComparisonResult]func GetSecurityAssessmentComparison(ctx *Context, args *GetSecurityAssessmentComparisonArgs, opts ...InvokeOption) (*GetSecurityAssessmentComparisonResult, error)
func GetSecurityAssessmentComparisonOutput(ctx *Context, args *GetSecurityAssessmentComparisonOutputArgs, opts ...InvokeOption) GetSecurityAssessmentComparisonResultOutput> Note: This function is named GetSecurityAssessmentComparison in the Go SDK.
public static class GetSecurityAssessmentComparison 
{
    public static Task<GetSecurityAssessmentComparisonResult> InvokeAsync(GetSecurityAssessmentComparisonArgs args, InvokeOptions? opts = null)
    public static Output<GetSecurityAssessmentComparisonResult> Invoke(GetSecurityAssessmentComparisonInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSecurityAssessmentComparisonResult> getSecurityAssessmentComparison(GetSecurityAssessmentComparisonArgs args, InvokeOptions options)
public static Output<GetSecurityAssessmentComparisonResult> getSecurityAssessmentComparison(GetSecurityAssessmentComparisonArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getSecurityAssessmentComparison:getSecurityAssessmentComparison
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Comparison
Security stringAssessment Id  - The OCID of the security assessment baseline.
 - Security
Assessment stringId  - The OCID of the security assessment.
 
- Comparison
Security stringAssessment Id  - The OCID of the security assessment baseline.
 - Security
Assessment stringId  - The OCID of the security assessment.
 
- comparison
Security StringAssessment Id  - The OCID of the security assessment baseline.
 - security
Assessment StringId  - The OCID of the security assessment.
 
- comparison
Security stringAssessment Id  - The OCID of the security assessment baseline.
 - security
Assessment stringId  - The OCID of the security assessment.
 
- comparison_
security_ strassessment_ id  - The OCID of the security assessment baseline.
 - security_
assessment_ strid  - The OCID of the security assessment.
 
- comparison
Security StringAssessment Id  - The OCID of the security assessment baseline.
 - security
Assessment StringId  - The OCID of the security assessment.
 
getSecurityAssessmentComparison Result
The following output properties are available:
- Baseline
Id string - The OCID of the security assessment that is set as a baseline.
 - Comparison
Security stringAssessment Id  - Id string
 - The provider-assigned unique ID for this managed resource.
 - Security
Assessment stringId  - State string
 - The current state of the finding.
 - Targets
List<Get
Security Assessment Comparison Target>  - A target-based comparison between two security assessments.
 - Time
Created string - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
 
- Baseline
Id string - The OCID of the security assessment that is set as a baseline.
 - Comparison
Security stringAssessment Id  - Id string
 - The provider-assigned unique ID for this managed resource.
 - Security
Assessment stringId  - State string
 - The current state of the finding.
 - Targets
[]Get
Security Assessment Comparison Target  - A target-based comparison between two security assessments.
 - Time
Created string - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
 
- baseline
Id String - The OCID of the security assessment that is set as a baseline.
 - comparison
Security StringAssessment Id  - id String
 - The provider-assigned unique ID for this managed resource.
 - security
Assessment StringId  - state String
 - The current state of the finding.
 - targets
List<Get
Security Assessment Comparison Target>  - A target-based comparison between two security assessments.
 - time
Created String - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
 
- baseline
Id string - The OCID of the security assessment that is set as a baseline.
 - comparison
Security stringAssessment Id  - id string
 - The provider-assigned unique ID for this managed resource.
 - security
Assessment stringId  - state string
 - The current state of the finding.
 - targets
Get
Security Assessment Comparison Target[]  - A target-based comparison between two security assessments.
 - time
Created string - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
 
- baseline_
id str - The OCID of the security assessment that is set as a baseline.
 - comparison_
security_ strassessment_ id  - id str
 - The provider-assigned unique ID for this managed resource.
 - security_
assessment_ strid  - state str
 - The current state of the finding.
 - targets
Sequence[datasafe.
Get Security Assessment Comparison Target]  - A target-based comparison between two security assessments.
 - time_
created str - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
 
- baseline
Id String - The OCID of the security assessment that is set as a baseline.
 - comparison
Security StringAssessment Id  - id String
 - The provider-assigned unique ID for this managed resource.
 - security
Assessment StringId  - state String
 - The current state of the finding.
 - targets List<Property Map>
 - A target-based comparison between two security assessments.
 - time
Created String - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
 
Supporting Types
GetSecurityAssessmentComparisonTarget    
- Auditings
List<Get
Security Assessment Comparison Target Auditing>  - A comparison between findings belonging to Auditing category.
 - 
List<Get
Security Assessment Comparison Target Authorization Control>  - A comparison between findings belonging to Authorization Control category.
 - Baseline
Target stringId  - The OCID of the target that is used as a baseline in this comparison.
 - Current
Target stringId  - The OCID of the target to be compared against the baseline target.
 - Data
Encryptions List<GetSecurity Assessment Comparison Target Data Encryption>  - Comparison between findings belonging to Data Encryption category.
 - Db
Configurations List<GetSecurity Assessment Comparison Target Db Configuration>  - Comparison between findings belonging to Database Configuration category.
 - Fine
Grained List<GetAccess Controls Security Assessment Comparison Target Fine Grained Access Control>  - Comparison between findings belonging to Fine-Grained Access Control category.
 - Privileges
And List<GetRoles Security Assessment Comparison Target Privileges And Role>  - Comparison between findings belonging to Privileges and Roles category.
 - User
Accounts List<GetSecurity Assessment Comparison Target User Account>  - Comparison between findings belonging to User Accounts category.
 
- Auditings
[]Get
Security Assessment Comparison Target Auditing  - A comparison between findings belonging to Auditing category.
 - 
[]Get
Security Assessment Comparison Target Authorization Control  - A comparison between findings belonging to Authorization Control category.
 - Baseline
Target stringId  - The OCID of the target that is used as a baseline in this comparison.
 - Current
Target stringId  - The OCID of the target to be compared against the baseline target.
 - Data
Encryptions []GetSecurity Assessment Comparison Target Data Encryption  - Comparison between findings belonging to Data Encryption category.
 - Db
Configurations []GetSecurity Assessment Comparison Target Db Configuration  - Comparison between findings belonging to Database Configuration category.
 - Fine
Grained []GetAccess Controls Security Assessment Comparison Target Fine Grained Access Control  - Comparison between findings belonging to Fine-Grained Access Control category.
 - Privileges
And []GetRoles Security Assessment Comparison Target Privileges And Role  - Comparison between findings belonging to Privileges and Roles category.
 - User
Accounts []GetSecurity Assessment Comparison Target User Account  - Comparison between findings belonging to User Accounts category.
 
- auditings
List<Get
Security Assessment Comparison Target Auditing>  - A comparison between findings belonging to Auditing category.
 - 
List<Get
Security Assessment Comparison Target Authorization Control>  - A comparison between findings belonging to Authorization Control category.
 - baseline
Target StringId  - The OCID of the target that is used as a baseline in this comparison.
 - current
Target StringId  - The OCID of the target to be compared against the baseline target.
 - data
Encryptions List<GetSecurity Assessment Comparison Target Data Encryption>  - Comparison between findings belonging to Data Encryption category.
 - db
Configurations List<GetSecurity Assessment Comparison Target Db Configuration>  - Comparison between findings belonging to Database Configuration category.
 - fine
Grained List<GetAccess Controls Security Assessment Comparison Target Fine Grained Access Control>  - Comparison between findings belonging to Fine-Grained Access Control category.
 - privileges
And List<GetRoles Security Assessment Comparison Target Privileges And Role>  - Comparison between findings belonging to Privileges and Roles category.
 - user
Accounts List<GetSecurity Assessment Comparison Target User Account>  - Comparison between findings belonging to User Accounts category.
 
- auditings
Get
Security Assessment Comparison Target Auditing[]  - A comparison between findings belonging to Auditing category.
 - 
Get
Security Assessment Comparison Target Authorization Control[]  - A comparison between findings belonging to Authorization Control category.
 - baseline
Target stringId  - The OCID of the target that is used as a baseline in this comparison.
 - current
Target stringId  - The OCID of the target to be compared against the baseline target.
 - data
Encryptions GetSecurity Assessment Comparison Target Data Encryption[]  - Comparison between findings belonging to Data Encryption category.
 - db
Configurations GetSecurity Assessment Comparison Target Db Configuration[]  - Comparison between findings belonging to Database Configuration category.
 - fine
Grained GetAccess Controls Security Assessment Comparison Target Fine Grained Access Control[]  - Comparison between findings belonging to Fine-Grained Access Control category.
 - privileges
And GetRoles Security Assessment Comparison Target Privileges And Role[]  - Comparison between findings belonging to Privileges and Roles category.
 - user
Accounts GetSecurity Assessment Comparison Target User Account[]  - Comparison between findings belonging to User Accounts category.
 
- auditings
Sequence[datasafe.
Get Security Assessment Comparison Target Auditing]  - A comparison between findings belonging to Auditing category.
 - 
Sequence[datasafe.
Get Security Assessment Comparison Target Authorization Control]  - A comparison between findings belonging to Authorization Control category.
 - baseline_
target_ strid  - The OCID of the target that is used as a baseline in this comparison.
 - current_
target_ strid  - The OCID of the target to be compared against the baseline target.
 - data_
encryptions Sequence[datasafe.Get Security Assessment Comparison Target Data Encryption]  - Comparison between findings belonging to Data Encryption category.
 - db_
configurations Sequence[datasafe.Get Security Assessment Comparison Target Db Configuration]  - Comparison between findings belonging to Database Configuration category.
 - fine_
grained_ Sequence[datasafe.access_ controls Get Security Assessment Comparison Target Fine Grained Access Control]  - Comparison between findings belonging to Fine-Grained Access Control category.
 - privileges_
and_ Sequence[datasafe.roles Get Security Assessment Comparison Target Privileges And Role]  - Comparison between findings belonging to Privileges and Roles category.
 - user_
accounts Sequence[datasafe.Get Security Assessment Comparison Target User Account]  - Comparison between findings belonging to User Accounts category.
 
- auditings List<Property Map>
 - A comparison between findings belonging to Auditing category.
 - List<Property Map>
 - A comparison between findings belonging to Authorization Control category.
 - baseline
Target StringId  - The OCID of the target that is used as a baseline in this comparison.
 - current
Target StringId  - The OCID of the target to be compared against the baseline target.
 - data
Encryptions List<Property Map> - Comparison between findings belonging to Data Encryption category.
 - db
Configurations List<Property Map> - Comparison between findings belonging to Database Configuration category.
 - fine
Grained List<Property Map>Access Controls  - Comparison between findings belonging to Fine-Grained Access Control category.
 - privileges
And List<Property Map>Roles  - Comparison between findings belonging to Privileges and Roles category.
 - user
Accounts List<Property Map> - Comparison between findings belonging to User Accounts category.
 
GetSecurityAssessmentComparisonTargetAuditing     
- Added
Items List<string> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
List<Get
Security Assessment Comparison Target Auditing Baseline>  - The particular finding reported by the security assessment.
 - Currents
List<Get
Security Assessment Comparison Target Auditing Current>  - The particular finding reported by the security assessment.
 - Modified
Items List<string> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items List<string> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- Added
Items []string - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
[]Get
Security Assessment Comparison Target Auditing Baseline  - The particular finding reported by the security assessment.
 - Currents
[]Get
Security Assessment Comparison Target Auditing Current  - The particular finding reported by the security assessment.
 - Modified
Items []string - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items []string - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
List<Get
Security Assessment Comparison Target Auditing Baseline>  - The particular finding reported by the security assessment.
 - currents
List<Get
Security Assessment Comparison Target Auditing Current>  - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
- added
Items string[] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Get
Security Assessment Comparison Target Auditing Baseline[]  - The particular finding reported by the security assessment.
 - currents
Get
Security Assessment Comparison Target Auditing Current[]  - The particular finding reported by the security assessment.
 - modified
Items string[] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items string[] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity string
 - The severity of this diff.
 
- added_
items Sequence[str] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Sequence[datasafe.
Get Security Assessment Comparison Target Auditing Baseline]  - The particular finding reported by the security assessment.
 - currents
Sequence[datasafe.
Get Security Assessment Comparison Target Auditing Current]  - The particular finding reported by the security assessment.
 - modified_
items Sequence[str] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed_
items Sequence[str] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity str
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines List<Property Map>
 - The particular finding reported by the security assessment.
 - currents List<Property Map>
 - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
GetSecurityAssessmentComparisonTargetAuditingBaseline      
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Auditing Baseline Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Auditing Baseline Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Auditing Baseline Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Auditing Baseline Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Auditing Baseline Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetAuditingBaselineReference       
GetSecurityAssessmentComparisonTargetAuditingCurrent      
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Auditing Current Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Auditing Current Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Auditing Current Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Auditing Current Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Auditing Current Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetAuditingCurrentReference       
GetSecurityAssessmentComparisonTargetAuthorizationControl      
- Added
Items List<string> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
List<Get
Security Assessment Comparison Target Authorization Control Baseline>  - The particular finding reported by the security assessment.
 - Currents
List<Get
Security Assessment Comparison Target Authorization Control Current>  - The particular finding reported by the security assessment.
 - Modified
Items List<string> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items List<string> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- Added
Items []string - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
[]Get
Security Assessment Comparison Target Authorization Control Baseline  - The particular finding reported by the security assessment.
 - Currents
[]Get
Security Assessment Comparison Target Authorization Control Current  - The particular finding reported by the security assessment.
 - Modified
Items []string - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items []string - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
List<Get
Security Assessment Comparison Target Authorization Control Baseline>  - The particular finding reported by the security assessment.
 - currents
List<Get
Security Assessment Comparison Target Authorization Control Current>  - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
- added
Items string[] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Get
Security Assessment Comparison Target Authorization Control Baseline[]  - The particular finding reported by the security assessment.
 - currents
Get
Security Assessment Comparison Target Authorization Control Current[]  - The particular finding reported by the security assessment.
 - modified
Items string[] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items string[] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity string
 - The severity of this diff.
 
- added_
items Sequence[str] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Sequence[datasafe.
Get Security Assessment Comparison Target Authorization Control Baseline]  - The particular finding reported by the security assessment.
 - currents
Sequence[datasafe.
Get Security Assessment Comparison Target Authorization Control Current]  - The particular finding reported by the security assessment.
 - modified_
items Sequence[str] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed_
items Sequence[str] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity str
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines List<Property Map>
 - The particular finding reported by the security assessment.
 - currents List<Property Map>
 - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
GetSecurityAssessmentComparisonTargetAuthorizationControlBaseline       
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Authorization Control Baseline Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Authorization Control Baseline Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Authorization Control Baseline Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Authorization Control Baseline Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Authorization Control Baseline Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetAuthorizationControlBaselineReference        
GetSecurityAssessmentComparisonTargetAuthorizationControlCurrent       
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Authorization Control Current Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Authorization Control Current Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Authorization Control Current Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Authorization Control Current Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Authorization Control Current Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetAuthorizationControlCurrentReference        
GetSecurityAssessmentComparisonTargetDataEncryption      
- Added
Items List<string> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
List<Get
Security Assessment Comparison Target Data Encryption Baseline>  - The particular finding reported by the security assessment.
 - Currents
List<Get
Security Assessment Comparison Target Data Encryption Current>  - The particular finding reported by the security assessment.
 - Modified
Items List<string> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items List<string> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- Added
Items []string - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
[]Get
Security Assessment Comparison Target Data Encryption Baseline  - The particular finding reported by the security assessment.
 - Currents
[]Get
Security Assessment Comparison Target Data Encryption Current  - The particular finding reported by the security assessment.
 - Modified
Items []string - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items []string - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
List<Get
Security Assessment Comparison Target Data Encryption Baseline>  - The particular finding reported by the security assessment.
 - currents
List<Get
Security Assessment Comparison Target Data Encryption Current>  - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
- added
Items string[] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Get
Security Assessment Comparison Target Data Encryption Baseline[]  - The particular finding reported by the security assessment.
 - currents
Get
Security Assessment Comparison Target Data Encryption Current[]  - The particular finding reported by the security assessment.
 - modified
Items string[] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items string[] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity string
 - The severity of this diff.
 
- added_
items Sequence[str] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Sequence[datasafe.
Get Security Assessment Comparison Target Data Encryption Baseline]  - The particular finding reported by the security assessment.
 - currents
Sequence[datasafe.
Get Security Assessment Comparison Target Data Encryption Current]  - The particular finding reported by the security assessment.
 - modified_
items Sequence[str] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed_
items Sequence[str] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity str
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines List<Property Map>
 - The particular finding reported by the security assessment.
 - currents List<Property Map>
 - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
GetSecurityAssessmentComparisonTargetDataEncryptionBaseline       
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Data Encryption Baseline Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Data Encryption Baseline Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Data Encryption Baseline Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Data Encryption Baseline Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Data Encryption Baseline Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetDataEncryptionBaselineReference        
GetSecurityAssessmentComparisonTargetDataEncryptionCurrent       
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Data Encryption Current Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Data Encryption Current Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Data Encryption Current Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Data Encryption Current Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Data Encryption Current Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetDataEncryptionCurrentReference        
GetSecurityAssessmentComparisonTargetDbConfiguration      
- Added
Items List<string> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
List<Get
Security Assessment Comparison Target Db Configuration Baseline>  - The particular finding reported by the security assessment.
 - Currents
List<Get
Security Assessment Comparison Target Db Configuration Current>  - The particular finding reported by the security assessment.
 - Modified
Items List<string> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items List<string> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- Added
Items []string - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
[]Get
Security Assessment Comparison Target Db Configuration Baseline  - The particular finding reported by the security assessment.
 - Currents
[]Get
Security Assessment Comparison Target Db Configuration Current  - The particular finding reported by the security assessment.
 - Modified
Items []string - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items []string - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
List<Get
Security Assessment Comparison Target Db Configuration Baseline>  - The particular finding reported by the security assessment.
 - currents
List<Get
Security Assessment Comparison Target Db Configuration Current>  - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
- added
Items string[] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Get
Security Assessment Comparison Target Db Configuration Baseline[]  - The particular finding reported by the security assessment.
 - currents
Get
Security Assessment Comparison Target Db Configuration Current[]  - The particular finding reported by the security assessment.
 - modified
Items string[] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items string[] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity string
 - The severity of this diff.
 
- added_
items Sequence[str] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Sequence[datasafe.
Get Security Assessment Comparison Target Db Configuration Baseline]  - The particular finding reported by the security assessment.
 - currents
Sequence[datasafe.
Get Security Assessment Comparison Target Db Configuration Current]  - The particular finding reported by the security assessment.
 - modified_
items Sequence[str] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed_
items Sequence[str] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity str
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines List<Property Map>
 - The particular finding reported by the security assessment.
 - currents List<Property Map>
 - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
GetSecurityAssessmentComparisonTargetDbConfigurationBaseline       
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Db Configuration Baseline Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Db Configuration Baseline Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Db Configuration Baseline Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Db Configuration Baseline Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Db Configuration Baseline Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetDbConfigurationBaselineReference        
GetSecurityAssessmentComparisonTargetDbConfigurationCurrent       
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Db Configuration Current Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Db Configuration Current Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Db Configuration Current Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Db Configuration Current Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Db Configuration Current Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetDbConfigurationCurrentReference        
GetSecurityAssessmentComparisonTargetFineGrainedAccessControl        
- Added
Items List<string> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
List<Get
Security Assessment Comparison Target Fine Grained Access Control Baseline>  - The particular finding reported by the security assessment.
 - Currents
List<Get
Security Assessment Comparison Target Fine Grained Access Control Current>  - The particular finding reported by the security assessment.
 - Modified
Items List<string> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items List<string> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- Added
Items []string - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
[]Get
Security Assessment Comparison Target Fine Grained Access Control Baseline  - The particular finding reported by the security assessment.
 - Currents
[]Get
Security Assessment Comparison Target Fine Grained Access Control Current  - The particular finding reported by the security assessment.
 - Modified
Items []string - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items []string - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
List<Get
Security Assessment Comparison Target Fine Grained Access Control Baseline>  - The particular finding reported by the security assessment.
 - currents
List<Get
Security Assessment Comparison Target Fine Grained Access Control Current>  - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
- added
Items string[] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Get
Security Assessment Comparison Target Fine Grained Access Control Baseline[]  - The particular finding reported by the security assessment.
 - currents
Get
Security Assessment Comparison Target Fine Grained Access Control Current[]  - The particular finding reported by the security assessment.
 - modified
Items string[] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items string[] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity string
 - The severity of this diff.
 
- added_
items Sequence[str] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Sequence[datasafe.
Get Security Assessment Comparison Target Fine Grained Access Control Baseline]  - The particular finding reported by the security assessment.
 - currents
Sequence[datasafe.
Get Security Assessment Comparison Target Fine Grained Access Control Current]  - The particular finding reported by the security assessment.
 - modified_
items Sequence[str] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed_
items Sequence[str] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity str
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines List<Property Map>
 - The particular finding reported by the security assessment.
 - currents List<Property Map>
 - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
GetSecurityAssessmentComparisonTargetFineGrainedAccessControlBaseline         
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Fine Grained Access Control Baseline Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Fine Grained Access Control Baseline Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Fine Grained Access Control Baseline Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Fine Grained Access Control Baseline Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Fine Grained Access Control Baseline Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetFineGrainedAccessControlBaselineReference          
GetSecurityAssessmentComparisonTargetFineGrainedAccessControlCurrent         
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Fine Grained Access Control Current Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Fine Grained Access Control Current Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Fine Grained Access Control Current Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Fine Grained Access Control Current Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Fine Grained Access Control Current Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetFineGrainedAccessControlCurrentReference          
GetSecurityAssessmentComparisonTargetPrivilegesAndRole       
- Added
Items List<string> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
List<Get
Security Assessment Comparison Target Privileges And Role Baseline>  - The particular finding reported by the security assessment.
 - Currents
List<Get
Security Assessment Comparison Target Privileges And Role Current>  - The particular finding reported by the security assessment.
 - Modified
Items List<string> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items List<string> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- Added
Items []string - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
[]Get
Security Assessment Comparison Target Privileges And Role Baseline  - The particular finding reported by the security assessment.
 - Currents
[]Get
Security Assessment Comparison Target Privileges And Role Current  - The particular finding reported by the security assessment.
 - Modified
Items []string - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items []string - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
List<Get
Security Assessment Comparison Target Privileges And Role Baseline>  - The particular finding reported by the security assessment.
 - currents
List<Get
Security Assessment Comparison Target Privileges And Role Current>  - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
- added
Items string[] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Get
Security Assessment Comparison Target Privileges And Role Baseline[]  - The particular finding reported by the security assessment.
 - currents
Get
Security Assessment Comparison Target Privileges And Role Current[]  - The particular finding reported by the security assessment.
 - modified
Items string[] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items string[] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity string
 - The severity of this diff.
 
- added_
items Sequence[str] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Sequence[datasafe.
Get Security Assessment Comparison Target Privileges And Role Baseline]  - The particular finding reported by the security assessment.
 - currents
Sequence[datasafe.
Get Security Assessment Comparison Target Privileges And Role Current]  - The particular finding reported by the security assessment.
 - modified_
items Sequence[str] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed_
items Sequence[str] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity str
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines List<Property Map>
 - The particular finding reported by the security assessment.
 - currents List<Property Map>
 - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
GetSecurityAssessmentComparisonTargetPrivilegesAndRoleBaseline        
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Privileges And Role Baseline Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Privileges And Role Baseline Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Privileges And Role Baseline Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Privileges And Role Baseline Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Privileges And Role Baseline Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetPrivilegesAndRoleBaselineReference         
GetSecurityAssessmentComparisonTargetPrivilegesAndRoleCurrent        
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target Privileges And Role Current Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target Privileges And Role Current Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target Privileges And Role Current Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target Privileges And Role Current Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target Privileges And Role Current Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetPrivilegesAndRoleCurrentReference         
GetSecurityAssessmentComparisonTargetUserAccount      
- Added
Items List<string> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
List<Get
Security Assessment Comparison Target User Account Baseline>  - The particular finding reported by the security assessment.
 - Currents
List<Get
Security Assessment Comparison Target User Account Current>  - The particular finding reported by the security assessment.
 - Modified
Items List<string> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items List<string> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- Added
Items []string - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - Baselines
[]Get
Security Assessment Comparison Target User Account Baseline  - The particular finding reported by the security assessment.
 - Currents
[]Get
Security Assessment Comparison Target User Account Current  - The particular finding reported by the security assessment.
 - Modified
Items []string - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - Removed
Items []string - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - Severity string
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
List<Get
Security Assessment Comparison Target User Account Baseline>  - The particular finding reported by the security assessment.
 - currents
List<Get
Security Assessment Comparison Target User Account Current>  - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
- added
Items string[] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Get
Security Assessment Comparison Target User Account Baseline[]  - The particular finding reported by the security assessment.
 - currents
Get
Security Assessment Comparison Target User Account Current[]  - The particular finding reported by the security assessment.
 - modified
Items string[] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items string[] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity string
 - The severity of this diff.
 
- added_
items Sequence[str] - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines
Sequence[datasafe.
Get Security Assessment Comparison Target User Account Baseline]  - The particular finding reported by the security assessment.
 - currents
Sequence[datasafe.
Get Security Assessment Comparison Target User Account Current]  - The particular finding reported by the security assessment.
 - modified_
items Sequence[str] - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed_
items Sequence[str] - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity str
 - The severity of this diff.
 
- added
Items List<String> - This array identifies the items that are present in the current assessment, but are missing from the baseline.
 - baselines List<Property Map>
 - The particular finding reported by the security assessment.
 - currents List<Property Map>
 - The particular finding reported by the security assessment.
 - modified
Items List<String> - This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
 - removed
Items List<String> - This array identifies the items that are present in the baseline, but are missing from the current assessment.
 - severity String
 - The severity of this diff.
 
GetSecurityAssessmentComparisonTargetUserAccountBaseline       
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target User Account Baseline Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target User Account Baseline Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target User Account Baseline Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target User Account Baseline Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target User Account Baseline Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetUserAccountBaselineReference        
GetSecurityAssessmentComparisonTargetUserAccountCurrent       
- Assessment
Id 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
List<Get
Security Assessment Comparison Target User Account Current Reference>  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - Has
Target boolDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - Is
Risk boolModified  - 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.
 - Lifecycle
Details string - Details about the current state of the finding.
 - Oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - References
[]Get
Security Assessment Comparison Target User Account Current Reference  - 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.
 - Target
Id string - The OCID of the target database.
 - Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - Time
Valid stringUntil  - 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 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
List<Get
Security Assessment Comparison Target User Account Current Reference>  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - 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 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.
 - has
Target booleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk booleanModified  - 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.
 - lifecycle
Details string - Details about the current state of the finding.
 - oracle
Defined stringSeverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Get
Security Assessment Comparison Target User Account Current Reference[]  - 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.
 - target
Id string - The OCID of the target database.
 - time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid stringUntil  - 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_ booldb_ risk_ level_ changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is_
risk_ boolmodified  - 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_ strseverity  - The severity of the finding as determined by security assessment. This cannot be modified by user.
 - references
Sequence[datasafe.
Get Security Assessment Comparison Target User Account Current Reference]  - 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 - The OCID of the target database.
 - time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time_
valid_ struntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title str
 - The short title for the finding.
 
- assessment
Id 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.
 - has
Target BooleanDb Risk Level Changed  - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
 - is
Risk BooleanModified  - 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.
 - lifecycle
Details String - Details about the current state of the finding.
 - oracle
Defined StringSeverity  - 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.
 - target
Id String - The OCID of the target database.
 - time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
 - time
Valid StringUntil  - The time until which the change in severity(deferred/modified) of this finding is valid.
 - title String
 - The short title for the finding.
 
GetSecurityAssessmentComparisonTargetUserAccountCurrentReference        
Package Details
- Repository
 - oci pulumi/pulumi-oci
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
ociTerraform Provider.