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/v2/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[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[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)
public static Output<GetSecurityAssessmentFindingsChangeAuditLogsResult> getSecurityAssessmentFindingsChangeAuditLogs(GetSecurityAssessmentFindingsChangeAuditLogsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getSecurityAssessmentFindingsChangeAuditLogs:getSecurityAssessmentFindingsChangeAuditLogs
  arguments:
    # arguments dictionaryThe following arguments are supported:
- SecurityAssessment stringId 
- The OCID of the security assessment.
- Filters
List<GetSecurity Assessment Findings Change Audit Logs Filter> 
- FindingKey string
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- FindingTitle string
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- IsRisk boolDeferred 
- A filter to check findings whose risks were deferred by the user.
- ModifiedBy 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.
- TimeUpdated stringGreater Than Or Equal To 
- Search for resources that were updated after a specific date. Specifying this parameter corresponding timeUpdatedGreaterThanOrEqualToparameter 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.
- TimeUpdated stringLess Than 
- Search for resources that were updated before a specific date. Specifying this parameter corresponding timeUpdatedLessThanparameter 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.
- TimeValid stringUntil Greater Than Or Equal To 
- Specifying - TimeValidUntilGreaterThanOrEqualToQueryParamparameter 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 
- TimeValid stringUntil Less Than 
- Specifying - TimeValidUntilLessThanQueryParamparameter 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 
- SecurityAssessment stringId 
- The OCID of the security assessment.
- Filters
[]GetSecurity Assessment Findings Change Audit Logs Filter 
- FindingKey string
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- FindingTitle string
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- IsRisk boolDeferred 
- A filter to check findings whose risks were deferred by the user.
- ModifiedBy 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.
- TimeUpdated stringGreater Than Or Equal To 
- Search for resources that were updated after a specific date. Specifying this parameter corresponding timeUpdatedGreaterThanOrEqualToparameter 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.
- TimeUpdated stringLess Than 
- Search for resources that were updated before a specific date. Specifying this parameter corresponding timeUpdatedLessThanparameter 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.
- TimeValid stringUntil Greater Than Or Equal To 
- Specifying - TimeValidUntilGreaterThanOrEqualToQueryParamparameter 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 
- TimeValid stringUntil Less Than 
- Specifying - TimeValidUntilLessThanQueryParamparameter 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 
- securityAssessment StringId 
- The OCID of the security assessment.
- filters
List<GetSecurity Assessment Findings Change Audit Logs Filter> 
- findingKey String
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- findingTitle String
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- isRisk BooleanDeferred 
- A filter to check findings whose risks were deferred by the user.
- modifiedBy 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.
- timeUpdated StringGreater Than Or Equal To 
- Search for resources that were updated after a specific date. Specifying this parameter corresponding timeUpdatedGreaterThanOrEqualToparameter 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.
- timeUpdated StringLess Than 
- Search for resources that were updated before a specific date. Specifying this parameter corresponding timeUpdatedLessThanparameter 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.
- timeValid StringUntil Greater Than Or Equal To 
- Specifying - TimeValidUntilGreaterThanOrEqualToQueryParamparameter 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 
- timeValid StringUntil Less Than 
- Specifying - TimeValidUntilLessThanQueryParamparameter 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 
- securityAssessment stringId 
- The OCID of the security assessment.
- filters
GetSecurity Assessment Findings Change Audit Logs Filter[] 
- findingKey string
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- findingTitle string
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- isRisk booleanDeferred 
- A filter to check findings whose risks were deferred by the user.
- modifiedBy 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.
- timeUpdated stringGreater Than Or Equal To 
- Search for resources that were updated after a specific date. Specifying this parameter corresponding timeUpdatedGreaterThanOrEqualToparameter 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.
- timeUpdated stringLess Than 
- Search for resources that were updated before a specific date. Specifying this parameter corresponding timeUpdatedLessThanparameter 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.
- timeValid stringUntil Greater Than Or Equal To 
- Specifying - TimeValidUntilGreaterThanOrEqualToQueryParamparameter 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 
- timeValid stringUntil Less Than 
- Specifying - TimeValidUntilLessThanQueryParamparameter 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[GetSecurity 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 timeUpdatedGreaterThanOrEqualToparameter 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 timeUpdatedLessThanparameter 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 - TimeValidUntilGreaterThanOrEqualToQueryParamparameter 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 - TimeValidUntilLessThanQueryParamparameter 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 
- securityAssessment StringId 
- The OCID of the security assessment.
- filters List<Property Map>
- findingKey String
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- findingTitle String
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- isRisk BooleanDeferred 
- A filter to check findings whose risks were deferred by the user.
- modifiedBy 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.
- timeUpdated StringGreater Than Or Equal To 
- Search for resources that were updated after a specific date. Specifying this parameter corresponding timeUpdatedGreaterThanOrEqualToparameter 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.
- timeUpdated StringLess Than 
- Search for resources that were updated before a specific date. Specifying this parameter corresponding timeUpdatedLessThanparameter 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.
- timeValid StringUntil Greater Than Or Equal To 
- Specifying - TimeValidUntilGreaterThanOrEqualToQueryParamparameter 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 
- timeValid StringUntil Less Than 
- Specifying - TimeValidUntilLessThanQueryParamparameter 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:
- FindingsChange 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.
- SecurityAssessment stringId 
- Filters
List<GetSecurity Assessment Findings Change Audit Logs Filter> 
- FindingKey string
- The unique key that identifies the finding.
- FindingTitle string
- The short title for the finding whose risk is being modified.
- IsRisk 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.
- ModifiedBy 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.
- TimeUpdated stringGreater Than Or Equal To 
- TimeUpdated stringLess Than 
- TimeValid stringUntil Greater Than Or Equal To 
- TimeValid stringUntil Less Than 
- FindingsChange []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.
- SecurityAssessment stringId 
- Filters
[]GetSecurity Assessment Findings Change Audit Logs Filter 
- FindingKey string
- The unique key that identifies the finding.
- FindingTitle string
- The short title for the finding whose risk is being modified.
- IsRisk 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.
- ModifiedBy 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.
- TimeUpdated stringGreater Than Or Equal To 
- TimeUpdated stringLess Than 
- TimeValid stringUntil Greater Than Or Equal To 
- TimeValid stringUntil Less Than 
- findingsChange 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.
- securityAssessment StringId 
- filters
List<GetSecurity Assessment Findings Change Audit Logs Filter> 
- findingKey String
- The unique key that identifies the finding.
- findingTitle String
- The short title for the finding whose risk is being modified.
- isRisk 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.
- modifiedBy 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.
- timeUpdated StringGreater Than Or Equal To 
- timeUpdated StringLess Than 
- timeValid StringUntil Greater Than Or Equal To 
- timeValid StringUntil Less Than 
- findingsChange 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.
- securityAssessment stringId 
- filters
GetSecurity Assessment Findings Change Audit Logs Filter[] 
- findingKey string
- The unique key that identifies the finding.
- findingTitle string
- The short title for the finding whose risk is being modified.
- isRisk 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.
- modifiedBy 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.
- timeUpdated stringGreater Than Or Equal To 
- timeUpdated stringLess Than 
- timeValid stringUntil Greater Than Or Equal To 
- timeValid stringUntil Less Than 
- findings_change_ Sequence[Getaudit_ log_ collections 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[GetSecurity 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 
- findingsChange 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.
- securityAssessment StringId 
- filters List<Property Map>
- findingKey String
- The unique key that identifies the finding.
- findingTitle String
- The short title for the finding whose risk is being modified.
- isRisk 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.
- modifiedBy 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.
- timeUpdated StringGreater Than Or Equal To 
- timeUpdated StringLess Than 
- timeValid StringUntil Greater Than Or Equal To 
- timeValid StringUntil Less Than 
Supporting Types
GetSecurityAssessmentFindingsChangeAuditLogsFilter       
GetSecurityAssessmentFindingsChangeAuditLogsFindingsChangeAuditLogCollection           
- Items
List<GetSecurity Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item> 
- An array of finding risk change audit log summary objects.
- Items
[]GetSecurity Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item 
- An array of finding risk change audit log summary objects.
- items
List<GetSecurity Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item> 
- An array of finding risk change audit log summary objects.
- items
GetSecurity Assessment Findings Change Audit Logs Findings Change Audit Log Collection Item[] 
- An array of finding risk change audit log summary objects.
- items
Sequence[GetSecurity 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            
- AssessmentId string
- The OCID of the latest security assessment.
- FindingKey string
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- FindingTitle string
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- IsRisk 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.
- ModifiedBy string
- A filter to check which user modified the risk level of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment by Oracle.
- PreviousSeverity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The 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.
- AssessmentId string
- The OCID of the latest security assessment.
- FindingKey string
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- FindingTitle string
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- IsRisk 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.
- ModifiedBy string
- A filter to check which user modified the risk level of the finding.
- OracleDefined stringSeverity 
- The severity of the finding as determined by security assessment by Oracle.
- PreviousSeverity 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.
- TargetId string
- The OCID of the target database.
- TimeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- TimeValid stringUntil 
- The 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.
- assessmentId String
- The OCID of the latest security assessment.
- findingKey String
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- findingTitle String
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- isRisk 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.
- modifiedBy String
- A filter to check which user modified the risk level of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment by Oracle.
- previousSeverity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The 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.
- assessmentId string
- The OCID of the latest security assessment.
- findingKey string
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- findingTitle string
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- isRisk 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.
- modifiedBy string
- A filter to check which user modified the risk level of the finding.
- oracleDefined stringSeverity 
- The severity of the finding as determined by security assessment by Oracle.
- previousSeverity 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.
- targetId string
- The OCID of the target database.
- timeUpdated string
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid stringUntil 
- The 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.
- assessmentId String
- The OCID of the latest security assessment.
- findingKey String
- The unique key that identifies the finding. It is a string and unique within a security assessment.
- findingTitle String
- The unique title that identifies the finding. It is a string and unique within a security assessment.
- isRisk 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.
- modifiedBy String
- A filter to check which user modified the risk level of the finding.
- oracleDefined StringSeverity 
- The severity of the finding as determined by security assessment by Oracle.
- previousSeverity 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.
- targetId String
- The OCID of the target database.
- timeUpdated String
- The date and time the risk level of finding was last updated, in the format defined by RFC3339.
- timeValid StringUntil 
- The 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 ociTerraform Provider.