github.com/rawahars/moby@v24.0.4+incompatible/api/types/container/container_top.go (about)

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