# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class MetricEnum(object):
"""Implementation of the 'metric' enum.
TODO: type enum description here.
Attributes:
KSYSTEMUSAGEBYTES: TODO: type description here.
KCHUNKBYTESPHYSICAL: TODO: type description here.
KNUMBYTESWRITTEN: TODO: type description here.
KNUMBYTESREAD: TODO: type description here.
KPEAKREADTHROUGHPUT: TODO: type description here.
KPEAKWRITETHROUGHPUT: TODO: type description here.
"""
KSYSTEMUSAGEBYTES = 'kSystemUsageBytes'
KCHUNKBYTESPHYSICAL = 'kChunkBytesPhysical'
KNUMBYTESWRITTEN = 'kNumBytesWritten'
KNUMBYTESREAD = 'kNumBytesRead'
KPEAKREADTHROUGHPUT = 'kPeakReadThroughput'
KPEAKWRITETHROUGHPUT = 'kPeakWriteThroughput'