github.com/microsoft/moc@v0.17.1/rpc/common/moc_common_storageinfo.proto (about)

     1  
     2  // Copyright (c) Microsoft Corporation.
     3  // Licensed under the Apache v2.0 license.
     4  
     5  syntax = "proto3";
     6  option go_package = "github.com/microsoft/moc/rpc/common";
     7  package moc;
     8  import "moc_common_common.proto";
     9  
    10  
    11  message StorageContainerInfo {
    12  	Capacity capacity  = 1;
    13  	Latency latency	= 2;
    14  	Status status = 7;
    15  }
    16  
    17  message Capacity {
    18  	uint64 totalBytes = 1;
    19  	uint64 availableBytes = 2;
    20  }
    21  
    22  message Latency {
    23  	uint64 iops = 1;
    24  }