Show / Hide Table of Contents

Class TimeSeriesData

Represents the values of a time series associated with a TimeSeriesDescriptor.

Inheritance
System.Object
TimeSeriesData
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 TimeSeriesData : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

LabelValues

The values of the labels in the time series identifier, given in the same order as the label_descriptors field of the TimeSeriesDescriptor associated with this object. Each value must have a value of the type given in the corresponding entry of label_descriptors.

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

PointData

The points in the time series.

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

Implements

IDirectResponseSchema
Back to top