Show / Hide Table of Contents

Class GetAwrReportRequest

Inheritance
object
GetAwrReportRequest
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 GetAwrReportRequest : IOciRequest
Examples

Click here to see an example of how to use GetAwrReport 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

AWR source database identifier.

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.

ReportFormat

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

The format of the AWR report. Default report format is HTML.

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

Implements

IOciRequest
In this article
Back to top