Skip to content

Commit 9975533

Browse files
committed
Generated 2016-11-01 for live.
1 parent 14e7a67 commit 9975533

File tree

4 files changed

+95
-2
lines changed

4 files changed

+95
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.8.2228 - 2024-12-6
4+
- Generated 2016-11-01 for `live`.
5+
6+
37
## 1.8.2227 - 2024-12-6
48
-Release GetJobDetail, ListJobInfo.
59
-Modify GetTranscodeTask.

src/Live/V20161101/LiveApiResolver.php

+89
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@
247247
* @method DescribeLiveUserBillPrediction describeLiveUserBillPrediction(array $options = [])
248248
* @method DescribeLiveUserDomains describeLiveUserDomains(array $options = [])
249249
* @method DescribeLiveUserTags describeLiveUserTags(array $options = [])
250+
* @method DescribeLiveVerifyContent describeLiveVerifyContent(array $options = [])
250251
* @method DescribeMeterLiveBypassDuration describeMeterLiveBypassDuration(array $options = [])
251252
* @method DescribeMixStreamList describeMixStreamList(array $options = [])
252253
* @method DescribeRtcMPUEventSub describeRtcMPUEventSub(array $options = [])
@@ -308,6 +309,7 @@
308309
* @method ListPlaylistItems listPlaylistItems(array $options = [])
309310
* @method ListRtcMPUEventSubRecord listRtcMPUEventSubRecord(array $options = [])
310311
* @method ListRtcMPUTaskDetail listRtcMPUTaskDetail(array $options = [])
312+
* @method LiveUpstreamQosData liveUpstreamQosData(array $options = [])
311313
* @method MiguLivePullToPushStart miguLivePullToPushStart(array $options = [])
312314
* @method MiguLivePullToPushStatus miguLivePullToPushStatus(array $options = [])
313315
* @method ModifyCasterComponent modifyCasterComponent(array $options = [])
@@ -377,6 +379,7 @@
377379
* @method StopLiveStreamMonitor stopLiveStreamMonitor(array $options = [])
378380
* @method StopPlaylist stopPlaylist(array $options = [])
379381
* @method StopRtcAsrTask stopRtcAsrTask(array $options = [])
382+
* @method TagLiveResources tagLiveResources(array $options = [])
380383
* @method UnbanLiveMessageGroup unbanLiveMessageGroup(array $options = [])
381384
* @method UpdateCasterResourceGroup updateCasterResourceGroup(array $options = [])
382385
* @method UpdateCasterSceneAudio updateCasterSceneAudio(array $options = [])
@@ -5399,6 +5402,16 @@ class DescribeLiveUserTags extends Rpc
53995402
{
54005403
}
54015404

