File tree Expand file tree Collapse file tree 7 files changed +26
-10
lines changed
Expand file tree Collapse file tree 7 files changed +26
-10
lines changed Original file line number Diff line number Diff line change 1+ # 0.0.9-beta 2023-10-30
2+
3+ ### G42Cloud SDK MPC
4+
5+ - _ Features_
6+ - None
7+ - _ Bug Fix_
8+ - None
9+ - _ Change_
10+ - ** CreateThumbnailsTask**
11+ - changes of request param
12+ - ` - thumbnail_para.percent `
13+ - ` - thumbnail_para.type: enum value [PERCENT] `
14+ - ** CreateTranscodingTask**
15+ - changes of request param
16+ - ` - thumbnail.params.percent `
17+ - ` - thumbnail.params.type: enum value [PERCENT] `
18+
119# 0.0.8-beta 2023-08-26
220
321### G42Cloud SDK SMS
Original file line number Diff line number Diff line change 11<p align =" center " >
2- <a href =" https://www.g42cloud.com/ " ><img src =" https://upload.wikimedia.org/wikipedia/en/4/43/Group_42_Logo.jpg " ></a >
2+ <a href =" https://www.g42cloud.com/ " ><img src =" https://upload.wikimedia.org/wikipedia/en/thumb/9/94/Group_42_logo.png/330px-Group_42_logo.png " ></a >
33</p >
44
55<h1 align =" center " >G42 Cloud Node.js Software Development Kit (Node.js SDK)</h1 >
Original file line number Diff line number Diff line change 1- 0.0.8 -beta
1+ 0.0.9 -beta
Original file line number Diff line number Diff line change 11{
22 "name" : " @g42cloud/g42cloud-sdk-service" ,
3- "version" : " 0.0.8 -beta" ,
3+ "version" : " 0.0.9 -beta" ,
44 "description" : " g42cloud SDK" ,
55 "scripts" : {
66 "test" : " echo \" Error: no test specified\" && exit 1"
1212 "author" : " g42cloud_SDK" ,
1313 "license" : " Apache-2.0" ,
1414 "dependencies" : {
15- "@g42cloud/g42cloud-sdk-core" : " ^0.0.8 -beta"
15+ "@g42cloud/g42cloud-sdk-core" : " ^0.0.9 -beta"
1616 }
1717}
Original file line number Diff line number Diff line change @@ -1673,13 +1673,13 @@ export class EcsClient {
16731673 }
16741674
16751675 /**
1676- * 修改按需服务器,设置定时销毁时间。如果设置的销毁时间为空,表示取消销毁时间 。
1676+ * 修改按需服务器,设置定时删除时间。如果设置的定时删除时间为空字符串,表示取消定时删除 。
16771677 *
16781678 * 该接口支持企业项目细粒度权限的校验,具体细粒度请参见 ecs:cloudServers:put。
16791679 *
16801680 * Please refer to HUAWEI cloud API Explorer for details.
16811681 *
1682- * @summary 修改云服务器销毁时间
1682+ * @summary 修改云服务器定时删除时间
16831683 * @param {string } serverId 云服务器ID。
16841684 * @param {UpdateServerAutoTerminateTimeRequestBody } updateServerAutoTerminateTimeRequestBody This is a auto create Body Object
16851685 * @param {* } [options] Override http request option.
@@ -4637,7 +4637,7 @@ export const ParamCreater = function () {
46374637 } ,
46384638
46394639 /**
4640- * 修改按需服务器,设置定时销毁时间。如果设置的销毁时间为空,表示取消销毁时间 。
4640+ * 修改按需服务器,设置定时删除时间。如果设置的定时删除时间为空字符串,表示取消定时删除 。
46414641 *
46424642 * 该接口支持企业项目细粒度权限的校验,具体细粒度请参见 ecs:cloudServers:put。
46434643 *
Original file line number Diff line number Diff line change 33export class ServerTag {
44 public key ?: string ;
55 public value ?: string ;
6- public constructor ( key ?: string , value ?: string ) {
6+ public constructor ( key ?: string ) {
77 this [ 'key' ] = key ;
8- this [ 'value' ] = value ;
98 }
109 public withKey ( key : string ) : ServerTag {
1110 this [ 'key' ] = key ;
Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ export class ThumbnailPara {
8989 * @enum {string}
9090 */
9191export enum ThumbnailParaTypeEnum {
92- PERCENT = 'PERCENT' ,
9392 TIME = 'TIME' ,
9493 DOTS = 'DOTS' ,
9594 DOTS_MS = 'DOTS_MS'
You can’t perform that action at this time.
0 commit comments