Show / Hide Table of Contents

Class ListFindingsChangeAuditLogsRequest

Inheritance
object
ListFindingsChangeAuditLogsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Requests
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class ListFindingsChangeAuditLogsRequest : IOciRequest
Examples

Click here to see an example of how to use ListFindingsChangeAuditLogs request.

Properties

FindingKey

Declaration
[HttpConverter(TargetEnum.Query, "findingKey")]
public string FindingKey { get; set; }
Property Value
Type Description
string

The unique key that identifies the finding. It is a string and unique within a security assessment.

FindingTitle

Declaration
[HttpConverter(TargetEnum.Query, "findingTitle")]
public string FindingTitle { get; set; }
Property Value
Type Description
string

The unique title that identifies the finding. It is a string and unique within a security assessment.

IsRiskDeferred

Declaration
[HttpConverter(TargetEnum.Query, "isRiskDeferred")]
public bool? IsRiskDeferred { get; set; }
Property Value
Type Description
bool?

A filter to check findings whose risks were deferred by the user.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

For list pagination. The maximum number of items to return per page in a paginated "List" call. For details about how pagination works, see List Pagination.

ModifiedBy

Declaration
[HttpConverter(TargetEnum.Query, "modifiedBy")]
public string ModifiedBy { get; set; }
Property Value
Type Description
string

A filter to check which user modified the risk level of the finding.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique identifier for the request.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

For list pagination. The page token representing the page at which to start retrieving results. It is usually retrieved from a previous "List" call. For details about how pagination works, see List Pagination.

SecurityAssessmentId

Declaration
[Required(ErrorMessage = "SecurityAssessmentId is required.")]
[HttpConverter(TargetEnum.Path, "securityAssessmentId")]
public string SecurityAssessmentId { get; set; }
Property Value
Type Description
string

The OCID of the security assessment.

Remarks

Required

Severity

Declaration
[HttpConverter(TargetEnum.Query, "severity")]
public ListFindingsChangeAuditLogsRequest.SeverityEnum? Severity { get; set; }
Property Value
Type Description
ListFindingsChangeAuditLogsRequest.SeverityEnum?

A filter to return only findings of a particular risk level.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListFindingsChangeAuditLogsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListFindingsChangeAuditLogsRequest.SortByEnum?

The field to sort by. You can specify only one sort order(sortOrder). The default order for timeUpdated is descending.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListFindingsChangeAuditLogsRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListFindingsChangeAuditLogsRequest.SortOrderEnum?

The sort order to use, either ascending (ASC) or descending (DESC).

TimeUpdatedGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeUpdatedGreaterThanOrEqualTo")]
public DateTime? TimeUpdatedGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

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.

TimeUpdatedLessThan

Declaration
[HttpConverter(TargetEnum.Query, "timeUpdatedLessThan")]
public DateTime? TimeUpdatedLessThan { get; set; }
Property Value
Type Description
DateTime?

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.

TimeValidUntilGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeValidUntilGreaterThanOrEqualTo")]
public DateTime? TimeValidUntilGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

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

TimeValidUntilLessThan

Declaration
[HttpConverter(TargetEnum.Query, "timeValidUntilLessThan")]
public DateTime? TimeValidUntilLessThan { get; set; }
Property Value
Type Description
DateTime?

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

Implements

IOciRequest
In this article
Back to top