github.com/getong/docker@v1.13.1/api/types/container/container_create.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/swagger-gen.sh
     8  // ----------------------------------------------------------------------------
     9  
    10  // ContainerCreateCreatedBody container create created body
    11  // swagger:model ContainerCreateCreatedBody
    12  type ContainerCreateCreatedBody struct {
    13  
    14  	// The ID of the created container
    15  	// Required: true
    16  	ID string `json:"Id"`
    17  
    18  	// Warnings encountered when creating the container
    19  	// Required: true
    20  	Warnings []string `json:"Warnings"`
    21  }