Oracle Cloud Infrastructure v2.17.0 published on Friday, Nov 15, 2024 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)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: oci:DataSafe/getSecurityAssessmentComparison:getSecurityAssessmentComparison
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ComparisonSecurity stringAssessment Id 
- The OCID of the security assessment baseline.
- SecurityAssessment stringId 
- The OCID of the security assessment.
- ComparisonSecurity stringAssessment Id 
- The OCID of the security assessment baseline.
- SecurityAssessment stringId 
- The OCID of the security assessment.
- comparisonSecurity StringAssessment Id 
- The OCID of the security assessment baseline.
- securityAssessment StringId 
- The OCID of the security assessment.
- comparisonSecurity stringAssessment Id 
- The OCID of the security assessment baseline.
- securityAssessment 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.
- comparisonSecurity StringAssessment Id 
- The OCID of the security assessment baseline.
- securityAssessment StringId 
- The OCID of the security assessment.
getSecurityAssessmentComparison Result
The following output properties are available:
- BaselineId string
- The OCID of the security assessment that is set as a baseline.
- ComparisonSecurity stringAssessment Id 
- Id string
- The provider-assigned unique ID for this managed resource.
- SecurityAssessment stringId 
- State string
- The current state of the finding.
- Targets
List<GetSecurity Assessment Comparison Target> 
- A target-based comparison between two security assessments.
- TimeCreated string
- The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- BaselineId string
- The OCID of the security assessment that is set as a baseline.
- ComparisonSecurity stringAssessment Id 
- Id string
- The provider-assigned unique ID for this managed resource.
- SecurityAssessment stringId 
- State string
- The current state of the finding.
- Targets
[]GetSecurity Assessment Comparison Target 
- A target-based comparison between two security assessments.
- TimeCreated string
- The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- baselineId String
- The OCID of the security assessment that is set as a baseline.
- comparisonSecurity StringAssessment Id 
- id String
- The provider-assigned unique ID for this managed resource.
- securityAssessment StringId 
- state String
- The current state of the finding.
- targets
List<GetSecurity Assessment Comparison Target> 
- A target-based comparison between two security assessments.
- timeCreated String
- The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- baselineId string
- The OCID of the security assessment that is set as a baseline.
- comparisonSecurity stringAssessment Id 
- id string
- The provider-assigned unique ID for this managed resource.
- securityAssessment stringId 
- state string
- The current state of the finding.
- targets
GetSecurity Assessment Comparison Target[] 
- A target-based comparison between two security assessments.
- timeCreated 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.
- baselineId String
- The OCID of the security assessment that is set as a baseline.
- comparisonSecurity StringAssessment Id 
- id String
- The provider-assigned unique ID for this managed resource.
- securityAssessment StringId 
- state String
- The current state of the finding.
- targets List<Property Map>
- A target-based comparison between two security assessments.
- timeCreated String
- The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
Supporting Types
GetSecurityAssessmentComparisonTarget    
- Auditings
List<GetSecurity Assessment Comparison Target Auditing> 
- A comparison between findings belonging to Auditing category.
- 
List<GetSecurity Assessment Comparison Target Authorization Control> 
- A comparison between findings belonging to Authorization Control category.
- BaselineTarget stringId 
- The OCID of the target that is used as a baseline in this comparison.
- CurrentTarget stringId 
- The OCID of the target to be compared against the baseline target.
- DataEncryptions List<GetSecurity Assessment Comparison Target Data Encryption> 
- Comparison between findings belonging to Data Encryption category.
- DbConfigurations List<GetSecurity Assessment Comparison Target Db Configuration> 
- Comparison between findings belonging to Database Configuration category.
- FineGrained List<GetAccess Controls Security Assessment Comparison Target Fine Grained Access Control> 
- Comparison between findings belonging to Fine-Grained Access Control category.
- PrivilegesAnd List<GetRoles Security Assessment Comparison Target Privileges And Role> 
- Comparison between findings belonging to Privileges and Roles category.
- UserAccounts List<GetSecurity Assessment Comparison Target User Account> 
- Comparison between findings belonging to User Accounts category.
- Auditings
[]GetSecurity Assessment Comparison Target Auditing 
- A comparison between findings belonging to Auditing category.
- 
[]GetSecurity Assessment Comparison Target Authorization Control 
- A comparison between findings belonging to Authorization Control category.
- BaselineTarget stringId 
- The OCID of the target that is used as a baseline in this comparison.
- CurrentTarget stringId 
- The OCID of the target to be compared against the baseline target.
- DataEncryptions []GetSecurity Assessment Comparison Target Data Encryption 
- Comparison between findings belonging to Data Encryption category.
- DbConfigurations []GetSecurity Assessment Comparison Target Db Configuration 
- Comparison between findings belonging to Database Configuration category.
- FineGrained []GetAccess Controls Security Assessment Comparison Target Fine Grained Access Control 
- Comparison between findings belonging to Fine-Grained Access Control category.
- PrivilegesAnd []GetRoles Security Assessment Comparison Target Privileges And Role 
- Comparison between findings belonging to Privileges and Roles category.
- UserAccounts []GetSecurity Assessment Comparison Target User Account 
- Comparison between findings belonging to User Accounts category.
- auditings
List<GetSecurity Assessment Comparison Target Auditing> 
- A comparison between findings belonging to Auditing category.
- 
List<GetSecurity Assessment Comparison Target Authorization Control> 
- A comparison between findings belonging to Authorization Control category.
- baselineTarget StringId 
- The OCID of the target that is used as a baseline in this comparison.
- currentTarget StringId 
- The OCID of the target to be compared against the baseline target.
- dataEncryptions List<GetSecurity Assessment Comparison Target Data Encryption> 
- Comparison between findings belonging to Data Encryption category.
- dbConfigurations List<GetSecurity Assessment Comparison Target Db Configuration> 
- Comparison between findings belonging to Database Configuration category.
- fineGrained List<GetAccess Controls Security Assessment Comparison Target Fine Grained Access Control> 
- Comparison between findings belonging to Fine-Grained Access Control category.
- privilegesAnd List<GetRoles Security Assessment Comparison Target Privileges And Role> 
- Comparison between findings belonging to Privileges and Roles category.
- userAccounts List<GetSecurity Assessment Comparison Target User Account> 
- Comparison between findings belonging to User Accounts category.
- auditings
GetSecurity Assessment Comparison Target Auditing[] 
- A comparison between findings belonging to Auditing category.
- 
GetSecurity Assessment Comparison Target Authorization Control[] 
- A comparison between findings belonging to Authorization Control category.
- baselineTarget stringId 
- The OCID of the target that is used as a baseline in this comparison.
- currentTarget stringId 
- The OCID of the target to be compared against the baseline target.
- dataEncryptions GetSecurity Assessment Comparison Target Data Encryption[] 
- Comparison between findings belonging to Data Encryption category.
- dbConfigurations GetSecurity Assessment Comparison Target Db Configuration[] 
- Comparison between findings belonging to Database Configuration category.
- fineGrained GetAccess Controls Security Assessment Comparison Target Fine Grained Access Control[] 
- Comparison between findings belonging to Fine-Grained Access Control category.
- privilegesAnd GetRoles Security Assessment Comparison Target Privileges And Role[] 
- Comparison between findings belonging to Privileges and Roles category.
- userAccounts 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.
- baselineTarget StringId 
- The OCID of the target that is used as a baseline in this comparison.
- currentTarget StringId 
- The OCID of the target to be compared against the baseline target.
- dataEncryptions List<Property Map>
- Comparison between findings belonging to Data Encryption category.
- dbConfigurations List<Property Map>
- Comparison between findings belonging to Database Configuration category.
- fineGrained List<Property Map>Access Controls 
- Comparison between findings belonging to Fine-Grained Access Control category.
- privilegesAnd List<Property Map>Roles 
- Comparison between findings belonging to Privileges and Roles category.
- userAccounts List<Property Map>
- Comparison between findings belonging to User Accounts category.
GetSecurityAssessmentComparisonTargetAuditing     
- AddedItems List<string>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
List<GetSecurity Assessment Comparison Target Auditing Baseline> 
- The particular finding reported by the security assessment.
- Currents
List<GetSecurity Assessment Comparison Target Auditing Current> 
- The particular finding reported by the security assessment.
- ModifiedItems 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.
- RemovedItems 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.
- AddedItems []string
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
[]GetSecurity Assessment Comparison Target Auditing Baseline 
- The particular finding reported by the security assessment.
- Currents
[]GetSecurity Assessment Comparison Target Auditing Current 
- The particular finding reported by the security assessment.
- ModifiedItems []string
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- RemovedItems []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.
- addedItems List<String>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
List<GetSecurity Assessment Comparison Target Auditing Baseline> 
- The particular finding reported by the security assessment.
- currents
List<GetSecurity Assessment Comparison Target Auditing Current> 
- The particular finding reported by the security assessment.
- modifiedItems 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.
- removedItems 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.
- addedItems string[]
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
GetSecurity Assessment Comparison Target Auditing Baseline[] 
- The particular finding reported by the security assessment.
- currents
GetSecurity Assessment Comparison Target Auditing Current[] 
- The particular finding reported by the security assessment.
- modifiedItems string[]
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- removedItems 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.
- addedItems 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.
- modifiedItems 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.
- removedItems 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      
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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      
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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      
- AddedItems List<string>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
List<GetSecurity Assessment Comparison Target Authorization Control Baseline> 
- The particular finding reported by the security assessment.
- Currents
List<GetSecurity Assessment Comparison Target Authorization Control Current> 
- The particular finding reported by the security assessment.
- ModifiedItems 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.
- RemovedItems 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.
- AddedItems []string
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
[]GetSecurity Assessment Comparison Target Authorization Control Baseline 
- The particular finding reported by the security assessment.
- Currents
[]GetSecurity Assessment Comparison Target Authorization Control Current 
- The particular finding reported by the security assessment.
- ModifiedItems []string
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- RemovedItems []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.
- addedItems List<String>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
List<GetSecurity Assessment Comparison Target Authorization Control Baseline> 
- The particular finding reported by the security assessment.
- currents
List<GetSecurity Assessment Comparison Target Authorization Control Current> 
- The particular finding reported by the security assessment.
- modifiedItems 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.
- removedItems 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.
- addedItems string[]
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
GetSecurity Assessment Comparison Target Authorization Control Baseline[] 
- The particular finding reported by the security assessment.
- currents
GetSecurity Assessment Comparison Target Authorization Control Current[] 
- The particular finding reported by the security assessment.
- modifiedItems string[]
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- removedItems 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.
- addedItems 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.
- modifiedItems 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.
- removedItems 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       
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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       
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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      
- AddedItems List<string>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
List<GetSecurity Assessment Comparison Target Data Encryption Baseline> 
- The particular finding reported by the security assessment.
- Currents
List<GetSecurity Assessment Comparison Target Data Encryption Current> 
- The particular finding reported by the security assessment.
- ModifiedItems 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.
- RemovedItems 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.
- AddedItems []string
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
[]GetSecurity Assessment Comparison Target Data Encryption Baseline 
- The particular finding reported by the security assessment.
- Currents
[]GetSecurity Assessment Comparison Target Data Encryption Current 
- The particular finding reported by the security assessment.
- ModifiedItems []string
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- RemovedItems []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.
- addedItems List<String>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
List<GetSecurity Assessment Comparison Target Data Encryption Baseline> 
- The particular finding reported by the security assessment.
- currents
List<GetSecurity Assessment Comparison Target Data Encryption Current> 
- The particular finding reported by the security assessment.
- modifiedItems 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.
- removedItems 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.
- addedItems string[]
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
GetSecurity Assessment Comparison Target Data Encryption Baseline[] 
- The particular finding reported by the security assessment.
- currents
GetSecurity Assessment Comparison Target Data Encryption Current[] 
- The particular finding reported by the security assessment.
- modifiedItems string[]
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- removedItems 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.
- addedItems 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.
- modifiedItems 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.
- removedItems 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       
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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       
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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      
- AddedItems List<string>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
List<GetSecurity Assessment Comparison Target Db Configuration Baseline> 
- The particular finding reported by the security assessment.
- Currents
List<GetSecurity Assessment Comparison Target Db Configuration Current> 
- The particular finding reported by the security assessment.
- ModifiedItems 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.
- RemovedItems 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.
- AddedItems []string
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
[]GetSecurity Assessment Comparison Target Db Configuration Baseline 
- The particular finding reported by the security assessment.
- Currents
[]GetSecurity Assessment Comparison Target Db Configuration Current 
- The particular finding reported by the security assessment.
- ModifiedItems []string
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- RemovedItems []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.
- addedItems List<String>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
List<GetSecurity Assessment Comparison Target Db Configuration Baseline> 
- The particular finding reported by the security assessment.
- currents
List<GetSecurity Assessment Comparison Target Db Configuration Current> 
- The particular finding reported by the security assessment.
- modifiedItems 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.
- removedItems 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.
- addedItems string[]
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
GetSecurity Assessment Comparison Target Db Configuration Baseline[] 
- The particular finding reported by the security assessment.
- currents
GetSecurity Assessment Comparison Target Db Configuration Current[] 
- The particular finding reported by the security assessment.
- modifiedItems string[]
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- removedItems 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.
- addedItems 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.
- modifiedItems 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.
- removedItems 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       
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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       
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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        
- AddedItems List<string>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
List<GetSecurity Assessment Comparison Target Fine Grained Access Control Baseline> 
- The particular finding reported by the security assessment.
- Currents
List<GetSecurity Assessment Comparison Target Fine Grained Access Control Current> 
- The particular finding reported by the security assessment.
- ModifiedItems 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.
- RemovedItems 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.
- AddedItems []string
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
[]GetSecurity Assessment Comparison Target Fine Grained Access Control Baseline 
- The particular finding reported by the security assessment.
- Currents
[]GetSecurity Assessment Comparison Target Fine Grained Access Control Current 
- The particular finding reported by the security assessment.
- ModifiedItems []string
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- RemovedItems []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.
- addedItems List<String>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
List<GetSecurity Assessment Comparison Target Fine Grained Access Control Baseline> 
- The particular finding reported by the security assessment.
- currents
List<GetSecurity Assessment Comparison Target Fine Grained Access Control Current> 
- The particular finding reported by the security assessment.
- modifiedItems 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.
- removedItems 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.
- addedItems string[]
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
GetSecurity Assessment Comparison Target Fine Grained Access Control Baseline[] 
- The particular finding reported by the security assessment.
- currents
GetSecurity Assessment Comparison Target Fine Grained Access Control Current[] 
- The particular finding reported by the security assessment.
- modifiedItems string[]
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- removedItems 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.
- addedItems 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.
- modifiedItems 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.
- removedItems 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         
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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         
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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       
- AddedItems List<string>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
List<GetSecurity Assessment Comparison Target Privileges And Role Baseline> 
- The particular finding reported by the security assessment.
- Currents
List<GetSecurity Assessment Comparison Target Privileges And Role Current> 
- The particular finding reported by the security assessment.
- ModifiedItems 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.
- RemovedItems 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.
- AddedItems []string
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
[]GetSecurity Assessment Comparison Target Privileges And Role Baseline 
- The particular finding reported by the security assessment.
- Currents
[]GetSecurity Assessment Comparison Target Privileges And Role Current 
- The particular finding reported by the security assessment.
- ModifiedItems []string
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- RemovedItems []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.
- addedItems List<String>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
List<GetSecurity Assessment Comparison Target Privileges And Role Baseline> 
- The particular finding reported by the security assessment.
- currents
List<GetSecurity Assessment Comparison Target Privileges And Role Current> 
- The particular finding reported by the security assessment.
- modifiedItems 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.
- removedItems 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.
- addedItems string[]
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
GetSecurity Assessment Comparison Target Privileges And Role Baseline[] 
- The particular finding reported by the security assessment.
- currents
GetSecurity Assessment Comparison Target Privileges And Role Current[] 
- The particular finding reported by the security assessment.
- modifiedItems string[]
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- removedItems 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.
- addedItems 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.
- modifiedItems 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.
- removedItems 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        
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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        
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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      
- AddedItems List<string>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
List<GetSecurity Assessment Comparison Target User Account Baseline> 
- The particular finding reported by the security assessment.
- Currents
List<GetSecurity Assessment Comparison Target User Account Current> 
- The particular finding reported by the security assessment.
- ModifiedItems 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.
- RemovedItems 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.
- AddedItems []string
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- Baselines
[]GetSecurity Assessment Comparison Target User Account Baseline 
- The particular finding reported by the security assessment.
- Currents
[]GetSecurity Assessment Comparison Target User Account Current 
- The particular finding reported by the security assessment.
- ModifiedItems []string
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- RemovedItems []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.
- addedItems List<String>
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
List<GetSecurity Assessment Comparison Target User Account Baseline> 
- The particular finding reported by the security assessment.
- currents
List<GetSecurity Assessment Comparison Target User Account Current> 
- The particular finding reported by the security assessment.
- modifiedItems 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.
- removedItems 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.
- addedItems string[]
- This array identifies the items that are present in the current assessment, but are missing from the baseline.
- baselines
GetSecurity Assessment Comparison Target User Account Baseline[] 
- The particular finding reported by the security assessment.
- currents
GetSecurity Assessment Comparison Target User Account Current[] 
- The particular finding reported by the security assessment.
- modifiedItems string[]
- This array contains the items that are present in both the current assessment and the baseline, but are different in the two assessments.
- removedItems 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.
- addedItems 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.
- modifiedItems 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.
- removedItems 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       
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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       
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- AssessmentId string
- The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- HasTarget boolDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- IsRisk 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.
- LifecycleDetails string
- Details about the current state of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]GetSecurity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<GetSecurity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessmentId string
- The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget booleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails string
- Details about the current state of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
GetSecurity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.
- assessmentId String
- The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- hasTarget BooleanDb Risk Level Changed 
- Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- isRisk 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.
- lifecycleDetails String
- Details about the current state of the finding.
- oracleDefined 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid 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.