public sealed class Point : IMessage<Point>, IEquatable<Point>, IDeepCloneable<Point>, IBufferMessage, IMessage
Reference documentation and code samples for the BigQuery Migration v2 API class Point.
A single data point in a time series.
Namespace
Google.Cloud.BigQuery.Migration.V2Assembly
Google.Cloud.BigQuery.Migration.V2.dll
Constructors
Point()
public Point()
Point(Point)
public Point(Point other)
Parameter | |
---|---|
Name | Description |
other |
Point |
Properties
Interval
public TimeInterval Interval { get; set; }
The time interval to which the data point applies. For GAUGE
metrics,
the start time does not need to be supplied, but if it is supplied, it must
equal the end time. For DELTA
metrics, the start and end time should
specify a non-zero interval, with subsequent points specifying contiguous
and non-overlapping intervals. For CUMULATIVE
metrics, the start and end
time should specify a non-zero interval, with subsequent points specifying
the same start time and increasing end times, until an event resets the
cumulative value to zero and sets a new start time for the following
points.
Property Value | |
---|---|
Type | Description |
TimeInterval |
Value
public TypedValue Value { get; set; }
The value of the data point.
Property Value | |
---|---|
Type | Description |
TypedValue |