...

Source file src/github.com/Microsoft/hcsshim/internal/hcs/schema2/container_memory_information.go

Documentation: github.com/Microsoft/hcsshim/internal/hcs/schema2

     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  
    10  package hcsschema
    11  
    12  //  memory usage as viewed from within the container
    13  type ContainerMemoryInformation struct {
    14  	TotalPhysicalBytes int32 `json:"TotalPhysicalBytes,omitempty"`
    15  
    16  	TotalUsage int32 `json:"TotalUsage,omitempty"`
    17  
    18  	CommittedBytes int32 `json:"CommittedBytes,omitempty"`
    19  
    20  	SharedCommittedBytes int32 `json:"SharedCommittedBytes,omitempty"`
    21  
    22  	CommitLimitBytes int32 `json:"CommitLimitBytes,omitempty"`
    23  
    24  	PeakCommitmentBytes int32 `json:"PeakCommitmentBytes,omitempty"`
    25  }
    26  

View as plain text