github.com/Heebron/moby@v0.0.0-20221111184709-6eab4f55faf7/api/types/container/create_response.go (about)

     1  package container
     2  
     3  // This file was generated by the swagger tool.
     4  // Editing this file might prove futile when you re-run the swagger generate command
     5  
     6  // CreateResponse ContainerCreateResponse
     7  //
     8  // OK response to ContainerCreate operation
     9  // swagger:model CreateResponse
    10  type CreateResponse struct {
    11  
    12  	// The ID of the created container
    13  	// Required: true
    14  	ID string `json:"Id"`
    15  
    16  	// Warnings encountered when creating the container
    17  	// Required: true
    18  	Warnings []string `json:"Warnings"`
    19  }