Show / Hide Table of Contents

Class TimeSeriesDescriptor

A descriptor for the labels and points in a time series.

Inheritance
System.Object
TimeSeriesDescriptor
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Monitoring.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class TimeSeriesDescriptor : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LabelDescriptors

Descriptors for the labels.

Declaration
[JsonProperty("labelDescriptors")]
public virtual IList<LabelDescriptor> LabelDescriptors { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<LabelDescriptor>

PointDescriptors

Descriptors for the point data value columns.

Declaration
[JsonProperty("pointDescriptors")]
public virtual IList<ValueDescriptor> PointDescriptors { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ValueDescriptor>

Implements

IDirectResponseSchema
Back to top