Show / Hide Table of Contents

Class CreateTimeSeriesRequest

The CreateTimeSeries request.

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

Properties

ETag

The ETag of the item.

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

TimeSeries

Required. The new data to be added to a list of time series. Adds at most one data point to each of several time series. The new data point must be more recent than any other point in its time series. Each TimeSeries value must fully specify a unique time series by supplying all label values for the metric and the monitored resource.The maximum number of TimeSeries objects per Create request is 200.

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

Implements

IDirectResponseSchema
Back to top