Show / Hide Table of Contents

Class ValueDescriptor

A descriptor for the value columns in a data point.

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

Properties

ETag

The ETag of the item.

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

Key

The value key.

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

MetricKind

The value stream kind.

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

Unit

The unit in which time_series point values are reported. unit follows the UCUM format for units as seen in https://unitsofmeasure.org/ucum.html. unit is only valid if value_type is INTEGER, DOUBLE, DISTRIBUTION.

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

ValueType

The value type.

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

Implements

IDirectResponseSchema
Back to top