Show / Hide Table of Contents

Class ListTimeSeriesResponse

The ListTimeSeries response.

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

Properties

ETag

The ETag of the item.

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

ExecutionErrors

Query execution errors that may have caused the time series data returned to be incomplete.

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

NextPageToken

If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as page_token in the next call to this method.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

TimeSeries

One or more time series that match the filter included in the request.

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

Unit

The unit in which all time_series point values are reported. unit follows the UCUM format for units as seen in https://unitsofmeasure.org/ucum.html. If different time_series have different units (for example, because they come from different metric types, or a unit is absent), then unit will be "{not_a_unit}".

Declaration
[JsonProperty("unit")]
public virtual string Unit { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top