oci.DataSafe.getSecurityAssessmentFindingsChangeAuditLogs
Explore with Pulumi AI
This data source provides the list of Security Assessment Findings Change Audit Logs in Oracle Cloud Infrastructure Data Safe service.
List all changes made by user to risk level of findings of the specified assessment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSecurityAssessmentFindingsChangeAuditLogs = oci.DataSafe.getSecurityAssessmentFindingsChangeAuditLogs({
securityAssessmentId: testSecurityAssessment.id,
findingKey: securityAssessmentFindingsChangeAuditLogFindingKey,
findingTitle: securityAssessmentFindingsChangeAuditLogFindingTitle,
isRiskDeferred: securityAssessmentFindingsChangeAuditLogIsRiskDeferred,
modifiedBy: securityAssessmentFindingsChangeAuditLogModifiedBy,
severity: securityAssessmentFindingsChangeAuditLogSeverity,
timeUpdatedGreaterThanOrEqualTo: securityAssessmentFindingsChangeAuditLogTimeUpdatedGreaterThanOrEqualTo,
timeUpdatedLessThan: securityAssessmentFindingsChangeAuditLogTimeUpdatedLessThan,
timeValidUntilGreaterThanOrEqualTo: securityAssessmentFindingsChangeAuditLogTimeValidUntilGreaterThanOrEqualTo,
timeValidUntilLessThan: securityAssessmentFindingsChangeAuditLogTimeValidUntilLessThan,
});
import pulumi
import pulumi_oci as oci
test_security_assessment_findings_change_audit_logs = oci.DataSafe.get_security_assessment_findings_change_audit_logs(security_assessment_id=test_security_assessment["id"],
finding_key=security_assessment_findings_change_audit_log_finding_key,
finding_title=security_assessment_findings_change_audit_log_finding_title,
is_risk_deferred=security_assessment_findings_change_audit_log_is_risk_deferred,
modified_by=security_assessment_findings_change_audit_log_modified_by,
severity=security_assessment_findings_change_audit_log_severity,
time_updated_greater_than_or_equal_to=security_assessment_findings_change_audit_log_time_updated_greater_than_or_equal_to,
time_updated_less_than=security_assessment_findings_change_audit_log_time_updated_less_than,
time_valid_until_greater_than_or_equal_to=security_assessment_findings_change_audit_log_time_valid_until_greater_than_or_equal_to,
time_valid_until_less_than=security_assessment_findings_change_audit_log_time_valid_until_less_than)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DataSafe.GetSecurityAssessmentFindingsChangeAuditLogs(ctx, &datasafe.GetSecurityAssessmentFindingsChangeAuditLogsArgs{
SecurityAssessmentId: testSecurityAssessment.Id,
FindingKey: pulumi.StringRef(securityAssessmentFindingsChangeAuditLogFindingKey),
FindingTitle: pulumi.StringRef(securityAssessmentFindingsChangeAuditLogFindingTitle),
IsRiskDeferred: pulumi.BoolRef(securityAssessmentFindingsChangeAuditLogIsRiskDeferred),
ModifiedBy: pulumi.StringRef(securityAssessmentFindingsChangeAuditLogModifiedBy),
Severity: pulumi.StringRef(securityAssessmentFindingsChangeAuditLogSeverity),
TimeUpdatedGreaterThanOrEqualTo: pulumi.StringRef(securityAssessmentFindingsChangeAuditLogTimeUpdatedGreaterThanOrEqualTo),
TimeUpdatedLessThan: pulumi.StringRef(securityAssessmentFindingsChangeAuditLogTimeUpdatedLessThan),
TimeValidUntilGreaterThanOrEqualTo: pulumi.StringRef(securityAssessmentFindingsChangeAuditLogTimeValidUntilGreaterThanOrEqualTo),
TimeValidUntilLessThan: pulumi.StringRef(securityAssessmentFindingsChangeAuditLogTimeValidUntilLessThan),
}, 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 testSecurityAssessmentFindingsChangeAuditLogs = Oci.DataSafe.GetSecurityAssessmentFindingsChangeAuditLogs.Invoke(new()
{
SecurityAssessmentId = testSecurityAssessment.Id,
FindingKey = securityAssessmentFindingsChangeAuditLogFindingKey,
FindingTitle = securityAssessmentFindingsChangeAuditLogFindingTitle,
IsRiskDeferred = securityAssessmentFindingsChangeAuditLogIsRiskDeferred,
ModifiedBy = securityAssessmentFindingsChangeAuditLogModifiedBy,
Severity = securityAssessmentFindingsChangeAuditLogSeverity,
TimeUpdatedGreaterThanOrEqualTo = securityAssessmentFindingsChangeAuditLogTimeUpdatedGreaterThanOrEqualTo,
TimeUpdatedLessThan = securityAssessmentFindingsChangeAuditLogTimeUpdatedLessThan,
TimeValidUntilGreaterThanOrEqualTo = securityAssessmentFindingsChangeAuditLogTimeValidUntilGreaterThanOrEqualTo,
TimeValidUntilLessThan = securityAssessmentFindingsChangeAuditLogTimeValidUntilLessThan,
});
});
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.GetSecurityAssessmentFindingsChangeAuditLogsArgs;
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 testSecurityAssessmentFindingsChangeAuditLogs = DataSafeFunctions.getSecurityAssessmentFindingsChangeAuditLogs(GetSecurityAssessmentFindingsChangeAuditLogsArgs.builder()
.securityAssessmentId(testSecurityAssessment.id())
.findingKey(securityAssessmentFindingsChangeAuditLogFindingKey)
.findingTitle(securityAssessmentFindingsChangeAuditLogFindingTitle)
.isRiskDeferred(securityAssessmentFindingsChangeAuditLogIsRiskDeferred)
.modifiedBy(securityAssessmentFindingsChangeAuditLogModifiedBy)
.severity(securityAssessmentFindingsChangeAuditLogSeverity)
.timeUpdatedGreaterThanOrEqualTo(securityAssessmentFindingsChangeAuditLogTimeUpdatedGreaterThanOrEqualTo)
.timeUpdatedLessThan(securityAssessmentFindingsChangeAuditLogTimeUpdatedLessThan)
.timeValidUntilGreaterThanOrEqualTo(securityAssessmentFindingsChangeAuditLogTimeValidUntilGreaterThanOrEqualTo)
.timeValidUntilLessThan(securityAssessmentFindingsChangeAuditLogTimeValidUntilLessThan)
.build());
}
}
variables:
testSecurityAssessmentFindingsChangeAuditLogs:
fn::invoke:
Function: oci:DataSafe:getSecurityAssessmentFindingsChangeAuditLogs
Arguments:
securityAssessmentId: ${testSecurityAssessment.id}
findingKey: ${securityAssessmentFindingsChangeAuditLogFindingKey}
findingTitle: ${securityAssessmentFindingsChangeAuditLogFindingTitle}
isRiskDeferred: ${securityAssessmentFindingsChangeAuditLogIsRiskDeferred}
modifiedBy: ${securityAssessmentFindingsChangeAuditLogModifiedBy}
severity: ${securityAssessmentFindingsChangeAuditLogSeverity}
timeUpdatedGreaterThanOrEqualTo: ${securityAssessmentFindingsChangeAuditLogTimeUpdatedGreaterThanOrEqualTo}
timeUpdatedLessThan: ${securityAssessmentFindingsChangeAuditLogTimeUpdatedLessThan}
timeValidUntilGreaterThanOrEqualTo: ${securityAssessmentFindingsChangeAuditLogTimeValidUntilGreaterThanOrEqualTo}
timeValidUntilLessThan: ${securityAssessmentFindingsChangeAuditLogTimeValidUntilLessThan}
Using getSecurityAssessmentFindingsChangeAuditLogs
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 getSecurityAssessmentFindingsChangeAuditLogs(args: GetSecurityAssessmentFindingsChangeAuditLogsArgs, opts?: InvokeOptions): Promise<GetSecurityAssessmentFindingsChangeAuditLogsResult>
function getSecurityAssessmentFindingsChangeAuditLogsOutput(args: GetSecurityAssessmentFindingsChangeAuditLogsOutputArgs, opts?: InvokeOptions): Output<GetSecurityAssessmentFindingsChangeAuditLogsResult>
def get_security_assessment_findings_change_audit_logs(filters: Optional[Sequence[_datasafe.GetSecurityAssessmentFindingsChangeAuditLogsFilter]] = None,
finding_key: Optional[str] = None,
finding_title: Optional[str] = None,
is_risk_deferred: Optional[bool] = None,
modified_by: Optional[str] = None,
security_assessment_id: Optional[str] = None,
severity: Optional[str] = None,
time_updated_greater_than_or_equal_to: Optional[str] = None,
time_updated_less_than: Optional[str] = None,
time_valid_until_greater_than_or_equal_to: Optional[str] = None,
time_valid_until_less_than: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSecurityAssessmentFindingsChangeAuditLogsResult
def get_security_assessment_findings_change_audit_logs_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetSecurityAssessmentFindingsChangeAuditLogsFilterArgs]]]] = None,
finding_key: Optional[pulumi.Input[str]] = None,
finding_title: Optional[pulumi.Input[str]] = None,
is_risk_deferred: Optional[pulumi.Input[bool]] = None,
modified_by: Optional[pulumi.Input[str]] = None,
security_assessment_id: Optional[pulumi.Input[str]] = None,
severity: Optional[pulumi.Input[str]] = None,
time_updated_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
time_updated_less_than: Optional[pulumi.Input[str]] = None,
time_valid_until_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
time_valid_until_less_than: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSecurityAssessmentFindingsChangeAuditLogsResult]
func GetSecurityAssessmentFindingsChangeAuditLogs(ctx *Context, args *GetSecurityAssessmentFindingsChangeAuditLogsArgs, opts ...InvokeOption) (*GetSecurityAssessmentFindingsChangeAuditLogsResult, error)
func GetSecurityAssessmentFindingsChangeAuditLogsOutput(ctx *Context, args *GetSecurityAssessmentFindingsChangeAuditLogsOutputArgs, opts ...InvokeOption) GetSecurityAssessmentFindingsChangeAuditLogsResultOutput
> Note: This function is named GetSecurityAssessmentFindingsChangeAuditLogs
in the Go SDK.
public static class GetSecurityAssessmentFindingsChangeAuditLogs
{
public static Task<GetSecurityAssessmentFindingsChangeAuditLogsResult> InvokeAsync(GetSecurityAssessmentFindingsChangeAuditLogsArgs args, InvokeOptions? opts = null)
public static Output<GetSecurityAssessmentFindingsChangeAuditLogsResult> Invoke(GetSecurityAssessmentFindingsChangeAuditLogsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSecurityAssessmentFindingsChangeAuditLogsResult> getSecurityAssessmentFindingsChangeAuditLogs(GetSecurityAssessmentFindingsChangeAuditLogsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DataSafe/getSecurityAssessmentFindingsChangeAuditLogs:getSecurityAssessmentFindingsChangeAuditLogs
arguments:
# arguments dictionary
The following arguments are supported:
- Security
Assessment stringId - The OCID of the security assessment.
- Filters
List<Get
Security Assessment Findings Change Audit Logs Filter> - Finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- Finding
Title string - The unique title that identifies the finding. It is a string and unique within a security assessment.
- Is
Risk boolDeferred - A filter to check findings whose risks were deferred by the user.
- Modified
By string - A filter to check which user modified the risk level of the finding.
- Severity string
- A filter to return only findings of a particular risk level.
- Time
Updated stringGreater Than Or Equal To - Search for resources that were updated after a specific date. Specifying this parameter corresponding
timeUpdatedGreaterThanOrEqualTo
parameter will retrieve all resources updated after the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - Time
Updated stringLess Than - Search for resources that were updated before a specific date. Specifying this parameter corresponding
timeUpdatedLessThan
parameter will retrieve all resources updated before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - Time
Valid stringUntil Greater Than Or Equal To Specifying
TimeValidUntilGreaterThanOrEqualToQueryParam
parameter will retrieve all items for which the risk level modification by user will no longer be valid greater than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- Time
Valid stringUntil Less Than Specifying
TimeValidUntilLessThanQueryParam
parameter will retrieve all items for which the risk level modification by user will be valid until less than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- Security
Assessment stringId - The OCID of the security assessment.
- Filters
[]Get
Security Assessment Findings Change Audit Logs Filter - Finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- Finding
Title string - The unique title that identifies the finding. It is a string and unique within a security assessment.
- Is
Risk boolDeferred - A filter to check findings whose risks were deferred by the user.
- Modified
By string - A filter to check which user modified the risk level of the finding.
- Severity string
- A filter to return only findings of a particular risk level.
- Time
Updated stringGreater Than Or Equal To - Search for resources that were updated after a specific date. Specifying this parameter corresponding
timeUpdatedGreaterThanOrEqualTo
parameter will retrieve all resources updated after the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - Time
Updated stringLess Than - Search for resources that were updated before a specific date. Specifying this parameter corresponding
timeUpdatedLessThan
parameter will retrieve all resources updated before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - Time
Valid stringUntil Greater Than Or Equal To Specifying
TimeValidUntilGreaterThanOrEqualToQueryParam
parameter will retrieve all items for which the risk level modification by user will no longer be valid greater than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- Time
Valid stringUntil Less Than Specifying
TimeValidUntilLessThanQueryParam
parameter will retrieve all items for which the risk level modification by user will be valid until less than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- security
Assessment StringId - The OCID of the security assessment.
- filters
List<Get
Security Assessment Findings Change Audit Logs Filter> - finding
Key String - The unique key that identifies the finding. It is a string and unique within a security assessment.
- finding
Title String - The unique title that identifies the finding. It is a string and unique within a security assessment.
- is
Risk BooleanDeferred - A filter to check findings whose risks were deferred by the user.
- modified
By String - A filter to check which user modified the risk level of the finding.
- severity String
- A filter to return only findings of a particular risk level.
- time
Updated StringGreater Than Or Equal To - Search for resources that were updated after a specific date. Specifying this parameter corresponding
timeUpdatedGreaterThanOrEqualTo
parameter will retrieve all resources updated after the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - time
Updated StringLess Than - Search for resources that were updated before a specific date. Specifying this parameter corresponding
timeUpdatedLessThan
parameter will retrieve all resources updated before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - time
Valid StringUntil Greater Than Or Equal To Specifying
TimeValidUntilGreaterThanOrEqualToQueryParam
parameter will retrieve all items for which the risk level modification by user will no longer be valid greater than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- time
Valid StringUntil Less Than Specifying
TimeValidUntilLessThanQueryParam
parameter will retrieve all items for which the risk level modification by user will be valid until less than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- security
Assessment stringId - The OCID of the security assessment.
- filters
Get
Security Assessment Findings Change Audit Logs Filter[] - finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- finding
Title string - The unique title that identifies the finding. It is a string and unique within a security assessment.
- is
Risk booleanDeferred - A filter to check findings whose risks were deferred by the user.
- modified
By string - A filter to check which user modified the risk level of the finding.
- severity string
- A filter to return only findings of a particular risk level.
- time
Updated stringGreater Than Or Equal To - Search for resources that were updated after a specific date. Specifying this parameter corresponding
timeUpdatedGreaterThanOrEqualTo
parameter will retrieve all resources updated after the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - time
Updated stringLess Than - Search for resources that were updated before a specific date. Specifying this parameter corresponding
timeUpdatedLessThan
parameter will retrieve all resources updated before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - time
Valid stringUntil Greater Than Or Equal To Specifying
TimeValidUntilGreaterThanOrEqualToQueryParam
parameter will retrieve all items for which the risk level modification by user will no longer be valid greater than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- time
Valid stringUntil Less Than Specifying
TimeValidUntilLessThanQueryParam
parameter will retrieve all items for which the risk level modification by user will be valid until less than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- security_
assessment_ strid - The OCID of the security assessment.
- filters
Sequence[datasafe.
Get Security Assessment Findings Change Audit Logs Filter] - finding_
key str - The unique key that identifies the finding. It is a string and unique within a security assessment.
- finding_
title str - The unique title that identifies the finding. It is a string and unique within a security assessment.
- is_
risk_ booldeferred - A filter to check findings whose risks were deferred by the user.
- modified_
by str - A filter to check which user modified the risk level of the finding.
- severity str
- A filter to return only findings of a particular risk level.
- time_
updated_ strgreater_ than_ or_ equal_ to - Search for resources that were updated after a specific date. Specifying this parameter corresponding
timeUpdatedGreaterThanOrEqualTo
parameter will retrieve all resources updated after the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - time_
updated_ strless_ than - Search for resources that were updated before a specific date. Specifying this parameter corresponding
timeUpdatedLessThan
parameter will retrieve all resources updated before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - time_
valid_ struntil_ greater_ than_ or_ equal_ to Specifying
TimeValidUntilGreaterThanOrEqualToQueryParam
parameter will retrieve all items for which the risk level modification by user will no longer be valid greater than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- time_
valid_ struntil_ less_ than Specifying
TimeValidUntilLessThanQueryParam
parameter will retrieve all items for which the risk level modification by user will be valid until less than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- security
Assessment StringId - The OCID of the security assessment.
- filters List<Property Map>
- finding
Key String - The unique key that identifies the finding. It is a string and unique within a security assessment.
- finding
Title String - The unique title that identifies the finding. It is a string and unique within a security assessment.
- is
Risk BooleanDeferred - A filter to check findings whose risks were deferred by the user.
- modified
By String - A filter to check which user modified the risk level of the finding.
- severity String
- A filter to return only findings of a particular risk level.
- time
Updated StringGreater Than Or Equal To - Search for resources that were updated after a specific date. Specifying this parameter corresponding
timeUpdatedGreaterThanOrEqualTo
parameter will retrieve all resources updated after the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - time
Updated StringLess Than - Search for resources that were updated before a specific date. Specifying this parameter corresponding
timeUpdatedLessThan
parameter will retrieve all resources updated before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339. - time
Valid StringUntil Greater Than Or Equal To Specifying
TimeValidUntilGreaterThanOrEqualToQueryParam
parameter will retrieve all items for which the risk level modification by user will no longer be valid greater than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
- time
Valid StringUntil Less Than Specifying
TimeValidUntilLessThanQueryParam
parameter will retrieve all items for which the risk level modification by user will be valid until less than the date and time specified, in the format defined by RFC3339.Example: 2016-12-19T00:00:00.000Z
getSecurityAssessmentFindingsChangeAuditLogs Result
The following output properties are available:
- Findings
Change List<GetAudit Log Collections Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection> - The list of findings_change_audit_log_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Assessment stringId - Filters
List<Get
Security Assessment Findings Change Audit Logs Filter> - Finding
Key string - The unique key that identifies the finding.
- Finding
Title string - The short title for the finding whose risk is being modified.
- Is
Risk boolDeferred - Determines if the user has deferred the risk level of this finding when he is ok with it and does not plan to do anything about it.
- Modified
By string - The user who initiated change of risk level of the finding
- Severity string
- The original severity / risk level of the finding as determined by security assessment.
- Time
Updated stringGreater Than Or Equal To - Time
Updated stringLess Than - Time
Valid stringUntil Greater Than Or Equal To - Time
Valid stringUntil Less Than
- Findings
Change []GetAudit Log Collections Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection - The list of findings_change_audit_log_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Assessment stringId - Filters
[]Get
Security Assessment Findings Change Audit Logs Filter - Finding
Key string - The unique key that identifies the finding.
- Finding
Title string - The short title for the finding whose risk is being modified.
- Is
Risk boolDeferred - Determines if the user has deferred the risk level of this finding when he is ok with it and does not plan to do anything about it.
- Modified
By string - The user who initiated change of risk level of the finding
- Severity string
- The original severity / risk level of the finding as determined by security assessment.
- Time
Updated stringGreater Than Or Equal To - Time
Updated stringLess Than - Time
Valid stringUntil Greater Than Or Equal To - Time
Valid stringUntil Less Than
- findings
Change List<GetAudit Log Collections Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection> - The list of findings_change_audit_log_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- security
Assessment StringId - filters
List<Get
Security Assessment Findings Change Audit Logs Filter> - finding
Key String - The unique key that identifies the finding.
- finding
Title String - The short title for the finding whose risk is being modified.
- is
Risk BooleanDeferred - Determines if the user has deferred the risk level of this finding when he is ok with it and does not plan to do anything about it.
- modified
By String - The user who initiated change of risk level of the finding
- severity String
- The original severity / risk level of the finding as determined by security assessment.
- time
Updated StringGreater Than Or Equal To - time
Updated StringLess Than - time
Valid StringUntil Greater Than Or Equal To - time
Valid StringUntil Less Than
- findings
Change GetAudit Log Collections Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection[] - The list of findings_change_audit_log_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- security
Assessment stringId - filters
Get
Security Assessment Findings Change Audit Logs Filter[] - finding
Key string - The unique key that identifies the finding.
- finding
Title string - The short title for the finding whose risk is being modified.
- is
Risk booleanDeferred - Determines if the user has deferred the risk level of this finding when he is ok with it and does not plan to do anything about it.
- modified
By string - The user who initiated change of risk level of the finding
- severity string
- The original severity / risk level of the finding as determined by security assessment.
- time
Updated stringGreater Than Or Equal To - time
Updated stringLess Than - time
Valid stringUntil Greater Than Or Equal To - time
Valid stringUntil Less Than
- findings_
change_ Sequence[datasafe.audit_ log_ collections Get Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection] - The list of findings_change_audit_log_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- security_
assessment_ strid - filters
Sequence[datasafe.
Get Security Assessment Findings Change Audit Logs Filter] - finding_
key str - The unique key that identifies the finding.
- finding_
title str - The short title for the finding whose risk is being modified.
- is_
risk_ booldeferred - Determines if the user has deferred the risk level of this finding when he is ok with it and does not plan to do anything about it.
- modified_
by str - The user who initiated change of risk level of the finding
- severity str
- The original severity / risk level of the finding as determined by security assessment.
- time_
updated_ strgreater_ than_ or_ equal_ to - time_
updated_ strless_ than - time_
valid_ struntil_ greater_ than_ or_ equal_ to - time_
valid_ struntil_ less_ than
- findings
Change List<Property Map>Audit Log Collections - The list of findings_change_audit_log_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- security
Assessment StringId - filters List<Property Map>
- finding
Key String - The unique key that identifies the finding.
- finding
Title String - The short title for the finding whose risk is being modified.
- is
Risk BooleanDeferred - Determines if the user has deferred the risk level of this finding when he is ok with it and does not plan to do anything about it.
- modified
By String - The user who initiated change of risk level of the finding
- severity String
- The original severity / risk level of the finding as determined by security assessment.
- time
Updated StringGreater Than Or Equal To - time
Updated StringLess Than - time
Valid StringUntil Greater Than Or Equal To - time
Valid StringUntil Less Than
Supporting Types
GetSecurityAssessmentFindingsChangeAuditLogsFilter
GetSecurityAssessmentFindingsChangeAuditLogsFindingsChangeAuditLogCollection
- Items
List<Get
Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item> - An array of finding risk change audit log summary objects.
- Items
[]Get
Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item - An array of finding risk change audit log summary objects.
- items
List<Get
Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item> - An array of finding risk change audit log summary objects.
- items
Get
Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item[] - An array of finding risk change audit log summary objects.
- items
Sequence[datasafe.
Get Security Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item] - An array of finding risk change audit log summary objects.
- items List<Property Map>
- An array of finding risk change audit log summary objects.
GetSecurityAssessmentFindingsChangeAuditLogsFindingsChangeAuditLogCollectionItem
- Assessment
Id string - The OCID of the latest security assessment.
- Finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- Finding
Title string - The unique title that identifies the finding. It is a string and unique within a security assessment.
- Is
Risk boolDeferred - A filter to check findings whose risks were deferred by the user.
- Justification string
- The justification given by the user for accepting or modifying the risk level.
- Key string
- The unique key that identifies the finding risk change.
- Modified
By string - A filter to check which user modified the risk level of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment by Oracle.
- Previous
Severity string - If the risk level is changed more than once, the previous modified value.
- Severity string
- A filter to return only findings of a particular risk level.
- Target
Id string - The OCID of the target database.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The date and time, in the format defined by RFC3339, the risk level change as updated by user is valid until. After this date passes, the risk level will be that of what is determined by the latest security assessment.
- Assessment
Id string - The OCID of the latest security assessment.
- Finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- Finding
Title string - The unique title that identifies the finding. It is a string and unique within a security assessment.
- Is
Risk boolDeferred - A filter to check findings whose risks were deferred by the user.
- Justification string
- The justification given by the user for accepting or modifying the risk level.
- Key string
- The unique key that identifies the finding risk change.
- Modified
By string - A filter to check which user modified the risk level of the finding.
- Oracle
Defined stringSeverity - The severity of the finding as determined by security assessment by Oracle.
- Previous
Severity string - If the risk level is changed more than once, the previous modified value.
- Severity string
- A filter to return only findings of a particular risk level.
- Target
Id string - The OCID of the target database.
- Time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- Time
Valid stringUntil - The date and time, in the format defined by RFC3339, the risk level change as updated by user is valid until. After this date passes, the risk level will be that of what is determined by the latest security assessment.
- assessment
Id String - The OCID of the latest security assessment.
- finding
Key String - The unique key that identifies the finding. It is a string and unique within a security assessment.
- finding
Title String - The unique title that identifies the finding. It is a string and unique within a security assessment.
- is
Risk BooleanDeferred - A filter to check findings whose risks were deferred by the user.
- justification String
- The justification given by the user for accepting or modifying the risk level.
- key String
- The unique key that identifies the finding risk change.
- modified
By String - A filter to check which user modified the risk level of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment by Oracle.
- previous
Severity String - If the risk level is changed more than once, the previous modified value.
- severity String
- A filter to return only findings of a particular risk level.
- target
Id String - The OCID of the target database.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The date and time, in the format defined by RFC3339, the risk level change as updated by user is valid until. After this date passes, the risk level will be that of what is determined by the latest security assessment.
- assessment
Id string - The OCID of the latest security assessment.
- finding
Key string - The unique key that identifies the finding. It is a string and unique within a security assessment.
- finding
Title string - The unique title that identifies the finding. It is a string and unique within a security assessment.
- is
Risk booleanDeferred - A filter to check findings whose risks were deferred by the user.
- justification string
- The justification given by the user for accepting or modifying the risk level.
- key string
- The unique key that identifies the finding risk change.
- modified
By string - A filter to check which user modified the risk level of the finding.
- oracle
Defined stringSeverity - The severity of the finding as determined by security assessment by Oracle.
- previous
Severity string - If the risk level is changed more than once, the previous modified value.
- severity string
- A filter to return only findings of a particular risk level.
- target
Id string - The OCID of the target database.
- time
Updated string - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid stringUntil - The date and time, in the format defined by RFC3339, the risk level change as updated by user is valid until. After this date passes, the risk level will be that of what is determined by the latest security assessment.
- assessment_
id str - The OCID of the latest security assessment.
- finding_
key str - The unique key that identifies the finding. It is a string and unique within a security assessment.
- finding_
title str - The unique title that identifies the finding. It is a string and unique within a security assessment.
- is_
risk_ booldeferred - A filter to check findings whose risks were deferred by the user.
- justification str
- The justification given by the user for accepting or modifying the risk level.
- key str
- The unique key that identifies the finding risk change.
- modified_
by str - A filter to check which user modified the risk level of the finding.
- oracle_
defined_ strseverity - The severity of the finding as determined by security assessment by Oracle.
- previous_
severity str - If the risk level is changed more than once, the previous modified value.
- severity str
- A filter to return only findings of a particular risk level.
- target_
id str - The OCID of the target database.
- time_
updated str - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time_
valid_ struntil - The date and time, in the format defined by RFC3339, the risk level change as updated by user is valid until. After this date passes, the risk level will be that of what is determined by the latest security assessment.
- assessment
Id String - The OCID of the latest security assessment.
- finding
Key String - The unique key that identifies the finding. It is a string and unique within a security assessment.
- finding
Title String - The unique title that identifies the finding. It is a string and unique within a security assessment.
- is
Risk BooleanDeferred - A filter to check findings whose risks were deferred by the user.
- justification String
- The justification given by the user for accepting or modifying the risk level.
- key String
- The unique key that identifies the finding risk change.
- modified
By String - A filter to check which user modified the risk level of the finding.
- oracle
Defined StringSeverity - The severity of the finding as determined by security assessment by Oracle.
- previous
Severity String - If the risk level is changed more than once, the previous modified value.
- severity String
- A filter to return only findings of a particular risk level.
- target
Id String - The OCID of the target database.
- time
Updated String - The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- time
Valid StringUntil - The date and time, in the format defined by RFC3339, the risk level change as updated by user is valid until. After this date passes, the risk level will be that of what is determined by the latest security assessment.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.