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

Commit 58b7edb

Browse files
committed
Generate 1.26 version
1 parent 2ad05f7 commit 58b7edb

File tree

94 files changed

+3268
-274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+3268
-274
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.25": "4.1.25.x-dev"
27+
"4.1.26": "4.1.26.x-dev"
2828
}
2929
},
3030
"minimum-stability": "dev",

docker-swagger.yaml

Lines changed: 375 additions & 99 deletions
Large diffs are not rendered by default.

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static function create($httpClient = null)
3030
if (null === $httpClient) {
3131
$httpClient = \Http\Discovery\HttpClientDiscovery::find();
3232
$plugins = [];
33-
$uri = \Http\Discovery\UriFactoryDiscovery::find()->createUri('v1.25');
33+
$uri = \Http\Discovery\UriFactoryDiscovery::find()->createUri('v1.26');
3434
$plugins[] = new \Http\Client\Common\Plugin\AddPathPlugin($uri);
3535
$httpClient = new \Http\Client\Common\PluginClient($httpClient, $plugins);
3636
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file has been auto generated by Jane,
7+
*
8+
* Do no edit it directly.
9+
*/
10+
11+
namespace Docker\API\Exception;
12+
13+
class ContainerDeleteConflictException extends \RuntimeException implements ClientException
14+
{
15+
private $errorResponse;
16+
17+
public function __construct(\Docker\API\Model\ErrorResponse $errorResponse)
18+
{
19+
parent::__construct('conflict', 409);
20+
$this->errorResponse = $errorResponse;
21+
}
22+
23+
public function getErrorResponse()
24+
{
25+
return $this->errorResponse;
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file has been auto generated by Jane,
7+
*
8+
* Do no edit it directly.
9+
*/
10+
11+
namespace Docker\API\Exception;
12+
13+
class ImageBuildBadRequestException extends \RuntimeException implements ClientException
14+
{
15+
private $errorResponse;
16+
17+
public function __construct(\Docker\API\Model\ErrorResponse $errorResponse)
18+
{
19+
parent::__construct('Bad parameter', 400);
20+
$this->errorResponse = $errorResponse;
21+
}
22+
23+
public function getErrorResponse()
24+
{
25+
return $this->errorResponse;
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file has been auto generated by Jane,
7+
*
8+
* Do no edit it directly.
9+
*/
10+
11+
namespace Docker\API\Exception;
12+
13+
class NodeDeleteServiceUnavailableException extends \RuntimeException implements ServerException
14+
{
15+
private $errorResponse;
16+
17+
public function __construct(\Docker\API\Model\ErrorResponse $errorResponse)
18+
{
19+
parent::__construct('node is not part of a swarm', 503);
20+
$this->errorResponse = $errorResponse;
21+
}
22+
23+
public function getErrorResponse()
24+
{
25+
return $this->errorResponse;
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file has been auto generated by Jane,
7+
*
8+
* Do no edit it directly.
9+
*/
10+
11+
namespace Docker\API\Exception;
12+
13+
class NodeInspectServiceUnavailableException extends \RuntimeException implements ServerException
14+
{
15+
private $errorResponse;
16+
17+
public function __construct(\Docker\API\Model\ErrorResponse $errorResponse)
18+
{
19+
parent::__construct('node is not part of a swarm', 503);
20+
$this->errorResponse = $errorResponse;
21+
}
22+
23+
public function getErrorResponse()
24+
{
25+
return $this->errorResponse;
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file has been auto generated by Jane,
7+
*
8+
* Do no edit it directly.
9+
*/
10+
11+
namespace Docker\API\Exception;
12+
13+
class NodeListBadRequestException extends \RuntimeException implements ClientException
14+
{
15+
private $errorResponse;
16+
17+
public function __construct(\Docker\API\Model\ErrorResponse $errorResponse)
18+
{
19+
parent::__construct('bad parameter', 400);
20+
$this->errorResponse = $errorResponse;
21+
}
22+
23+
public function getErrorResponse()
24+
{
25+
return $this->errorResponse;
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file has been auto generated by Jane,
7+
*
8+
* Do no edit it directly.
9+
*/
10+
11+
namespace Docker\API\Exception;
12+
13+
class NodeListNotFoundException extends \RuntimeException implements ClientException
14+
{
15+
private $errorResponse;
16+
17+
public function __construct(\Docker\API\Model\ErrorResponse $errorResponse)
18+
{
19+
parent::__construct('no such node', 404);
20+
$this->errorResponse = $errorResponse;
21+
}
22+
23+
public function getErrorResponse()
24+
{
25+
return $this->errorResponse;
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file has been auto generated by Jane,
7+
*
8+
* Do no edit it directly.
9+
*/
10+
11+
namespace Docker\API\Exception;
12+
13+
class NodeListServiceUnavailableException extends \RuntimeException implements ServerException
14+
{
15+
private $errorResponse;
16+
17+
public function __construct(\Docker\API\Model\ErrorResponse $errorResponse)
18+
{
19+
parent::__construct('node is not part of a swarm', 503);
20+
$this->errorResponse = $errorResponse;
21+
}
22+
23+
public function getErrorResponse()
24+
{
25+
return $this->errorResponse;
26+
}
27+
}

0 commit comments

Comments
 (0)