Skip to content
This repository was archived by the owner on Oct 26, 2019. It is now read-only.

Commit 5598fc4

Browse files
committed
Generate 1.33 version
1 parent 8cb6929 commit 5598fc4

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
},
2525
"extra": {
2626
"branch-alias": {
27-
"4.1.32": "4.1.32.x-dev"
27+
"4.1.33": "4.1.33.x-dev"
2828
}
2929
},
3030
"minimum-stability": "dev",

docker-swagger.yaml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ produces:
1919
consumes:
2020
- "application/json"
2121
- "text/plain"
22-
basePath: "/v1.32"
22+
basePath: "/v1.33"
2323
info:
2424
title: "Docker Engine API"
25-
version: "1.32"
25+
version: "1.33"
2626
x-logo:
2727
url: "https://docs.docker.com/images/logo-docker-main.png"
2828
description: |
@@ -44,18 +44,19 @@ info:
4444
4545
The API is usually changed in each release of Docker, so API calls are versioned to ensure that clients don't break.
4646
47-
For Docker Engine 17.07, the API version is 1.31. To lock to this version, you prefix the URL with `/v1.31`. For example, calling `/info` is the same as calling `/v1.31/info`.
47+
For Docker Engine 17.09, the API version is 1.32. To lock to this version, you prefix the URL with `/v1.32`. For example, calling `/info` is the same as calling `/v1.32/info`.
4848
4949
Engine releases in the near future should support this version of the API, so your client will continue to work even if it is talking to a newer Engine.
5050
5151
In previous versions of Docker, it was possible to access the API without providing a version. This behaviour is now deprecated will be removed in a future version of Docker.
5252
5353
The API uses an open schema model, which means server may add extra properties to responses. Likewise, the server will ignore any extra query parameters and request body properties. When you write clients, you need to ignore additional properties in responses to ensure they do not break when talking to newer Docker daemons.
5454
55-
This documentation is for version 1.32 of the API. Use this table to find documentation for previous versions of the API:
55+
This documentation is for version 1.33 of the API. Use this table to find documentation for previous versions of the API:
5656
5757
Docker version | API version | Changes
5858
----------------|-------------|---------
59+
17.09.x | [1.31](https://docs.docker.com/engine/api/v1.32/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-32-api-changes)
5960
17.07.x | [1.31](https://docs.docker.com/engine/api/v1.31/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-31-api-changes)
6061
17.06.x | [1.30](https://docs.docker.com/engine/api/v1.30/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-30-api-changes)
6162
17.05.x | [1.29](https://docs.docker.com/engine/api/v1.29/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-29-api-changes)
@@ -144,6 +145,10 @@ tags:
144145
x-displayName: "Secrets"
145146
description: |
146147
Secrets are sensitive data that can be used by services. Swarm mode must be enabled for these endpoints to work.
148+
- name: "Config"
149+
x-displayName: "Configs"
150+
description: |
151+
Configs are application configurations that can be used by services. Swarm mode must be enabled for these endpoints to work.
147152
# System things
148153
- name: "Plugin"
149154
x-displayName: "Plugins"
@@ -6932,16 +6937,20 @@ paths:
69326937
description: |
69336938
A JSON encoded value of filters (a `map[string][]string`) to process on the event list. Available filters:
69346939
6940+
- `config=<string>` config name or ID
69356941
- `container=<string>` container name or ID
69366942
- `daemon=<string>` daemon name or ID
69376943
- `event=<string>` event type
69386944
- `image=<string>` image name or ID
69396945
- `label=<string>` image or container label
69406946
- `network=<string>` network name or ID
6947+
- `node=<string>` node ID
69416948
- `plugin`=<string> plugin name or ID
69426949
- `scope`=<string> local or swarm
6943-
- `type=<string>` object to filter by, one of `container`, `image`, `volume`, `network`, `daemon`, `plugin`, `node`, `service` or `secret`
6944-
- `volume=<string>` volume name or ID
6950+
- `secret=<string>` secret name or ID
6951+
- `service=<string>` service name or ID
6952+
- `type=<string>` object to filter by, one of `container`, `image`, `volume`, `network`, `daemon`, `plugin`, `node`, `service`, `secret` or `config`
6953+
- `volume=<string>` volume name
69456954
type: "string"
69466955
tags: ["System"]
69476956
/system/df:

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static function create($httpClient = null)
3434
if (null === $httpClient) {
3535
$httpClient = \Http\Discovery\HttpClientDiscovery::find();
3636
$plugins = [];
37-
$uri = \Http\Discovery\UriFactoryDiscovery::find()->createUri('v1.32');
37+
$uri = \Http\Discovery\UriFactoryDiscovery::find()->createUri('v1.33');
3838
$plugins[] = new \Http\Client\Common\Plugin\AddPathPlugin($uri);
3939
$httpClient = new \Http\Client\Common\PluginClient($httpClient, $plugins);
4040
}

0 commit comments

Comments
 (0)