Show / Hide Table of Contents

Class SummarizeAwrDatabaseTopWaitEventsRequest

Inheritance
object
SummarizeAwrDatabaseTopWaitEventsRequest
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.OpsiService.Requests
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class SummarizeAwrDatabaseTopWaitEventsRequest : IOciRequest
Examples

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

Properties

AwrHubId

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

Unique Awr Hub identifier

Remarks

Required

AwrSourceDatabaseIdentifier

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

The internal ID of the database. The internal ID of the database is not the OCID. It can be retrieved from the following endpoint: /awrHubs/{awrHubId}/awrDatabases

Remarks

Required

BeginSnapshotIdentifierGreaterThanOrEqualTo

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

The optional greater than or equal to filter on the snapshot ID.

EndSnapshotIdentifierLessThanOrEqualTo

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

The optional less than or equal to query parameter to filter the snapshot Identifier.

InstanceNumber

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

The optional single value query parameter to filter by database instance number.

OpcRequestId

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

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

SessionType

Declaration
[HttpConverter(TargetEnum.Query, "sessionType")]
public SummarizeAwrDatabaseTopWaitEventsRequest.SessionTypeEnum? SessionType { get; set; }
Property Value
Type Description
SummarizeAwrDatabaseTopWaitEventsRequest.SessionTypeEnum?

The optional query parameter to filter ASH activities by FOREGROUND or BACKGROUND.

SortBy

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

The option to sort the AWR top event summary data.

SortOrder

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

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

TimeGreaterThanOrEqualTo

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

The optional greater than or equal to query parameter to filter the timestamp. The timestamp format to be followed is: YYYY-MM-DDTHH:MM:SSZ, example 2020-12-03T19:00:53Z

TimeLessThanOrEqualTo

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

The optional less than or equal to query parameter to filter the timestamp. The timestamp format to be followed is: YYYY-MM-DDTHH:MM:SSZ, example 2020-12-03T19:00:53Z

TopN

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

The optional query parameter to filter the number of top categories to be returned.

Implements

IOciRequest
In this article
Back to top