5405+
/**
5406+
* @method string getDomainName()
5407+
* @method $this withDomainName($value)
5408+
* @method string getOwnerId()
5409+
* @method $this withOwnerId($value)
5410+
*/
5411+
class DescribeLiveVerifyContent extends Rpc
5412+
{
5413+
}
5414+
54025415
/**
54035416
* @method string getEndTime()
54045417
* @method $this withEndTime($value)
@@ -6888,6 +6901,35 @@ class ListRtcMPUTaskDetail extends Rpc
68886901
{
68896902
}
68906903

6904+
/**
6905+
* @method string getCdnDomains()
6906+
* @method $this withCdnDomains($value)
6907+
* @method string getStartTime()
6908+
* @method $this withStartTime($value)
6909+
* @method string getCdnProvinces()
6910+
* @method $this withCdnProvinces($value)
6911+
* @method string getKwaiSidcs()
6912+
* @method $this withKwaiSidcs($value)
6913+
* @method string getKwaiTsc()
6914+
* @method $this withKwaiTsc($value)
6915+
* @method string getUpstreamDomains()
6916+
* @method $this withUpstreamDomains($value)
6917+
* @method string getEndTime()
6918+
* @method $this withEndTime($value)
6919+
* @method string getOwnerId()
6920+
* @method $this withOwnerId($value)
6921+
* @method string getCdnIsps()
6922+
* @method $this withCdnIsps($value)
6923+
* @method string getRegion()
6924+
* @method $this withRegion($value)
6925+
*/
6926+
class LiveUpstreamQosData extends Rpc
6927+
{
6928+
6929+
/** @var string */
6930+
public $scheme = 'https';
6931+
}
6932+
68916933
/**
68926934
* @method string getMiguData()
68936935
* @method $this withMiguData($value)
@@ -8644,6 +8686,53 @@ class StopRtcAsrTask extends Rpc
86448686
{
86458687
}
86468688

8689+
/**
8690+
* @method array getTag()
8691+
* @method array getResourceId()
8692+
* @method string getOwnerId()
8693+
* @method $this withOwnerId($value)
8694+
* @method string getResourceType()
8695+
* @method $this withResourceType($value)
8696+
*/
8697+
class TagLiveResources extends Rpc
8698+
{
8699+
8700+
/**
8701+
* @param array $tag
8702+
*
8703+
* @return $this
8704+
*/
8705+
public function withTag(array $tag)
8706+
{
8707+
$this->data['Tag'] = $tag;
8708+
foreach ($tag as $depth1 => $depth1Value) {
8709+
if(isset($depth1Value['Key'])){
8710+
$this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
8711+
}
8712+
if(isset($depth1Value['Value'])){
8713+
$this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
8714+
}
8715+
}
8716+
8717+
return $this;
8718+
}
8719+
8720+
/**
8721+
* @param array $resourceId
8722+
*
8723+
* @return $this
8724+
*/
8725+
public function withResourceId(array $resourceId)
8726+
{
8727+
$this->data['ResourceId'] = $resourceId;
8728+
foreach ($resourceId as $i => $iValue) {
8729+
$this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
8730+
}
8731+
8732+
return $this;
8733+
}
8734+
}
8735+
86478736
/**
86488737
* @method string getGroupId()
86498738
* @method $this withGroupId($value)

src/Release.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Release
1616
/**
1717
* Version of the SDK
1818
*/
19-
const VERSION = '1.8.2227';
19+
const VERSION = '1.8.2228';
2020

