Show / Hide Table of Contents

Class SummarizeExternalClusterMetricsRequest

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

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

Properties

EndTime

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

The end of the time range set to retrieve metric data for the DB system and its members. Expressed in UTC in ISO-8601 format, which is yyyy-MM-dd'T'hh:mm:ss.sss'Z'.

Remarks

Required

ExternalClusterId

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

The OCID of the external cluster.

Remarks

Required

FilterByMetricNames

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

The filter used to retrieve a specific set of metrics by passing the desired metric names with a comma separator. Note that, by default, the service returns all supported metrics.

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.

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.

StartTime

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

The beginning of the time range set to retrieve metric data for the DB system and its members. Expressed in UTC in ISO-8601 format, which is yyyy-MM-dd'T'hh:mm:ss.sss'Z'.

Remarks

Required

Implements

IOciRequest
In this article
Back to top