京东云
This commit is contained in:
50
vendor/jdcloud-api/jdcloud-sdk-php/src/Ams/AmsClient.php
vendored
Normal file
50
vendor/jdcloud-api/jdcloud-sdk-php/src/Ams/AmsClient.php
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/**
|
||||
* Ams
|
||||
*
|
||||
* @category Jdcloud
|
||||
* @package Jdcloud\Ams
|
||||
* @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\Ams;
|
||||
|
||||
use Jdcloud\JdCloudClient;
|
||||
use Jdcloud\Api\Service;
|
||||
use Jdcloud\Api\DocModel;
|
||||
use Jdcloud\Api\ApiProvider;
|
||||
use Jdcloud\PresignUrlMiddleware;
|
||||
|
||||
/**
|
||||
* Client used to interact with ams.
|
||||
*
|
||||
* @method \Jdcloud\Result describeStreamsInput(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeStreamsInputAsync(array $args = [])
|
||||
* @method \Jdcloud\Result describeAuthenticate(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeAuthenticateAsync(array $args = [])
|
||||
*/
|
||||
class AmsClient extends JdCloudClient
|
||||
{
|
||||
public function __construct(array $args)
|
||||
{
|
||||
$args['with_resolved'] = function (array $args) {
|
||||
$this->getHandlerList()->appendInit(
|
||||
PresignUrlMiddleware::wrap(
|
||||
$this,
|
||||
$args['endpoint_provider'],
|
||||
[
|
||||
'operations' => [
|
||||
],
|
||||
'service' => 'ams',
|
||||
'presign_param' => 'PresignedUrl',
|
||||
]
|
||||
),
|
||||
'ams'
|
||||
);
|
||||
};
|
||||
|
||||
parent::__construct($args);
|
||||
}
|
||||
}
|
||||
6
vendor/jdcloud-api/jdcloud-sdk-php/src/Ams/ChangeLog.md
vendored
Normal file
6
vendor/jdcloud-api/jdcloud-sdk-php/src/Ams/ChangeLog.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# 更新历史 #
|
||||
API版本:1.0.0
|
||||
|
||||
|发布时间|版本号|更新|说明|
|
||||
|---|---|---|---|
|
||||
|2018-09-10|1.0.0|初始版本|京东云 视频云 应用管理平台 业务接口|
|
||||
Reference in New Issue
Block a user