京东云

This commit is contained in:
“wanyongkang”
2024-05-28 17:04:50 +08:00
parent f644932afb
commit f3c7432100
672 changed files with 209344 additions and 6593 deletions

View File

@@ -0,0 +1,8 @@
# 更新历史 #
API版本1.0.2
|发布时间|版本号|更新|说明|
|---|---|---|---|
| 2019-10-20|1.0.2|调整接口|更新下载证书接口|
| 2019-08-30|1.0.1|调整接口|下载证书接口新增服务器类型|
| 2018-05-04|1.0.0|初始版本|初始化版本|

View File

@@ -0,0 +1,60 @@
<?php
/**
* Ssl
*
* @category Jdcloud
* @package Jdcloud\Ssl
* @author Jdcloud <jdcloud-api@jd.com>
* @license Apache-2.0 http://www.apache.org/licenses/LICENSE-2.0
* @link https://www.jdcloud.com/help/faq
*/
namespace Jdcloud\Ssl;
use Jdcloud\JdCloudClient;
use Jdcloud\Api\Service;
use Jdcloud\Api\DocModel;
use Jdcloud\Api\ApiProvider;
use Jdcloud\PresignUrlMiddleware;
/**
* Client used to interact with ssl.
*
* @method \Jdcloud\Result describeCerts(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeCertsAsync(array $args = [])
* @method \Jdcloud\Result describeCert(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeCertAsync(array $args = [])
* @method \Jdcloud\Result deleteCerts(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteCertsAsync(array $args = [])
* @method \Jdcloud\Result uploadCert(array $args = [])
* @method \GuzzleHttp\Promise\Promise uploadCertAsync(array $args = [])
* @method \Jdcloud\Result downloadCert(array $args = [])
* @method \GuzzleHttp\Promise\Promise downloadCertAsync(array $args = [])
* @method \Jdcloud\Result updateCertName(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateCertNameAsync(array $args = [])
* @method \Jdcloud\Result updateCert(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateCertAsync(array $args = [])
*/
class SslClient extends JdCloudClient
{
public function __construct(array $args)
{
$args['with_resolved'] = function (array $args) {
$this->getHandlerList()->appendInit(
PresignUrlMiddleware::wrap(
$this,
$args['endpoint_provider'],
[
'operations' => [
],
'service' => 'ssl',
'presign_param' => 'PresignedUrl',
]
),
'ssl'
);
};
parent::__construct($args);
}
}