/** *

Describes the metric data point.

*/ export interface _MetricDatapoint { /** *

The average.

*/ average?: number; /** *

The maximum.

*/ maximum?: number; /** *

The minimum.

*/ minimum?: number; /** *

The sample count.

*/ sampleCount?: number; /** *

The sum.

*/ sum?: number; /** *

The timestamp (e.g., 1479816991.349).

*/ timestamp?: Date | string | number; /** *

The unit.

*/ unit?: "Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None" | string; } export interface _UnmarshalledMetricDatapoint extends _MetricDatapoint { /** *

The timestamp (e.g., 1479816991.349).

*/ timestamp?: Date; }