Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi
oci.DataSafe.getSecurityAssessmentTemplateBaselineComparison
Explore with Pulumi AI
This data source provides details about a specific Security Assessment Template Baseline Comparison resource in Oracle Cloud Infrastructure Data Safe service.
Gets the details of the comparison report for the security assessments submitted for comparison.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSecurityAssessmentTemplateBaselineComparison = oci.DataSafe.getSecurityAssessmentTemplateBaselineComparison({
comparisonSecurityAssessmentId: testSecurityAssessment.id,
securityAssessmentId: testSecurityAssessment.id,
category: securityAssessmentTemplateBaselineComparisonCategory,
findingKey: securityAssessmentTemplateBaselineComparisonFindingKey,
targetId: testTarget.id,
});
import pulumi
import pulumi_oci as oci
test_security_assessment_template_baseline_comparison = oci.DataSafe.get_security_assessment_template_baseline_comparison(comparison_security_assessment_id=test_security_assessment["id"],
security_assessment_id=test_security_assessment["id"],
category=security_assessment_template_baseline_comparison_category,
finding_key=security_assessment_template_baseline_comparison_finding_key,
target_id=test_target["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/datasafe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datasafe.GetSecurityAssessmentTemplateBaselineComparison(ctx, &datasafe.GetSecurityAssessmentTemplateBaselineComparisonArgs{
ComparisonSecurityAssessmentId: testSecurityAssessment.Id,
SecurityAssessmentId: testSecurityAssessment.Id,
Category: pulumi.StringRef(securityAssessmentTemplateBaselineComparisonCategory),
FindingKey: pulumi.StringRef(securityAssessmentTemplateBaselineComparisonFindingKey),
TargetId: pulumi.StringRef(testTarget.Id),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testSecurityAssessmentTemplateBaselineComparison = Oci.DataSafe.GetSecurityAssessmentTemplateBaselineComparison.Invoke(new()
{
ComparisonSecurityAssessmentId = testSecurityAssessment.Id,
SecurityAssessmentId = testSecurityAssessment.Id,
Category = securityAssessmentTemplateBaselineComparisonCategory,
FindingKey = securityAssessmentTemplateBaselineComparisonFindingKey,
TargetId = testTarget.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetSecurityAssessmentTemplateBaselineComparisonArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testSecurityAssessmentTemplateBaselineComparison = DataSafeFunctions.getSecurityAssessmentTemplateBaselineComparison(GetSecurityAssessmentTemplateBaselineComparisonArgs.builder()
.comparisonSecurityAssessmentId(testSecurityAssessment.id())
.securityAssessmentId(testSecurityAssessment.id())
.category(securityAssessmentTemplateBaselineComparisonCategory)
.findingKey(securityAssessmentTemplateBaselineComparisonFindingKey)
.targetId(testTarget.id())
.build());
}
}
variables:
testSecurityAssessmentTemplateBaselineComparison:
fn::invoke:
function: oci:DataSafe:getSecurityAssessmentTemplateBaselineComparison
arguments:
comparisonSecurityAssessmentId: ${testSecurityAssessment.id}
securityAssessmentId: ${testSecurityAssessment.id}
category: ${securityAssessmentTemplateBaselineComparisonCategory}
findingKey: ${securityAssessmentTemplateBaselineComparisonFindingKey}
targetId: ${testTarget.id}
Using getSecurityAssessmentTemplateBaselineComparison
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSecurityAssessmentTemplateBaselineComparison(args: GetSecurityAssessmentTemplateBaselineComparisonArgs, opts?: InvokeOptions): Promise<GetSecurityAssessmentTemplateBaselineComparisonResult>
function getSecurityAssessmentTemplateBaselineComparisonOutput(args: GetSecurityAssessmentTemplateBaselineComparisonOutputArgs, opts?: InvokeOptions): Output<GetSecurityAssessmentTemplateBaselineComparisonResult>
def get_security_assessment_template_baseline_comparison(category: Optional[str] = None,
comparison_security_assessment_id: Optional[str] = None,
finding_key: Optional[str] = None,
security_assessment_id: Optional[str] = None,
target_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSecurityAssessmentTemplateBaselineComparisonResult
def get_security_assessment_template_baseline_comparison_output(category: Optional[pulumi.Input[str]] = None,
comparison_security_assessment_id: Optional[pulumi.Input[str]] = None,
finding_key: Optional[pulumi.Input[str]] = None,
security_assessment_id: Optional[pulumi.Input[str]] = None,
target_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSecurityAssessmentTemplateBaselineComparisonResult]
func GetSecurityAssessmentTemplateBaselineComparison(ctx *Context, args *GetSecurityAssessmentTemplateBaselineComparisonArgs, opts ...InvokeOption) (*GetSecurityAssessmentTemplateBaselineComparisonResult, error)
func GetSecurityAssessmentTemplateBaselineComparisonOutput(ctx *Context, args *GetSecurityAssessmentTemplateBaselineComparisonOutputArgs, opts ...InvokeOption) GetSecurityAssessmentTemplateBaselineComparisonResultOutput
> Note: This function is named GetSecurityAssessmentTemplateBaselineComparison
in the Go SDK.
public static class GetSecurityAssessmentTemplateBaselineComparison
{
public static Task<GetSecurityAssessmentTemplateBaselineComparisonResult> InvokeAsync(GetSecurityAssessmentTemplateBaselineComparisonArgs args, InvokeOptions? opts = null)
public static Output<GetSecurityAssessmentTemplateBaselineComparisonResult> Invoke(GetSecurityAssessmentTemplateBaselineComparisonInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSecurityAssessmentTemplateBaselineComparisonResult> getSecurityAssessmentTemplateBaselineComparison(GetSecurityAssessmentTemplateBaselineComparisonArgs args, InvokeOptions options)
public static Output<GetSecurityAssessmentTemplateBaselineComparisonResult> getSecurityAssessmentTemplateBaselineComparison(GetSecurityAssessmentTemplateBaselineComparisonArgs args, InvokeOptions options)
fn::invoke:
function: oci:DataSafe/getSecurityAssessmentTemplateBaselineComparison:getSecurityAssessmentTemplateBaselineComparison
arguments:
# arguments dictionary
The following arguments are supported:
- Comparison
Security stringAssessment Id - The OCID of the security assessment baseline.
- Security
Assessment stringId - The OCID of the security assessment.
- Category string
- The category of the finding.
- Finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Comparison
Security stringAssessment Id - The OCID of the security assessment baseline.
- Security
Assessment stringId - The OCID of the security assessment.
- Category string
- The category of the finding.
- Finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- Target
Id string - A filter to return only items related to a specific target OCID.
- comparison
Security StringAssessment Id - The OCID of the security assessment baseline.
- security
Assessment StringId - The OCID of the security assessment.
- category String
- The category of the finding.
- finding
Key String - The unique key that identifies the finding. It is a string and unique within a security assessment.
- target
Id String - A filter to return only items related to a specific target OCID.
- comparison
Security stringAssessment Id - The OCID of the security assessment baseline.
- security
Assessment stringId - The OCID of the security assessment.
- category string
- The category of the finding.
- finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- target
Id string - A filter to return only items related to a specific target OCID.
- comparison_
security_ strassessment_ id - The OCID of the security assessment baseline.
- security_
assessment_ strid - The OCID of the security assessment.
- category str
- The category of the finding.
- finding_
key str - The unique key that identifies the finding. It is a string and unique within a security assessment.
- target_
id str - A filter to return only items related to a specific target OCID.
- comparison
Security StringAssessment Id - The OCID of the security assessment baseline.
- security
Assessment StringId - The OCID of the security assessment.
- category String
- The category of the finding.
- finding
Key String - The unique key that identifies the finding. It is a string and unique within a security assessment.
- target
Id String - A filter to return only items related to a specific target OCID.
getSecurityAssessmentTemplateBaselineComparison Result
The following output properties are available:
- Auditings
List<Get
Security Assessment Template Baseline Comparison Auditing> - A comparison between findings belonging to Auditing category.
- List<Get
Security Assessment Template Baseline Comparison Authorization Control> - A comparison between findings belonging to Authorization Control category.
- Comparison
Security stringAssessment Id - Data
Encryptions List<GetSecurity Assessment Template Baseline Comparison Data Encryption> - Comparison between findings belonging to Data Encryption category.
- Db
Configurations List<GetSecurity Assessment Template Baseline Comparison Db Configuration> - Comparison between findings belonging to Database Configuration category.
- Fine
Grained List<GetAccess Controls Security Assessment Template Baseline Comparison Fine Grained Access Control> - Comparison between findings belonging to Fine-Grained Access Control category.
- Id string
- The provider-assigned unique ID for this managed resource.
- Privileges
And List<GetRoles Security Assessment Template Baseline Comparison Privileges And Role> - Comparison between findings belonging to Privileges and Roles category.
- Security
Assessment stringId - State string
- The current state of the finding.
- Template
Baseline stringId - The OCID of the security assessment that is set as a template baseline.
- Template
Baseline stringName - The display name of the security assessment that is set as a template baseline.
- Time
Created string - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- User
Accounts List<GetSecurity Assessment Template Baseline Comparison User Account> - Comparison between findings belonging to User Accounts category.
- Category string
- Finding
Key string - Target
Id string - The OCID of the target database.
- Auditings
[]Get
Security Assessment Template Baseline Comparison Auditing - A comparison between findings belonging to Auditing category.
- []Get
Security Assessment Template Baseline Comparison Authorization Control - A comparison between findings belonging to Authorization Control category.
- Comparison
Security stringAssessment Id - Data
Encryptions []GetSecurity Assessment Template Baseline Comparison Data Encryption - Comparison between findings belonging to Data Encryption category.
- Db
Configurations []GetSecurity Assessment Template Baseline Comparison Db Configuration - Comparison between findings belonging to Database Configuration category.
- Fine
Grained []GetAccess Controls Security Assessment Template Baseline Comparison Fine Grained Access Control - Comparison between findings belonging to Fine-Grained Access Control category.
- Id string
- The provider-assigned unique ID for this managed resource.
- Privileges
And []GetRoles Security Assessment Template Baseline Comparison Privileges And Role - Comparison between findings belonging to Privileges and Roles category.
- Security
Assessment stringId - State string
- The current state of the finding.
- Template
Baseline stringId - The OCID of the security assessment that is set as a template baseline.
- Template
Baseline stringName - The display name of the security assessment that is set as a template baseline.
- Time
Created string - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- User
Accounts []GetSecurity Assessment Template Baseline Comparison User Account - Comparison between findings belonging to User Accounts category.
- Category string
- Finding
Key string - Target
Id string - The OCID of the target database.
- auditings
List<Get
Security Assessment Template Baseline Comparison Auditing> - A comparison between findings belonging to Auditing category.
- List<Get
Security Assessment Template Baseline Comparison Authorization Control> - A comparison between findings belonging to Authorization Control category.
- comparison
Security StringAssessment Id - data
Encryptions List<GetSecurity Assessment Template Baseline Comparison Data Encryption> - Comparison between findings belonging to Data Encryption category.
- db
Configurations List<GetSecurity Assessment Template Baseline Comparison Db Configuration> - Comparison between findings belonging to Database Configuration category.
- fine
Grained List<GetAccess Controls Security Assessment Template Baseline Comparison Fine Grained Access Control> - Comparison between findings belonging to Fine-Grained Access Control category.
- id String
- The provider-assigned unique ID for this managed resource.
- privileges
And List<GetRoles Security Assessment Template Baseline Comparison Privileges And Role> - Comparison between findings belonging to Privileges and Roles category.
- security
Assessment StringId - state String
- The current state of the finding.
- template
Baseline StringId - The OCID of the security assessment that is set as a template baseline.
- template
Baseline StringName - The display name of the security assessment that is set as a template baseline.
- time
Created String - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- user
Accounts List<GetSecurity Assessment Template Baseline Comparison User Account> - Comparison between findings belonging to User Accounts category.
- category String
- finding
Key String - target
Id String - The OCID of the target database.
- auditings
Get
Security Assessment Template Baseline Comparison Auditing[] - A comparison between findings belonging to Auditing category.
- Get
Security Assessment Template Baseline Comparison Authorization Control[] - A comparison between findings belonging to Authorization Control category.
- comparison
Security stringAssessment Id - data
Encryptions GetSecurity Assessment Template Baseline Comparison Data Encryption[] - Comparison between findings belonging to Data Encryption category.
- db
Configurations GetSecurity Assessment Template Baseline Comparison Db Configuration[] - Comparison between findings belonging to Database Configuration category.
- fine
Grained GetAccess Controls Security Assessment Template Baseline Comparison Fine Grained Access Control[] - Comparison between findings belonging to Fine-Grained Access Control category.
- id string
- The provider-assigned unique ID for this managed resource.
- privileges
And GetRoles Security Assessment Template Baseline Comparison Privileges And Role[] - Comparison between findings belonging to Privileges and Roles category.
- security
Assessment stringId - state string
- The current state of the finding.
- template
Baseline stringId - The OCID of the security assessment that is set as a template baseline.
- template
Baseline stringName - The display name of the security assessment that is set as a template baseline.
- time
Created string - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- user
Accounts GetSecurity Assessment Template Baseline Comparison User Account[] - Comparison between findings belonging to User Accounts category.
- category string
- finding
Key string - target
Id string - The OCID of the target database.
- auditings
Sequence[Get
Security Assessment Template Baseline Comparison Auditing] - A comparison between findings belonging to Auditing category.
- Sequence[Get
Security Assessment Template Baseline Comparison Authorization Control] - A comparison between findings belonging to Authorization Control category.
- comparison_
security_ strassessment_ id - data_
encryptions Sequence[GetSecurity Assessment Template Baseline Comparison Data Encryption] - Comparison between findings belonging to Data Encryption category.
- db_
configurations Sequence[GetSecurity Assessment Template Baseline Comparison Db Configuration] - Comparison between findings belonging to Database Configuration category.
- fine_
grained_ Sequence[Getaccess_ controls Security Assessment Template Baseline Comparison Fine Grained Access Control] - Comparison between findings belonging to Fine-Grained Access Control category.
- id str
- The provider-assigned unique ID for this managed resource.
- privileges_
and_ Sequence[Getroles Security Assessment Template Baseline Comparison Privileges And Role] - Comparison between findings belonging to Privileges and Roles category.
- security_
assessment_ strid - state str
- The current state of the finding.
- template_
baseline_ strid - The OCID of the security assessment that is set as a template baseline.
- template_
baseline_ strname - The display name of the security assessment that is set as a template baseline.
- time_
created str - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- user_
accounts Sequence[GetSecurity Assessment Template Baseline Comparison User Account] - Comparison between findings belonging to User Accounts category.
- category str
- finding_
key str - target_
id str - The OCID of the target database.
- auditings List<Property Map>
- A comparison between findings belonging to Auditing category.
- List<Property Map>
- A comparison between findings belonging to Authorization Control category.
- comparison
Security StringAssessment Id - data
Encryptions List<Property Map> - Comparison between findings belonging to Data Encryption category.
- db
Configurations List<Property Map> - Comparison between findings belonging to Database Configuration category.
- fine
Grained List<Property Map>Access Controls - Comparison between findings belonging to Fine-Grained Access Control category.
- id String
- The provider-assigned unique ID for this managed resource.
- privileges
And List<Property Map>Roles - Comparison between findings belonging to Privileges and Roles category.
- security
Assessment StringId - state String
- The current state of the finding.
- template
Baseline StringId - The OCID of the security assessment that is set as a template baseline.
- template
Baseline StringName - The display name of the security assessment that is set as a template baseline.
- time
Created String - The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.
- user
Accounts List<Property Map> - Comparison between findings belonging to User Accounts category.
- category String
- finding
Key String - target
Id String - The OCID of the target database.
Supporting Types
GetSecurityAssessmentTemplateBaselineComparisonAuditing
- Baselines
List<Get
Security Assessment Template Baseline Comparison Auditing Baseline> - The particular finding reported by the security assessment.
- Targets
List<Get
Security Assessment Template Baseline Comparison Auditing Target> - A target-based comparison between two security assessments.
- Baselines
[]Get
Security Assessment Template Baseline Comparison Auditing Baseline - The particular finding reported by the security assessment.
- Targets
[]Get
Security Assessment Template Baseline Comparison Auditing Target - A target-based comparison between two security assessments.
- baselines
List<Get
Security Assessment Template Baseline Comparison Auditing Baseline> - The particular finding reported by the security assessment.
- targets
List<Get
Security Assessment Template Baseline Comparison Auditing Target> - A target-based comparison between two security assessments.
- baselines
Get
Security Assessment Template Baseline Comparison Auditing Baseline[] - The particular finding reported by the security assessment.
- targets
Get
Security Assessment Template Baseline Comparison Auditing Target[] - A target-based comparison between two security assessments.
- baselines
Sequence[Get
Security Assessment Template Baseline Comparison Auditing Baseline] - The particular finding reported by the security assessment.
- targets
Sequence[Get
Security Assessment Template Baseline Comparison Auditing Target] - A target-based comparison between two security assessments.
- baselines List<Property Map>
- The particular finding reported by the security assessment.
- targets List<Property Map>
- A target-based comparison between two security assessments.
GetSecurityAssessmentTemplateBaselineComparisonAuditingBaseline
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<Get
Security Assessment Template Baseline Comparison Auditing Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]Get
Security Assessment Template Baseline Comparison Auditing Baseline Reference - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<Get
Security Assessment Template Baseline Comparison Auditing Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessment
Id string - The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target booleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk booleanModified - Determines if this risk level was modified by user.
- justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- key string
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details string - Details about the current state of the finding.
- oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Get
Security Assessment Template Baseline Comparison Auditing Baseline Reference[] - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity string
- The severity of this diff.
- state string
- The current state of the finding.
- summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title string
- The short title for the finding.
- assessment_
id str - The OCID of the assessment that generated this finding.
- details Sequence[str]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has_
target_ booldb_ risk_ level_ changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is_
risk_ boolmodified - Determines if this risk level was modified by user.
- justification str
- User provided reason for accepting or modifying this finding if they choose to do so.
- key str
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle_
details str - Details about the current state of the finding.
- oracle_
defined_ strseverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Sequence[Get
Security Assessment Template Baseline Comparison 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 - A filter to return only items related to a specific target OCID.
- time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time_
valid_ struntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title str
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references List<Property Map>
- Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
GetSecurityAssessmentTemplateBaselineComparisonAuditingBaselineReference
GetSecurityAssessmentTemplateBaselineComparisonAuditingTarget
GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControl
- Baselines
List<Get
Security Assessment Template Baseline Comparison Authorization Control Baseline> - The particular finding reported by the security assessment.
- Targets
List<Get
Security Assessment Template Baseline Comparison Authorization Control Target> - A target-based comparison between two security assessments.
- Baselines
[]Get
Security Assessment Template Baseline Comparison Authorization Control Baseline - The particular finding reported by the security assessment.
- Targets
[]Get
Security Assessment Template Baseline Comparison Authorization Control Target - A target-based comparison between two security assessments.
- baselines
List<Get
Security Assessment Template Baseline Comparison Authorization Control Baseline> - The particular finding reported by the security assessment.
- targets
List<Get
Security Assessment Template Baseline Comparison Authorization Control Target> - A target-based comparison between two security assessments.
- baselines
Get
Security Assessment Template Baseline Comparison Authorization Control Baseline[] - The particular finding reported by the security assessment.
- targets
Get
Security Assessment Template Baseline Comparison Authorization Control Target[] - A target-based comparison between two security assessments.
- baselines
Sequence[Get
Security Assessment Template Baseline Comparison Authorization Control Baseline] - The particular finding reported by the security assessment.
- targets
Sequence[Get
Security Assessment Template Baseline Comparison Authorization Control Target] - A target-based comparison between two security assessments.
- baselines List<Property Map>
- The particular finding reported by the security assessment.
- targets List<Property Map>
- A target-based comparison between two security assessments.
GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaseline
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<Get
Security Assessment Template Baseline Comparison Authorization Control Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]Get
Security Assessment Template Baseline Comparison Authorization Control Baseline Reference - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<Get
Security Assessment Template Baseline Comparison Authorization Control Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessment
Id string - The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target booleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk booleanModified - Determines if this risk level was modified by user.
- justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- key string
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details string - Details about the current state of the finding.
- oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Get
Security Assessment Template Baseline Comparison Authorization Control Baseline Reference[] - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity string
- The severity of this diff.
- state string
- The current state of the finding.
- summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title string
- The short title for the finding.
- assessment_
id str - The OCID of the assessment that generated this finding.
- details Sequence[str]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has_
target_ booldb_ risk_ level_ changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is_
risk_ boolmodified - Determines if this risk level was modified by user.
- justification str
- User provided reason for accepting or modifying this finding if they choose to do so.
- key str
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle_
details str - Details about the current state of the finding.
- oracle_
defined_ strseverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Sequence[Get
Security Assessment Template Baseline Comparison 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 - A filter to return only items related to a specific target OCID.
- time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time_
valid_ struntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title str
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references List<Property Map>
- Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlBaselineReference
GetSecurityAssessmentTemplateBaselineComparisonAuthorizationControlTarget
GetSecurityAssessmentTemplateBaselineComparisonDataEncryption
- Baselines
List<Get
Security Assessment Template Baseline Comparison Data Encryption Baseline> - The particular finding reported by the security assessment.
- Targets
List<Get
Security Assessment Template Baseline Comparison Data Encryption Target> - A target-based comparison between two security assessments.
- Baselines
[]Get
Security Assessment Template Baseline Comparison Data Encryption Baseline - The particular finding reported by the security assessment.
- Targets
[]Get
Security Assessment Template Baseline Comparison Data Encryption Target - A target-based comparison between two security assessments.
- baselines
List<Get
Security Assessment Template Baseline Comparison Data Encryption Baseline> - The particular finding reported by the security assessment.
- targets
List<Get
Security Assessment Template Baseline Comparison Data Encryption Target> - A target-based comparison between two security assessments.
- baselines
Get
Security Assessment Template Baseline Comparison Data Encryption Baseline[] - The particular finding reported by the security assessment.
- targets
Get
Security Assessment Template Baseline Comparison Data Encryption Target[] - A target-based comparison between two security assessments.
- baselines
Sequence[Get
Security Assessment Template Baseline Comparison Data Encryption Baseline] - The particular finding reported by the security assessment.
- targets
Sequence[Get
Security Assessment Template Baseline Comparison Data Encryption Target] - A target-based comparison between two security assessments.
- baselines List<Property Map>
- The particular finding reported by the security assessment.
- targets List<Property Map>
- A target-based comparison between two security assessments.
GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaseline
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<Get
Security Assessment Template Baseline Comparison Data Encryption Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]Get
Security Assessment Template Baseline Comparison Data Encryption Baseline Reference - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<Get
Security Assessment Template Baseline Comparison Data Encryption Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessment
Id string - The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target booleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk booleanModified - Determines if this risk level was modified by user.
- justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- key string
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details string - Details about the current state of the finding.
- oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Get
Security Assessment Template Baseline Comparison Data Encryption Baseline Reference[] - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity string
- The severity of this diff.
- state string
- The current state of the finding.
- summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title string
- The short title for the finding.
- assessment_
id str - The OCID of the assessment that generated this finding.
- details Sequence[str]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has_
target_ booldb_ risk_ level_ changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is_
risk_ boolmodified - Determines if this risk level was modified by user.
- justification str
- User provided reason for accepting or modifying this finding if they choose to do so.
- key str
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle_
details str - Details about the current state of the finding.
- oracle_
defined_ strseverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Sequence[Get
Security Assessment Template Baseline Comparison 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 - A filter to return only items related to a specific target OCID.
- time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time_
valid_ struntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title str
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references List<Property Map>
- Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionBaselineReference
GetSecurityAssessmentTemplateBaselineComparisonDataEncryptionTarget
GetSecurityAssessmentTemplateBaselineComparisonDbConfiguration
- Baselines
List<Get
Security Assessment Template Baseline Comparison Db Configuration Baseline> - The particular finding reported by the security assessment.
- Targets
List<Get
Security Assessment Template Baseline Comparison Db Configuration Target> - A target-based comparison between two security assessments.
- Baselines
[]Get
Security Assessment Template Baseline Comparison Db Configuration Baseline - The particular finding reported by the security assessment.
- Targets
[]Get
Security Assessment Template Baseline Comparison Db Configuration Target - A target-based comparison between two security assessments.
- baselines
List<Get
Security Assessment Template Baseline Comparison Db Configuration Baseline> - The particular finding reported by the security assessment.
- targets
List<Get
Security Assessment Template Baseline Comparison Db Configuration Target> - A target-based comparison between two security assessments.
- baselines
Get
Security Assessment Template Baseline Comparison Db Configuration Baseline[] - The particular finding reported by the security assessment.
- targets
Get
Security Assessment Template Baseline Comparison Db Configuration Target[] - A target-based comparison between two security assessments.
- baselines
Sequence[Get
Security Assessment Template Baseline Comparison Db Configuration Baseline] - The particular finding reported by the security assessment.
- targets
Sequence[Get
Security Assessment Template Baseline Comparison Db Configuration Target] - A target-based comparison between two security assessments.
- baselines List<Property Map>
- The particular finding reported by the security assessment.
- targets List<Property Map>
- A target-based comparison between two security assessments.
GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaseline
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<Get
Security Assessment Template Baseline Comparison Db Configuration Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]Get
Security Assessment Template Baseline Comparison Db Configuration Baseline Reference - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<Get
Security Assessment Template Baseline Comparison Db Configuration Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessment
Id string - The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target booleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk booleanModified - Determines if this risk level was modified by user.
- justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- key string
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details string - Details about the current state of the finding.
- oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Get
Security Assessment Template Baseline Comparison Db Configuration Baseline Reference[] - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity string
- The severity of this diff.
- state string
- The current state of the finding.
- summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title string
- The short title for the finding.
- assessment_
id str - The OCID of the assessment that generated this finding.
- details Sequence[str]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has_
target_ booldb_ risk_ level_ changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is_
risk_ boolmodified - Determines if this risk level was modified by user.
- justification str
- User provided reason for accepting or modifying this finding if they choose to do so.
- key str
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle_
details str - Details about the current state of the finding.
- oracle_
defined_ strseverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Sequence[Get
Security Assessment Template Baseline Comparison 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 - A filter to return only items related to a specific target OCID.
- time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time_
valid_ struntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title str
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references List<Property Map>
- Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationBaselineReference
GetSecurityAssessmentTemplateBaselineComparisonDbConfigurationTarget
GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControl
- Baselines
List<Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline> - The particular finding reported by the security assessment.
- Targets
List<Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Target> - A target-based comparison between two security assessments.
- Baselines
[]Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline - The particular finding reported by the security assessment.
- Targets
[]Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Target - A target-based comparison between two security assessments.
- baselines
List<Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline> - The particular finding reported by the security assessment.
- targets
List<Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Target> - A target-based comparison between two security assessments.
- baselines
Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline[] - The particular finding reported by the security assessment.
- targets
Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Target[] - A target-based comparison between two security assessments.
- baselines
Sequence[Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline] - The particular finding reported by the security assessment.
- targets
Sequence[Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Target] - A target-based comparison between two security assessments.
- baselines List<Property Map>
- The particular finding reported by the security assessment.
- targets List<Property Map>
- A target-based comparison between two security assessments.
GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaseline
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline Reference - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessment
Id string - The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target booleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk booleanModified - Determines if this risk level was modified by user.
- justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- key string
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details string - Details about the current state of the finding.
- oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Get
Security Assessment Template Baseline Comparison Fine Grained Access Control Baseline Reference[] - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity string
- The severity of this diff.
- state string
- The current state of the finding.
- summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title string
- The short title for the finding.
- assessment_
id str - The OCID of the assessment that generated this finding.
- details Sequence[str]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has_
target_ booldb_ risk_ level_ changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is_
risk_ boolmodified - Determines if this risk level was modified by user.
- justification str
- User provided reason for accepting or modifying this finding if they choose to do so.
- key str
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle_
details str - Details about the current state of the finding.
- oracle_
defined_ strseverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Sequence[Get
Security Assessment Template Baseline Comparison 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 - A filter to return only items related to a specific target OCID.
- time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time_
valid_ struntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title str
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references List<Property Map>
- Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlBaselineReference
GetSecurityAssessmentTemplateBaselineComparisonFineGrainedAccessControlTarget
GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRole
- Baselines
List<Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline> - The particular finding reported by the security assessment.
- Targets
List<Get
Security Assessment Template Baseline Comparison Privileges And Role Target> - A target-based comparison between two security assessments.
- Baselines
[]Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline - The particular finding reported by the security assessment.
- Targets
[]Get
Security Assessment Template Baseline Comparison Privileges And Role Target - A target-based comparison between two security assessments.
- baselines
List<Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline> - The particular finding reported by the security assessment.
- targets
List<Get
Security Assessment Template Baseline Comparison Privileges And Role Target> - A target-based comparison between two security assessments.
- baselines
Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline[] - The particular finding reported by the security assessment.
- targets
Get
Security Assessment Template Baseline Comparison Privileges And Role Target[] - A target-based comparison between two security assessments.
- baselines
Sequence[Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline] - The particular finding reported by the security assessment.
- targets
Sequence[Get
Security Assessment Template Baseline Comparison Privileges And Role Target] - A target-based comparison between two security assessments.
- baselines List<Property Map>
- The particular finding reported by the security assessment.
- targets List<Property Map>
- A target-based comparison between two security assessments.
GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaseline
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline Reference - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessment
Id string - The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target booleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk booleanModified - Determines if this risk level was modified by user.
- justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- key string
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details string - Details about the current state of the finding.
- oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Get
Security Assessment Template Baseline Comparison Privileges And Role Baseline Reference[] - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity string
- The severity of this diff.
- state string
- The current state of the finding.
- summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title string
- The short title for the finding.
- assessment_
id str - The OCID of the assessment that generated this finding.
- details Sequence[str]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has_
target_ booldb_ risk_ level_ changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is_
risk_ boolmodified - Determines if this risk level was modified by user.
- justification str
- User provided reason for accepting or modifying this finding if they choose to do so.
- key str
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle_
details str - Details about the current state of the finding.
- oracle_
defined_ strseverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Sequence[Get
Security Assessment Template Baseline Comparison 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 - A filter to return only items related to a specific target OCID.
- time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time_
valid_ struntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title str
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references List<Property Map>
- Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleBaselineReference
GetSecurityAssessmentTemplateBaselineComparisonPrivilegesAndRoleTarget
GetSecurityAssessmentTemplateBaselineComparisonUserAccount
- Baselines
List<Get
Security Assessment Template Baseline Comparison User Account Baseline> - The particular finding reported by the security assessment.
- Targets
List<Get
Security Assessment Template Baseline Comparison User Account Target> - A target-based comparison between two security assessments.
- Baselines
[]Get
Security Assessment Template Baseline Comparison User Account Baseline - The particular finding reported by the security assessment.
- Targets
[]Get
Security Assessment Template Baseline Comparison User Account Target - A target-based comparison between two security assessments.
- baselines
List<Get
Security Assessment Template Baseline Comparison User Account Baseline> - The particular finding reported by the security assessment.
- targets
List<Get
Security Assessment Template Baseline Comparison User Account Target> - A target-based comparison between two security assessments.
- baselines
Get
Security Assessment Template Baseline Comparison User Account Baseline[] - The particular finding reported by the security assessment.
- targets
Get
Security Assessment Template Baseline Comparison User Account Target[] - A target-based comparison between two security assessments.
- baselines
Sequence[Get
Security Assessment Template Baseline Comparison User Account Baseline] - The particular finding reported by the security assessment.
- targets
Sequence[Get
Security Assessment Template Baseline Comparison User Account Target] - A target-based comparison between two security assessments.
- baselines List<Property Map>
- The particular finding reported by the security assessment.
- targets List<Property Map>
- A target-based comparison between two security assessments.
GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaseline
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details List<string>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
List<Get
Security Assessment Template Baseline Comparison User Account Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- Assessment
Id string - The OCID of the assessment that generated this finding.
- Details []string
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- Has
Target boolDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- Is
Risk boolModified - Determines if this risk level was modified by user.
- Justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- Key string
- A unique identifier for the finding. This is common for the finding across targets.
- Lifecycle
Details string - Details about the current state of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- References
[]Get
Security Assessment Template Baseline Comparison User Account Baseline Reference - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- Remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- Severity string
- The severity of this diff.
- State string
- The current state of the finding.
- Summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- Title string
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
List<Get
Security Assessment Template Baseline Comparison User Account Baseline Reference> - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
- assessment
Id string - The OCID of the assessment that generated this finding.
- details string[]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target booleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk booleanModified - Determines if this risk level was modified by user.
- justification string
- User provided reason for accepting or modifying this finding if they choose to do so.
- key string
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details string - Details about the current state of the finding.
- oracle
Defined stringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Get
Security Assessment Template Baseline Comparison User Account Baseline Reference[] - Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks string
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity string
- The severity of this diff.
- state string
- The current state of the finding.
- summary string
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id string - A filter to return only items related to a specific target OCID.
- time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid stringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title string
- The short title for the finding.
- assessment_
id str - The OCID of the assessment that generated this finding.
- details Sequence[str]
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has_
target_ booldb_ risk_ level_ changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is_
risk_ boolmodified - Determines if this risk level was modified by user.
- justification str
- User provided reason for accepting or modifying this finding if they choose to do so.
- key str
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle_
details str - Details about the current state of the finding.
- oracle_
defined_ strseverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references
Sequence[Get
Security Assessment Template Baseline Comparison 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 - A filter to return only items related to a specific target OCID.
- time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time_
valid_ struntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title str
- The short title for the finding.
- assessment
Id String - The OCID of the assessment that generated this finding.
- details List<String>
- The details of the finding. Provides detailed information to explain the finding summary, typically results from the assessed database, followed by any recommendations for changes.
- has
Target BooleanDb Risk Level Changed - Determines if this risk level has changed on the target database since the last time 'severity' was modified by user.
- is
Risk BooleanModified - Determines if this risk level was modified by user.
- justification String
- User provided reason for accepting or modifying this finding if they choose to do so.
- key String
- A unique identifier for the finding. This is common for the finding across targets.
- lifecycle
Details String - Details about the current state of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment. This cannot be modified by user.
- references List<Property Map>
- Provides information on whether the finding is related to a CIS Oracle Database Benchmark recommendation, STIG rule, or related to a GDPR Article/Recital.
- remarks String
- The explanation of the issue in this finding. It explains the reason for the rule and, if a risk is reported, it may also explain the recommended actions for remediation.
- severity String
- The severity of this diff.
- state String
- The current state of the finding.
- summary String
- The brief summary of the finding. When the finding is informational, the summary typically reports only the number of data elements that were examined.
- target
Id String - A filter to return only items related to a specific target OCID.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The time until which the change in severity(deferred/modified) of this finding is valid.
- title String
- The short title for the finding.
GetSecurityAssessmentTemplateBaselineComparisonUserAccountBaselineReference
GetSecurityAssessmentTemplateBaselineComparisonUserAccountTarget
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.