1/*
2 * HCS API
3 *
4 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5 *
6 * API version: 2.1
7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
8 */
9
10package hcsschema
11
12//  Storage runtime statistics
13type StorageStats struct {
14	ReadCountNormalized uint64 `json:"ReadCountNormalized,omitempty"`
15
16	ReadSizeBytes uint64 `json:"ReadSizeBytes,omitempty"`
17
18	WriteCountNormalized uint64 `json:"WriteCountNormalized,omitempty"`
19
20	WriteSizeBytes uint64 `json:"WriteSizeBytes,omitempty"`
21}
22