Show / Hide Table of Contents

Class PointData

A point's value columns and time interval. Each point has one or more point values corresponding to the entries in point_descriptors field in the TimeSeriesDescriptor associated with this object.

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

Properties

ETag

The ETag of the item.

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

TimeInterval

The time interval associated with the point.

Declaration
[JsonProperty("timeInterval")]
public virtual TimeInterval TimeInterval { get; set; }
Property Value
Type Description
TimeInterval

Values

The values that make up the point.

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

Implements

IDirectResponseSchema
Back to top