github.com/moby/docker@v26.1.3+incompatible/api/types/graph_driver_data.go (about)

     1  package types
     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  // GraphDriverData Information about the storage driver used to store the container's and
     7  // image's filesystem.
     8  //
     9  // swagger:model GraphDriverData
    10  type GraphDriverData struct {
    11  
    12  	// Low-level storage metadata, provided as key/value pairs.
    13  	//
    14  	// This information is driver-specific, and depends on the storage-driver
    15  	// in use, and should be used for informational purposes only.
    16  	//
    17  	// Required: true
    18  	Data map[string]string `json:"Data"`
    19  
    20  	// Name of the storage driver.
    21  	// Required: true
    22  	Name string `json:"Name"`
    23  }