public sealed class TimeSeries : IMessage<TimeSeries>, IEquatable<TimeSeries>, IDeepCloneable<TimeSeries>, IBufferMessage, IMessage
Reference documentation and code samples for the BigQuery Migration v2 API class TimeSeries.
The metrics object for a SubTask.
Implements
IMessageTimeSeries, IEquatableTimeSeries, IDeepCloneableTimeSeries, IBufferMessage, IMessageNamespace
Google.Cloud.BigQuery.Migration.V2Assembly
Google.Cloud.BigQuery.Migration.V2.dll
Constructors
TimeSeries()
public TimeSeries()
TimeSeries(TimeSeries)
public TimeSeries(TimeSeries other)
Parameter | |
---|---|
Name | Description |
other | TimeSeries |
Properties
Metric
public string Metric { get; set; }
Required. The name of the metric.
If the metric is not known by the service yet, it will be auto-created.
Property Value | |
---|---|
Type | Description |
string |
MetricKind
public MetricDescriptor.Types.MetricKind MetricKind { get; set; }
Optional. The metric kind of the time series.
If present, it must be the same as the metric kind of the associated
metric. If the associated metric's descriptor must be auto-created, then
this field specifies the metric kind of the new descriptor and must be
either GAUGE
(the default) or CUMULATIVE
.
Property Value | |
---|---|
Type | Description |
MetricDescriptorTypesMetricKind |
Points
public RepeatedField<Point> Points { get; }
Required. The data points of this time series. When listing time series, points are returned in reverse time order.
When creating a time series, this field must contain exactly one point and
the point's type must be the same as the value type of the associated
metric. If the associated metric's descriptor must be auto-created, then
the value type of the descriptor is determined by the point's type, which
must be BOOL
, INT64
, DOUBLE
, or DISTRIBUTION
.
Property Value | |
---|---|
Type | Description |
RepeatedFieldPoint |
ValueType
public MetricDescriptor.Types.ValueType ValueType { get; set; }
Required. The value type of the time series.
Property Value | |
---|---|
Type | Description |
MetricDescriptorTypesValueType |