mirror of
https://github.com/docker/cli.git
synced 2026-09-25 08:50:37 -04:00
Update swagger spec for plugin upgrade
This was added in 03c694973968f63743ed53cef83d0b7455695081 but spec was not updated. Signed-off-by: Brian Goff <cpuguy83@gmail.com> Upstream-commit: ae48cd04dacddbab50839be620b1f659ca322b7c Component: engine
This commit is contained in:
@@ -6648,6 +6648,69 @@ paths:
|
||||
required: true
|
||||
type: "string"
|
||||
tags: ["Plugin"]
|
||||
/plugins/{name}/upgrade:
|
||||
post:
|
||||
summary: "Upgrade a plugin"
|
||||
operationId: "PluginUpgrade"
|
||||
responses:
|
||||
204:
|
||||
description: "no error"
|
||||
404:
|
||||
description: "plugin not installed"
|
||||
schema:
|
||||
$ref: "#/definitions/ErrorResponse"
|
||||
500:
|
||||
description: "server error"
|
||||
schema:
|
||||
$ref: "#/definitions/ErrorResponse"
|
||||
parameters:
|
||||
- name: "name"
|
||||
in: "path"
|
||||
description: "The name of the plugin. The `:latest` tag is optional, and is the default if omitted."
|
||||
required: true
|
||||
type: "string"
|
||||
- name: "remote"
|
||||
in: "query"
|
||||
description: |
|
||||
Remote reference to upgrade to.
|
||||
|
||||
The `:latest` tag is optional, and is used as the default if omitted.
|
||||
required: true
|
||||
type: "string"
|
||||
- name: "X-Registry-Auth"
|
||||
in: "header"
|
||||
description: "A base64-encoded auth configuration to use when pulling a plugin from a registry. [See the authentication section for details.](#section/Authentication)"
|
||||
type: "string"
|
||||
- name: "body"
|
||||
in: "body"
|
||||
schema:
|
||||
type: "array"
|
||||
items:
|
||||
description: "Describes a permission accepted by the user upon installing the plugin."
|
||||
type: "object"
|
||||
properties:
|
||||
Name:
|
||||
type: "string"
|
||||
Description:
|
||||
type: "string"
|
||||
Value:
|
||||
type: "array"
|
||||
items:
|
||||
type: "string"
|
||||
example:
|
||||
- Name: "network"
|
||||
Description: ""
|
||||
Value:
|
||||
- "host"
|
||||
- Name: "mount"
|
||||
Description: ""
|
||||
Value:
|
||||
- "/data"
|
||||
- Name: "device"
|
||||
Description: ""
|
||||
Value:
|
||||
- "/dev/cpu_dma_latency"
|
||||
tags: ["Plugin"]
|
||||
/plugins/create:
|
||||
post:
|
||||
summary: "Create a plugin"
|
||||
|
||||
Reference in New Issue
Block a user