Show / Hide Table of Contents

Class QueryDiagnosisSummaryDetails

Query filters for retrieving diagnosis summaries.

Inheritance
object
QueryDiagnosisSummaryDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ClusterhealthService.Models
Assembly: OCI.DotNetSDK.Clusterhealth.dll
Syntax
public class QueryDiagnosisSummaryDetails

Properties

InstanceIds

Declaration
[Required(ErrorMessage = "InstanceIds is required.")]
[JsonProperty(PropertyName = "instanceIds")]
public List<string> InstanceIds { get; set; }
Property Value
Type Description
List<string>

A list of instance OCIDs to match.

Remarks

Required

TestType

Declaration
[JsonProperty(PropertyName = "testType")]
[JsonConverter(typeof(StringEnumConverter))]
public QueryDiagnosisSummaryDetails.TestTypeEnum? TestType { get; set; }
Property Value
Type Description
QueryDiagnosisSummaryDetails.TestTypeEnum?

The test type, PASSIVE or ACTIVE

TimeTestRunIntervalEnd

Declaration
[JsonProperty(PropertyName = "timeTestRunIntervalEnd")]
public DateTime? TimeTestRunIntervalEnd { get; set; }
Property Value
Type Description
DateTime?

End of the time range for tests run, in RFC 3339 format.

TimeTestRunIntervalStart

Declaration
[JsonProperty(PropertyName = "timeTestRunIntervalStart")]
public DateTime? TimeTestRunIntervalStart { get; set; }
Property Value
Type Description
DateTime?

Start of the time range for tests run, in RFC 3339 format.

In this article
Back to top