Show / Hide Table of Contents

Class QueryTimeSeriesRequest

The QueryTimeSeries request.

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

Properties

ETag

The ETag of the item.

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

PageSize

A positive number that is the maximum number of time_series_data to return.

Declaration
[JsonProperty("pageSize")]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

If this field is not empty then it must contain the nextPageToken value returned by a previous call to this method. Using this field causes the method to return additional results from the previous method call.

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

Query

Required. The query in the monitoring query language format. The default time zone is in UTC.

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

Implements

IDirectResponseSchema
Back to top