github.com/zhouyu0/docker-note@v0.0.0-20190722021225-b8d3825084db/api/types/container/container_top.go (about)

     1  package container
     2  
     3  // ----------------------------------------------------------------------------
     4  // DO NOT EDIT THIS FILE
     5  // This file was generated by `swagger generate operation`
     6  //
     7  // See hack/generate-swagger-api.sh
     8  // ----------------------------------------------------------------------------
     9  
    10  // ContainerTopOKBody OK response to ContainerTop operation
    11  // swagger:model ContainerTopOKBody
    12  type ContainerTopOKBody struct {
    13  
    14  	// Each process running in the container, where each is process is an array of values corresponding to the titles
    15  	// Required: true
    16  	Processes [][]string `json:"Processes"`
    17  
    18  	// The ps column titles
    19  	// Required: true
    20  	Titles []string `json:"Titles"`
    21  }