github.com/getong/docker@v1.13.1/api/types/plugin_env.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  // PluginEnv plugin env
     7  // swagger:model PluginEnv
     8  type PluginEnv struct {
     9  
    10  	// description
    11  	// Required: true
    12  	Description string `json:"Description"`
    13  
    14  	// name
    15  	// Required: true
    16  	Name string `json:"Name"`
    17  
    18  	// settable
    19  	// Required: true
    20  	Settable []string `json:"Settable"`
    21  
    22  	// value
    23  	// Required: true
    24  	Value *string `json:"Value"`
    25  }