2121
/**
2222
* @param Event $event

src/endpoints.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"endpoint_map":{"cn-hangzhou":"vod.cn-shanghai.aliyuncs.com","ap-northeast-2-pop":"vod.aliyuncs.com","ap-southeast-2":"vod.aliyuncs.com","ap-southeast-3":"vod.aliyuncs.com","cn-beijing-finance-1":"vod.aliyuncs.com","cn-beijing-finance-pop":"vod.aliyuncs.com","cn-beijing-gov-1":"vod.aliyuncs.com","cn-beijing-nu16-b01":"vod.aliyuncs.com","cn-chengdu":"vod.aliyuncs.com","cn-edge-1":"vod.aliyuncs.com","cn-fujian":"vod.aliyuncs.com","cn-haidian-cm12-c01":"vod.aliyuncs.com","cn-hangzhou-bj-b01":"vod.aliyuncs.com","cn-hangzhou-finance":"vod.aliyuncs.com","cn-hangzhou-internal-prod-1":"vod.aliyuncs.com","cn-hangzhou-internal-test-1":"vod.aliyuncs.com","cn-hangzhou-internal-test-2":"vod.aliyuncs.com","cn-hangzhou-internal-test-3":"vod.aliyuncs.com","cn-hangzhou-test-306":"vod.aliyuncs.com","cn-hongkong-finance-pop":"vod.aliyuncs.com","cn-huhehaote":"vod.aliyuncs.com","cn-huhehaote-nebula-1":"vod.aliyuncs.com","cn-qingdao":"vod.aliyuncs.com","cn-qingdao-nebula":"vod.aliyuncs.com","cn-shanghai-et15-b01":"vod.aliyuncs.com","cn-shanghai-et2-b01":"vod.aliyuncs.com","cn-shanghai-finance-1":"vod.aliyuncs.com","cn-shanghai-inner":"vod.aliyuncs.com","cn-shanghai-internal-test-1":"vod.aliyuncs.com","cn-shenzhen-finance-1":"vod.aliyuncs.com","cn-shenzhen-inner":"vod.aliyuncs.com","cn-shenzhen-st4-d01":"vod.aliyuncs.com","cn-shenzhen-su18-b01":"vod.aliyuncs.com","cn-wuhan":"vod.aliyuncs.com","cn-wulanchabu":"vod.aliyuncs.com","cn-yushanfang":"vod.aliyuncs.com","cn-zhangbei":"vod.aliyuncs.com","cn-zhangbei-na61-b01":"vod.aliyuncs.com","cn-zhangjiakou-na62-a01":"vod.aliyuncs.com","cn-zhengzhou-nebula-1":"vod.aliyuncs.com","eu-west-1-oxs":"vod.aliyuncs.com","me-east-1":"vod.aliyuncs.com","rus-west-1-pop":"vod.aliyuncs.com","us-east-1":"vod.aliyuncs.com"},"endpoint_regional":"regional","standard":{"cn-beijing":"vod.cn-beijing.aliyuncs.com","cn-zhangjiakou":"vod.cn-zhangjiakou.aliyuncs.com","cn-shanghai":"vod.cn-shanghai.aliyuncs.com","cn-shenzhen":"vod.cn-shenzhen.aliyuncs.com","cn-hongkong":"vod.cn-hongkong.aliyuncs.com","ap-northeast-1":"vod.ap-northeast-1.aliyuncs.com","ap-southeast-1":"vod.ap-southeast-1.aliyuncs.com","ap-southeast-5":"vod.ap-southeast-5.aliyuncs.com","us-west-1":"vod.us-west-1.aliyuncs.com","eu-west-1":"vod.eu-west-1.aliyuncs.com","eu-central-1":"vod.eu-central-1.aliyuncs.com","ap-south-1":"vod.ap-south-1.aliyuncs.com","cn-north-2-gov-1":"vod.cn-north-2-gov-1.aliyuncs.com"},"regions":["cn-beijing","cn-zhangjiakou","cn-hangzhou","cn-shanghai","cn-shenzhen","cn-hongkong","ap-northeast-1","ap-southeast-1","ap-southeast-5","us-west-1","eu-west-1","eu-central-1","ap-south-1","cn-north-2-gov-1","ap-northeast-2-pop","ap-southeast-2","ap-southeast-3","cn-beijing-finance-1","cn-beijing-finance-pop","cn-beijing-gov-1","cn-beijing-nu16-b01","cn-chengdu","cn-edge-1","cn-fujian","cn-haidian-cm12-c01","cn-hangzhou-bj-b01","cn-hangzhou-finance","cn-hangzhou-internal-prod-1","cn-hangzhou-internal-test-1","cn-hangzhou-internal-test-2","cn-hangzhou-internal-test-3","cn-hangzhou-test-306","cn-hongkong-finance-pop","cn-huhehaote","cn-huhehaote-nebula-1","cn-qingdao","cn-qingdao-nebula","cn-shanghai-et15-b01","cn-shanghai-et2-b01","cn-shanghai-finance-1","cn-shanghai-inner","cn-shanghai-internal-test-1","cn-shenzhen-finance-1","cn-shenzhen-inner","cn-shenzhen-st4-d01","cn-shenzhen-su18-b01","cn-wuhan","cn-wulanchabu","cn-yushanfang","cn-zhangbei","cn-zhangbei-na61-b01","cn-zhangjiakou-na62-a01","cn-zhengzhou-nebula-1","eu-west-1-oxs","me-east-1","rus-west-1-pop","us-east-1"],"endpoint_health":{"cn-zhangjiakou":"DomainNotFound","us-west-1":"DomainNotFound","eu-west-1":"DomainNotFound"}}
1+
{"endpoint_map":{"cn-qingdao":"live.aliyuncs.com","cn-beijing":"live.aliyuncs.com","cn-hangzhou":"live.aliyuncs.com","cn-shanghai":"live.aliyuncs.com","cn-shenzhen":"live.aliyuncs.com","ap-southeast-1":"live.aliyuncs.com","ap-southeast-5":"live.aliyuncs.com","ap-northeast-1":"live.aliyuncs.com","eu-central-1":"live.aliyuncs.com","ap-south-1":"live.aliyuncs.com","ap-northeast-2-pop":"live.aliyuncs.com","ap-southeast-2":"live.aliyuncs.com","ap-southeast-3":"live.aliyuncs.com","cn-beijing-finance-1":"live.aliyuncs.com","cn-beijing-finance-pop":"live.aliyuncs.com","cn-beijing-gov-1":"live.aliyuncs.com","cn-beijing-nu16-b01":"live.aliyuncs.com","cn-chengdu":"live.aliyuncs.com","cn-edge-1":"live.aliyuncs.com","cn-fujian":"live.aliyuncs.com","cn-haidian-cm12-c01":"live.aliyuncs.com","cn-hangzhou-bj-b01":"live.aliyuncs.com","cn-hangzhou-finance":"live.aliyuncs.com","cn-hangzhou-internal-prod-1":"live.aliyuncs.com","cn-hangzhou-internal-test-1":"live.aliyuncs.com","cn-hangzhou-internal-test-2":"live.aliyuncs.com","cn-hangzhou-internal-test-3":"live.aliyuncs.com","cn-hangzhou-test-306":"live.aliyuncs.com","cn-hongkong":"live.aliyuncs.com","cn-hongkong-finance-pop":"live.aliyuncs.com","cn-huhehaote":"live.aliyuncs.com","cn-huhehaote-nebula-1":"live.aliyuncs.com","cn-north-2-gov-1":"live.aliyuncs.com","cn-qingdao-nebula":"live.aliyuncs.com","cn-shanghai-et15-b01":"live.aliyuncs.com","cn-shanghai-et2-b01":"live.aliyuncs.com","cn-shanghai-finance-1":"live.aliyuncs.com","cn-shanghai-inner":"live.aliyuncs.com","cn-shanghai-internal-test-1":"live.aliyuncs.com","cn-shenzhen-finance-1":"live.aliyuncs.com","cn-shenzhen-inner":"live.aliyuncs.com","cn-shenzhen-st4-d01":"live.aliyuncs.com","cn-shenzhen-su18-b01":"live.aliyuncs.com","cn-wuhan":"live.aliyuncs.com","cn-wulanchabu":"live.aliyuncs.com","cn-yushanfang":"live.aliyuncs.com","cn-zhangbei":"live.aliyuncs.com","cn-zhangbei-na61-b01":"live.aliyuncs.com","cn-zhangjiakou":"live.aliyuncs.com","cn-zhangjiakou-na62-a01":"live.aliyuncs.com","cn-zhengzhou-nebula-1":"live.aliyuncs.com","eu-west-1":"live.aliyuncs.com","eu-west-1-oxs":"live.aliyuncs.com","me-east-1":"live.aliyuncs.com","rus-west-1-pop":"live.aliyuncs.com","us-east-1":"live.aliyuncs.com","us-west-1":"live.aliyuncs.com"},"endpoint_regional":"regional","standard":[],"regions":["cn-qingdao","cn-beijing","cn-hangzhou","cn-shanghai","cn-shenzhen","ap-southeast-1","ap-southeast-5","ap-northeast-1","eu-central-1","ap-south-1","ap-northeast-2-pop","ap-southeast-2","ap-southeast-3","cn-beijing-finance-1","cn-beijing-finance-pop","cn-beijing-gov-1","cn-beijing-nu16-b01","cn-chengdu","cn-edge-1","cn-fujian","cn-haidian-cm12-c01","cn-hangzhou-bj-b01","cn-hangzhou-finance","cn-hangzhou-internal-prod-1","cn-hangzhou-internal-test-1","cn-hangzhou-internal-test-2","cn-hangzhou-internal-test-3","cn-hangzhou-test-306","cn-hongkong","cn-hongkong-finance-pop","cn-huhehaote","cn-huhehaote-nebula-1","cn-north-2-gov-1","cn-qingdao-nebula","cn-shanghai-et15-b01","cn-shanghai-et2-b01","cn-shanghai-finance-1","cn-shanghai-inner","cn-shanghai-internal-test-1","cn-shenzhen-finance-1","cn-shenzhen-inner","cn-shenzhen-st4-d01","cn-shenzhen-su18-b01","cn-wuhan","cn-wulanchabu","cn-yushanfang","cn-zhangbei","cn-zhangbei-na61-b01","cn-zhangjiakou","cn-zhangjiakou-na62-a01","cn-zhengzhou-nebula-1","eu-west-1","eu-west-1-oxs","me-east-1","rus-west-1-pop","us-east-1","us-west-1"],"endpoint_health":[]}

0 commit comments

Comments
 (0)