Show / Hide Table of Contents

Class SummarizeAttentionLogCountsRequest

Inheritance
object
SummarizeAttentionLogCountsRequest
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.DatabasemanagementService.Requests
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class SummarizeAttentionLogCountsRequest : IOciRequest
Examples

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

Properties

GroupBy

Declaration
[HttpConverter(TargetEnum.Query, "groupBy")]
public SummarizeAttentionLogCountsRequest.GroupByEnum? GroupBy { get; set; }
Property Value
Type Description
SummarizeAttentionLogCountsRequest.GroupByEnum?

The optional parameter used to group different attention logs.

IsRegularExpression

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

The flag to indicate whether the search text is regular expression or not.

Limit

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

The maximum number of records returned in the paginated response.

LogSearchText

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

The optional query parameter to filter the attention or alert logs by search text.

ManagedDatabaseId

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

The OCID of the Managed Database.

Remarks

Required

OpcNamedCredentialId

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

The OCID of the Named Credential.

OpcRequestId

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

The client request ID for tracing.

Page

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

The page token representing the page from where the next set of paginated results are retrieved. This is usually retrieved from a previous list call.

TimeGreaterThanOrEqualTo

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

The optional greater than or equal to timestamp to filter the logs.

TimeLessThanOrEqualTo

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

The optional less than or equal to timestamp to filter the logs.

TypeFilter

Declaration
[HttpConverter(TargetEnum.Query, "typeFilter")]
public SummarizeAttentionLogCountsRequest.TypeFilterEnum? TypeFilter { get; set; }
Property Value
Type Description
SummarizeAttentionLogCountsRequest.TypeFilterEnum?

The optional parameter to filter the attention or alert logs by type.

UrgencyFilter

Declaration
[HttpConverter(TargetEnum.Query, "urgencyFilter")]
public SummarizeAttentionLogCountsRequest.UrgencyFilterEnum? UrgencyFilter { get; set; }
Property Value
Type Description
SummarizeAttentionLogCountsRequest.UrgencyFilterEnum?

The optional parameter to filter the attention logs by urgency.

Implements

IOciRequest
In this article
Back to top