tencentcloud-sdk-nodejs 4.0.689 → 4.0.690
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +225 -0
- package/SERVICE_CHANGELOG.md +309 -135
- package/package.json +1 -1
- package/products.md +16 -16
- package/src/common/sdk_version.ts +1 -1
- package/src/services/batch/v20170312/batch_models.ts +0 -4
- package/src/services/bi/v20220105/bi_models.ts +18 -0
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +24 -14
- package/src/services/dlc/v20210125/dlc_client.ts +28 -5
- package/src/services/dlc/v20210125/dlc_models.ts +679 -221
- package/src/services/ess/v20201111/ess_client.ts +20 -17
- package/src/services/ess/v20201111/ess_models.ts +163 -106
- package/src/services/facefusion/v20220927/facefusion_models.ts +5 -1
- package/src/services/iss/v20230517/iss_models.ts +3 -3
- package/src/services/live/v20180801/live_models.ts +32 -27
- package/src/services/rce/v20201103/rce_models.ts +42 -11
- package/src/services/tat/v20201028/tat_models.ts +30 -9
- package/src/services/tse/v20201207/tse_client.ts +82 -18
- package/src/services/tse/v20201207/tse_models.ts +543 -270
- package/src/services/vod/v20180717/vod_models.ts +4 -3
- package/src/services/vpc/v20170312/vpc_models.ts +4 -0
- package/src/services/waf/v20180125/waf_client.ts +51 -3
- package/src/services/waf/v20180125/waf_models.ts +171 -38
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +0 -4
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +18 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +24 -14
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +5 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +6 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +663 -218
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +17 -14
- package/tencentcloud/services/ess/v20201111/ess_client.js +17 -14
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +163 -106
- package/tencentcloud/services/facefusion/v20220927/facefusion_models.d.ts +5 -1
- package/tencentcloud/services/iss/v20230517/iss_models.d.ts +3 -3
- package/tencentcloud/services/live/v20180801/live_models.d.ts +32 -27
- package/tencentcloud/services/rce/v20201103/rce_models.d.ts +42 -11
- package/tencentcloud/services/tat/v20201028/tat_models.d.ts +30 -9
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +25 -5
- package/tencentcloud/services/tse/v20201207/tse_client.js +36 -6
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +531 -272
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -3
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +4 -0
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +18 -2
- package/tencentcloud/services/waf/v20180125/waf_client.js +25 -1
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +163 -38
- package/test/dlc.v20210125.test.js +10 -0
- package/test/tse.v20201207.test.js +54 -4
- package/test/waf.v20180125.test.js +40 -0
|
@@ -118,9 +118,13 @@ export interface MergeInfo {
|
|
|
118
118
|
*/
|
|
119
119
|
InputImageFaceRect?: FaceRect;
|
|
120
120
|
/**
|
|
121
|
-
* 控制台上传的素材人脸ID
|
|
121
|
+
* 控制台上传的素材人脸ID,不填默认取最大人脸。此字段仅适用于控制台上传素材的有素材场景。
|
|
122
122
|
*/
|
|
123
123
|
TemplateFaceID?: string;
|
|
124
|
+
/**
|
|
125
|
+
* 模版图片人脸位置信息(人脸框),不填默认取最大人脸。此字段仅适用于自定义模版素材场景。
|
|
126
|
+
*/
|
|
127
|
+
TemplateFaceRect?: FaceRect;
|
|
124
128
|
}
|
|
125
129
|
/**
|
|
126
130
|
* FuseFace返回参数结构体
|
|
@@ -1211,15 +1211,15 @@ export interface UpdateRecordBackupPlanModify {
|
|
|
1211
1211
|
/**
|
|
1212
1212
|
* 要新增的设备通道(Json数组,没有新增时,不需要该字段,一次添加通道总数不超过5000个,包括组织目录下的通道数量)
|
|
1213
1213
|
*/
|
|
1214
|
-
Add?:
|
|
1214
|
+
Add?: Array<ChannelInfo>;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* 要删除的设备通道(Json数组,内容为要删除的设备通道id,没有删除设备通道时,不需要该字段)
|
|
1217
1217
|
*/
|
|
1218
|
-
Del?: string
|
|
1218
|
+
Del?: Array<string>;
|
|
1219
1219
|
/**
|
|
1220
1220
|
* 添加组织目录下所有设备通道(Json数组,可以为空,并且通道总数量不超过5000个(包括Add字段通道数量))
|
|
1221
1221
|
*/
|
|
1222
|
-
OrganizationId?: string
|
|
1222
|
+
OrganizationId?: Array<string>;
|
|
1223
1223
|
}
|
|
1224
1224
|
/**
|
|
1225
1225
|
* UpdateAITask请求参数结构体
|
|
@@ -6689,47 +6689,47 @@ export interface PullStreamTaskInfo {
|
|
|
6689
6689
|
/**
|
|
6690
6690
|
* 拉流任务Id。
|
|
6691
6691
|
*/
|
|
6692
|
-
TaskId
|
|
6692
|
+
TaskId?: string;
|
|
6693
6693
|
/**
|
|
6694
6694
|
* 拉流源的类型:
|
|
6695
6695
|
PullLivePushLive -直播,
|
|
6696
6696
|
PullVodPushLive -点播,
|
|
6697
6697
|
PullPicPushLive -图片。
|
|
6698
6698
|
*/
|
|
6699
|
-
SourceType
|
|
6699
|
+
SourceType?: string;
|
|
6700
6700
|
/**
|
|
6701
6701
|
* 拉流源url列表。
|
|
6702
6702
|
SourceType为直播(PullLiveToLive)只可以填1个,
|
|
6703
6703
|
SourceType为点播(PullVodToLive)可以填多个,上限10个。
|
|
6704
6704
|
*/
|
|
6705
|
-
SourceUrls
|
|
6705
|
+
SourceUrls?: Array<string>;
|
|
6706
6706
|
/**
|
|
6707
6707
|
* 推流域名。
|
|
6708
6708
|
将拉到的源推到该域名。
|
|
6709
6709
|
*/
|
|
6710
|
-
DomainName
|
|
6710
|
+
DomainName?: string;
|
|
6711
6711
|
/**
|
|
6712
6712
|
* 推流路径。
|
|
6713
6713
|
将拉到的源推到该路径。
|
|
6714
6714
|
*/
|
|
6715
|
-
AppName
|
|
6715
|
+
AppName?: string;
|
|
6716
6716
|
/**
|
|
6717
6717
|
* 流名称。
|
|
6718
6718
|
将拉到的源推到该流名称。
|
|
6719
6719
|
*/
|
|
6720
|
-
StreamName
|
|
6720
|
+
StreamName?: string;
|
|
6721
6721
|
/**
|
|
6722
6722
|
* 推流参数。
|
|
6723
6723
|
推流携带的自定义参数。
|
|
6724
6724
|
*/
|
|
6725
|
-
PushArgs
|
|
6725
|
+
PushArgs?: string;
|
|
6726
6726
|
/**
|
|
6727
6727
|
* 开始时间。
|
|
6728
6728
|
使用UTC格式时间,
|
|
6729
6729
|
例如:2019-01-08T10:00:00Z。
|
|
6730
6730
|
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
6731
6731
|
*/
|
|
6732
|
-
StartTime
|
|
6732
|
+
StartTime?: string;
|
|
6733
6733
|
/**
|
|
6734
6734
|
* 结束时间,注意:
|
|
6735
6735
|
1. 结束时间必须大于开始时间;
|
|
@@ -6739,7 +6739,7 @@ export interface PullStreamTaskInfo {
|
|
|
6739
6739
|
例如:2019-01-08T10:00:00Z。
|
|
6740
6740
|
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
6741
6741
|
*/
|
|
6742
|
-
EndTime
|
|
6742
|
+
EndTime?: string;
|
|
6743
6743
|
/**
|
|
6744
6744
|
* 任务创建所在地域:
|
|
6745
6745
|
ap-beijing - 华北地区(北京),
|
|
@@ -6755,7 +6755,7 @@ export interface PullStreamTaskInfo {
|
|
|
6755
6755
|
na-ashburn - 美东,
|
|
6756
6756
|
ap-tokyo - 日本。
|
|
6757
6757
|
*/
|
|
6758
|
-
Region
|
|
6758
|
+
Region?: string;
|
|
6759
6759
|
/**
|
|
6760
6760
|
* 点播拉流转推循环次数。
|
|
6761
6761
|
-1:无限循环,直到任务结束。
|
|
@@ -6763,7 +6763,7 @@ export interface PullStreamTaskInfo {
|
|
|
6763
6763
|
>0:具体循环次数。次数和时间以先结束的为准。
|
|
6764
6764
|
注意:拉流源为点播,该配置生效。
|
|
6765
6765
|
*/
|
|
6766
|
-
VodLoopTimes
|
|
6766
|
+
VodLoopTimes?: number;
|
|
6767
6767
|
/**
|
|
6768
6768
|
* 点播更新SourceUrls后的播放方式:
|
|
6769
6769
|
ImmediateNewSource:立即从更新的拉流源开始播放;
|
|
@@ -6771,33 +6771,33 @@ export interface PullStreamTaskInfo {
|
|
|
6771
6771
|
|
|
6772
6772
|
注意:拉流源为点播,该配置生效。
|
|
6773
6773
|
*/
|
|
6774
|
-
VodRefreshType
|
|
6774
|
+
VodRefreshType?: string;
|
|
6775
6775
|
/**
|
|
6776
6776
|
* 任务创建时间。
|
|
6777
6777
|
使用UTC格式时间,
|
|
6778
6778
|
例如:2019-01-08T10:00:00Z。
|
|
6779
6779
|
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
6780
6780
|
*/
|
|
6781
|
-
CreateTime
|
|
6781
|
+
CreateTime?: string;
|
|
6782
6782
|
/**
|
|
6783
6783
|
* 任务更新时间。
|
|
6784
6784
|
使用UTC格式时间,
|
|
6785
6785
|
例如:2019-01-08T10:00:00Z。
|
|
6786
6786
|
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
6787
6787
|
*/
|
|
6788
|
-
UpdateTime
|
|
6788
|
+
UpdateTime?: string;
|
|
6789
6789
|
/**
|
|
6790
6790
|
* 创建任务的操作者。
|
|
6791
6791
|
*/
|
|
6792
|
-
CreateBy
|
|
6792
|
+
CreateBy?: string;
|
|
6793
6793
|
/**
|
|
6794
6794
|
* 最后更新任务的操作者。
|
|
6795
6795
|
*/
|
|
6796
|
-
UpdateBy
|
|
6796
|
+
UpdateBy?: string;
|
|
6797
6797
|
/**
|
|
6798
6798
|
* 回调地址。
|
|
6799
6799
|
*/
|
|
6800
|
-
CallbackUrl
|
|
6800
|
+
CallbackUrl?: string;
|
|
6801
6801
|
/**
|
|
6802
6802
|
* 选择需要回调的事件:
|
|
6803
6803
|
TaskStart:任务启动回调,
|
|
@@ -6806,62 +6806,67 @@ export interface PullStreamTaskInfo {
|
|
|
6806
6806
|
VodSourceFileFinish:从点播源文件拉流结束回调,
|
|
6807
6807
|
ResetTaskConfig:任务更新回调。
|
|
6808
6808
|
*/
|
|
6809
|
-
CallbackEvents
|
|
6809
|
+
CallbackEvents?: Array<string>;
|
|
6810
6810
|
/**
|
|
6811
6811
|
* 注意:该信息暂不返回。
|
|
6812
6812
|
最后一次回调信息。
|
|
6813
6813
|
*/
|
|
6814
|
-
CallbackInfo
|
|
6814
|
+
CallbackInfo?: string;
|
|
6815
6815
|
/**
|
|
6816
6816
|
* 注意:该信息暂不返回。
|
|
6817
6817
|
错误信息。
|
|
6818
6818
|
*/
|
|
6819
|
-
ErrorInfo
|
|
6819
|
+
ErrorInfo?: string;
|
|
6820
6820
|
/**
|
|
6821
6821
|
* 状态。
|
|
6822
6822
|
enable:生效中。
|
|
6823
6823
|
pause:暂停中。
|
|
6824
6824
|
*/
|
|
6825
|
-
Status
|
|
6825
|
+
Status?: string;
|
|
6826
6826
|
/**
|
|
6827
6827
|
* 注意:该信息仅在查询单个任务时返回。
|
|
6828
6828
|
任务最新拉流信息。
|
|
6829
6829
|
包含:源 url,偏移时间,上报时间。
|
|
6830
6830
|
*/
|
|
6831
|
-
RecentPullInfo
|
|
6831
|
+
RecentPullInfo?: RecentPullInfo;
|
|
6832
6832
|
/**
|
|
6833
6833
|
* 任务备注信息。
|
|
6834
6834
|
*/
|
|
6835
|
-
Comment
|
|
6835
|
+
Comment?: string;
|
|
6836
6836
|
/**
|
|
6837
6837
|
* 备源类型:
|
|
6838
6838
|
PullLivePushLive -直播,
|
|
6839
6839
|
PullVodPushLive -点播。
|
|
6840
6840
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6841
6841
|
*/
|
|
6842
|
-
BackupSourceType
|
|
6842
|
+
BackupSourceType?: string;
|
|
6843
6843
|
/**
|
|
6844
6844
|
* 备源URL。
|
|
6845
6845
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6846
6846
|
*/
|
|
6847
|
-
BackupSourceUrl
|
|
6847
|
+
BackupSourceUrl?: string;
|
|
6848
6848
|
/**
|
|
6849
6849
|
* 水印信息列表。
|
|
6850
6850
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6851
6851
|
*/
|
|
6852
|
-
WatermarkList
|
|
6852
|
+
WatermarkList?: Array<PullPushWatermarkInfo>;
|
|
6853
6853
|
/**
|
|
6854
6854
|
* 点播源是否启用本地推流模式,默认0,不启用。
|
|
6855
6855
|
0 - 不启用。
|
|
6856
6856
|
1 - 启用。
|
|
6857
6857
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6858
6858
|
*/
|
|
6859
|
-
VodLocalMode
|
|
6859
|
+
VodLocalMode?: number;
|
|
6860
6860
|
/**
|
|
6861
6861
|
* 录制模板 ID。
|
|
6862
6862
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6863
6863
|
*/
|
|
6864
6864
|
RecordTemplateId?: string;
|
|
6865
|
+
/**
|
|
6866
|
+
* 新增的推流地址。用于单任务推两路场景。
|
|
6867
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6868
|
+
*/
|
|
6869
|
+
BackupToUrl?: string;
|
|
6865
6870
|
}
|
|
6866
6871
|
/**
|
|
6867
6872
|
* CreateLiveTimeShiftTemplate返回参数结构体
|
|
@@ -168,7 +168,16 @@ export interface OnlineScamInfo {
|
|
|
168
168
|
*/
|
|
169
169
|
export interface InputManageMarketingRisk {
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* 用户账号类型(默认开通 QQ 开放账号、手机号,手机 MD5 账号类型查询。如需使用微
|
|
172
|
+
信开放账号,则需要 提交工单 由腾讯云进行资格审核,审核通过后方可正常使用微信
|
|
173
|
+
开放账号):
|
|
174
|
+
1:QQ 开放账号。
|
|
175
|
+
2:微信开放账号。
|
|
176
|
+
4:手机号(暂仅支持国内手机号)。
|
|
177
|
+
8:设备号(imei/imeiMD5/idfa/idfaMd5)。
|
|
178
|
+
0: 其他。
|
|
179
|
+
10004:手机号 MD5。
|
|
180
|
+
|
|
172
181
|
*/
|
|
173
182
|
Account: AccountInfo;
|
|
174
183
|
/**
|
|
@@ -240,9 +249,12 @@ export interface InputManageMarketingRisk {
|
|
|
240
249
|
*/
|
|
241
250
|
VendorId?: string;
|
|
242
251
|
/**
|
|
243
|
-
*
|
|
244
|
-
|
|
245
|
-
|
|
252
|
+
* 设备类型,账号类型为8时必填:
|
|
253
|
+
0:未知
|
|
254
|
+
1:Imei;国际移动设备识别号(15-17位数字)
|
|
255
|
+
2:ImeiMd5;国际移动设备识别号,通过MD5加密后32位的小写字符串
|
|
256
|
+
3:Idfa;
|
|
257
|
+
4:IdfaMD5;
|
|
246
258
|
*/
|
|
247
259
|
DeviceType?: number;
|
|
248
260
|
/**
|
|
@@ -258,7 +270,11 @@ export interface InputManageMarketingRisk {
|
|
|
258
270
|
*/
|
|
259
271
|
OnlineScam?: OnlineScamInfo;
|
|
260
272
|
/**
|
|
261
|
-
*
|
|
273
|
+
* 1:安卓
|
|
274
|
+
2:iOS
|
|
275
|
+
3:H5
|
|
276
|
+
4:小程序
|
|
277
|
+
|
|
262
278
|
*/
|
|
263
279
|
Platform?: string;
|
|
264
280
|
}
|
|
@@ -311,15 +327,26 @@ export interface OutputFrontRisk {
|
|
|
311
327
|
*/
|
|
312
328
|
export interface OtherAccountInfo {
|
|
313
329
|
/**
|
|
314
|
-
*
|
|
330
|
+
* 其它账号信息:
|
|
331
|
+
AccountType 是 4 时,填入真实的手机号(如 13123456789)。
|
|
332
|
+
AccountType 是 8 时,支持 imei、idfa、imeiMD5、idfaMD5入参。
|
|
333
|
+
AccountType 是 0 时,填入账号信息。
|
|
334
|
+
AccountType 是 10004 时,填入手机号的 MD5 值。
|
|
335
|
+
注:imeiMd5 加密方式为:
|
|
336
|
+
imei 明文小写后,进行 MD5 加密,加密后取小写值。
|
|
337
|
+
IdfaMd5 加密方式为:idfa 明文大写后,进行 MD5 加密,加密后取小写值。
|
|
338
|
+
|
|
315
339
|
*/
|
|
316
340
|
AccountId: string;
|
|
317
341
|
/**
|
|
318
|
-
*
|
|
342
|
+
* 手机号,若 AccountType 是 4(手机号)、或 10004(手机号 MD5),则无需重复填写
|
|
343
|
+
否则填入对应的手机号(如 13123456789)。
|
|
319
344
|
*/
|
|
320
345
|
MobilePhone?: string;
|
|
321
346
|
/**
|
|
322
|
-
*
|
|
347
|
+
* 用户设备号。若 AccountType 是 8(设备号),则无需重复填写,否则填入对应的设备
|
|
348
|
+
号。
|
|
349
|
+
|
|
323
350
|
*/
|
|
324
351
|
DeviceId?: string;
|
|
325
352
|
}
|
|
@@ -375,15 +402,19 @@ export interface ManageMarketingRiskResponse {
|
|
|
375
402
|
*/
|
|
376
403
|
export interface InputCryptoManageMarketingRisk {
|
|
377
404
|
/**
|
|
378
|
-
*
|
|
405
|
+
* 是否授权:1已授权,否则未授权。
|
|
406
|
+
调用全栈式风控引擎接口服务时,客户需先明确授权
|
|
407
|
+
|
|
408
|
+
|
|
379
409
|
*/
|
|
380
410
|
IsAuthorized?: string;
|
|
381
411
|
/**
|
|
382
|
-
*
|
|
412
|
+
* 加密类型:1AES加密
|
|
413
|
+
|
|
383
414
|
*/
|
|
384
415
|
CryptoType?: string;
|
|
385
416
|
/**
|
|
386
|
-
*
|
|
417
|
+
* 加密内容,非空时接口采用加密模式。
|
|
387
418
|
*/
|
|
388
419
|
CryptoContent?: string;
|
|
389
420
|
}
|
|
@@ -54,7 +54,7 @@ export interface CreateCommandResponse {
|
|
|
54
54
|
/**
|
|
55
55
|
* 命令ID。
|
|
56
56
|
*/
|
|
57
|
-
CommandId
|
|
57
|
+
CommandId?: string;
|
|
58
58
|
/**
|
|
59
59
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
60
60
|
*/
|
|
@@ -319,7 +319,7 @@ export interface RunCommandRequest {
|
|
|
319
319
|
*/
|
|
320
320
|
Content: string;
|
|
321
321
|
/**
|
|
322
|
-
* 待执行命令的实例ID列表,上限
|
|
322
|
+
* 待执行命令的实例ID列表,上限200。支持实例类型:
|
|
323
323
|
<li> CVM
|
|
324
324
|
<li> LIGHTHOUSE
|
|
325
325
|
*/
|
|
@@ -346,14 +346,17 @@ export interface RunCommandRequest {
|
|
|
346
346
|
Timeout?: number;
|
|
347
347
|
/**
|
|
348
348
|
* 是否保存命令,取值范围:
|
|
349
|
-
<li>
|
|
350
|
-
<li>
|
|
351
|
-
默认为
|
|
349
|
+
<li> true:保存
|
|
350
|
+
<li> false:不保存
|
|
351
|
+
默认为 false。
|
|
352
352
|
*/
|
|
353
353
|
SaveCommand?: boolean;
|
|
354
354
|
/**
|
|
355
355
|
* 是否启用自定义参数功能。
|
|
356
356
|
一旦创建,此值不提供修改。
|
|
357
|
+
取值范围:
|
|
358
|
+
<li> true:启用
|
|
359
|
+
<li> false:不启用
|
|
357
360
|
默认值:false。
|
|
358
361
|
*/
|
|
359
362
|
EnableParameter?: boolean;
|
|
@@ -365,6 +368,10 @@ export interface RunCommandRequest {
|
|
|
365
368
|
自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
|
|
366
369
|
*/
|
|
367
370
|
DefaultParameters?: string;
|
|
371
|
+
/**
|
|
372
|
+
* 自定义参数数组。 如果 Parameters 未提供,将使用这里的默认值进行替换。 自定义参数最多20个。
|
|
373
|
+
*/
|
|
374
|
+
DefaultParameterConfs?: Array<DefaultParameterConf>;
|
|
368
375
|
/**
|
|
369
376
|
* Command 的自定义参数。字段类型为json encoded string。如:{\"varA\": \"222\"}。
|
|
370
377
|
key为自定义参数名称,value为该参数的默认取值。kv均为字符串型。
|
|
@@ -403,7 +410,7 @@ export interface InvokeCommandRequest {
|
|
|
403
410
|
*/
|
|
404
411
|
CommandId: string;
|
|
405
412
|
/**
|
|
406
|
-
* 待执行命令的实例ID列表,上限
|
|
413
|
+
* 待执行命令的实例ID列表,上限200。
|
|
407
414
|
*/
|
|
408
415
|
InstanceIds: Array<string>;
|
|
409
416
|
/**
|
|
@@ -541,10 +548,12 @@ export interface TaskResult {
|
|
|
541
548
|
Output: string;
|
|
542
549
|
/**
|
|
543
550
|
* 命令执行开始时间。
|
|
551
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
544
552
|
*/
|
|
545
553
|
ExecStartTime: string;
|
|
546
554
|
/**
|
|
547
555
|
* 命令执行结束时间。
|
|
556
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
548
557
|
*/
|
|
549
558
|
ExecEndTime: string;
|
|
550
559
|
/**
|
|
@@ -864,7 +873,7 @@ export interface InvokeCommandResponse {
|
|
|
864
873
|
/**
|
|
865
874
|
* 执行活动ID。
|
|
866
875
|
*/
|
|
867
|
-
InvocationId
|
|
876
|
+
InvocationId?: string;
|
|
868
877
|
/**
|
|
869
878
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
870
879
|
*/
|
|
@@ -911,6 +920,12 @@ export interface ModifyCommandRequest {
|
|
|
911
920
|
自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
|
|
912
921
|
*/
|
|
913
922
|
DefaultParameters?: string;
|
|
923
|
+
/**
|
|
924
|
+
* 自定义参数数组。
|
|
925
|
+
如果InvokeCommand时未提供参数取值,将使用这里的默认值进行替换。
|
|
926
|
+
自定义参数最多20个。
|
|
927
|
+
*/
|
|
928
|
+
DefaultParameterConfs?: Array<DefaultParameterConf>;
|
|
914
929
|
/**
|
|
915
930
|
* 在 CVM 或 Lighthouse 实例中执行命令的用户名称。
|
|
916
931
|
使用最小权限执行命令是权限管理的最佳实践,建议您以普通用户身份执行云助手命令。
|
|
@@ -1446,11 +1461,11 @@ export interface RunCommandResponse {
|
|
|
1446
1461
|
/**
|
|
1447
1462
|
* 命令ID。
|
|
1448
1463
|
*/
|
|
1449
|
-
CommandId
|
|
1464
|
+
CommandId?: string;
|
|
1450
1465
|
/**
|
|
1451
1466
|
* 执行活动ID。
|
|
1452
1467
|
*/
|
|
1453
|
-
InvocationId
|
|
1468
|
+
InvocationId?: string;
|
|
1454
1469
|
/**
|
|
1455
1470
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1456
1471
|
*/
|
|
@@ -1585,6 +1600,12 @@ export interface CreateCommandRequest {
|
|
|
1585
1600
|
自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。
|
|
1586
1601
|
*/
|
|
1587
1602
|
DefaultParameters?: string;
|
|
1603
|
+
/**
|
|
1604
|
+
* 自定义参数数组。
|
|
1605
|
+
如果InvokeCommand时未提供参数取值,将使用这里的默认值进行替换。
|
|
1606
|
+
自定义参数最多20个。
|
|
1607
|
+
*/
|
|
1608
|
+
DefaultParameterConfs?: Array<DefaultParameterConf>;
|
|
1588
1609
|
/**
|
|
1589
1610
|
* 为命令关联的标签,列表长度不超过10。
|
|
1590
1611
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayServiceRateLimitRequest, CreateCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayNodesRequest, ModifyCloudNativeAPIGatewayRouteRequest, DeleteNativeGatewayServerGroupResponse, CreateCloudNativeAPIGatewayRouteRateLimitResponse, DescribeSREInstanceAccessAddressResponse, ModifyCloudNativeAPIGatewayCanaryRuleResponse, CreateNativeGatewayServerGroupRequest, ModifyCloudNativeAPIGatewayServiceResponse, DescribeCloudNativeAPIGatewayNodesResponse, CreateCloudNativeAPIGatewayResponse, DeleteCloudNativeAPIGatewayCanaryRuleRequest, ModifyCloudNativeAPIGatewayRouteRateLimitRequest, DescribeNacosReplicasRequest, CreateCloudNativeAPIGatewayServiceRequest, DescribeCloudNativeAPIGatewayServicesRequest, UpdateEngineInternetAccessRequest, CreateCloudNativeAPIGatewayCanaryRuleResponse, DescribeSREInstancesRequest, DeleteEngineResponse, DescribeCloudNativeAPIGatewayRoutesResponse, DescribeZookeeperReplicasRequest, DeleteCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteResponse, DescribeCloudNativeAPIGatewayPortsResponse, CreateCloudNativeAPIGatewayRouteRateLimitRequest, DeleteNativeGatewayServerGroupRequest, ModifyCloudNativeAPIGatewayRouteResponse, DescribeNacosReplicasResponse, DeleteCloudNativeAPIGatewayServiceRateLimitRequest, DescribeCloudNativeAPIGatewayConfigResponse, CreateCloudNativeAPIGatewayRouteResponse, DescribeCloudNativeAPIGatewaysRequest, DescribeNacosServerInterfacesResponse, DescribeCloudNativeAPIGatewayServiceRateLimitResponse, DeleteCloudNativeAPIGatewayServiceRequest, ModifyNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayRouteRateLimitRequest, DescribeOneCloudNativeAPIGatewayServiceRequest,
|
|
3
|
+
import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayServiceRateLimitRequest, CreateCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayNodesRequest, ModifyCloudNativeAPIGatewayRouteRequest, DeleteNativeGatewayServerGroupResponse, CreateCloudNativeAPIGatewayRouteRateLimitResponse, DescribeSREInstanceAccessAddressResponse, ModifyCloudNativeAPIGatewayCanaryRuleResponse, CreateNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayCertificatesRequest, ModifyCloudNativeAPIGatewayServiceResponse, DescribeCloudNativeAPIGatewayNodesResponse, CreateCloudNativeAPIGatewayResponse, DeleteCloudNativeAPIGatewayCertificateResponse, DeleteCloudNativeAPIGatewayCanaryRuleRequest, ModifyCloudNativeAPIGatewayRouteRateLimitRequest, DescribeNacosReplicasRequest, CreateCloudNativeAPIGatewayServiceRequest, DescribeCloudNativeAPIGatewayServicesRequest, DescribeCloudNativeAPIGatewayCertificatesResponse, UpdateEngineInternetAccessRequest, CreateCloudNativeAPIGatewayCanaryRuleResponse, DescribeSREInstancesRequest, DeleteEngineResponse, DescribeCloudNativeAPIGatewayRoutesResponse, DescribeZookeeperReplicasRequest, DeleteCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteResponse, DescribeCloudNativeAPIGatewayPortsResponse, CreateCloudNativeAPIGatewayRouteRateLimitRequest, DeleteNativeGatewayServerGroupRequest, ModifyCloudNativeAPIGatewayRouteResponse, DescribeNacosReplicasResponse, DeleteCloudNativeAPIGatewayServiceRateLimitRequest, DescribeCloudNativeAPIGatewayConfigResponse, CreateCloudNativeAPIGatewayRouteResponse, DescribeCloudNativeAPIGatewayConfigRequest, DescribeCloudNativeAPIGatewaysRequest, DescribeNacosServerInterfacesResponse, DescribeCloudNativeAPIGatewayServiceRateLimitResponse, DeleteCloudNativeAPIGatewayServiceRequest, CreateCloudNativeAPIGatewayCertificateResponse, CreateCloudNativeAPIGatewayCanaryRuleRequest, ModifyNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayRouteRateLimitRequest, DescribeOneCloudNativeAPIGatewayServiceRequest, DescribeCloudNativeAPIGatewaysResponse, UpdateEngineInternetAccessResponse, UpdateCloudNativeAPIGatewaySpecRequest, DescribeCloudNativeAPIGatewayServicesResponse, DeleteCloudNativeAPIGatewayRouteRateLimitRequest, DeleteEngineRequest, ModifyCloudNativeAPIGatewayServiceRateLimitRequest, DescribeSREInstanceAccessAddressRequest, DescribeCloudNativeAPIGatewayCanaryRulesResponse, DeleteCloudNativeAPIGatewayCertificateRequest, DeleteCloudNativeAPIGatewayServiceRateLimitResponse, UpdateCloudNativeAPIGatewaySpecResponse, DescribeZookeeperServerInterfacesResponse, DescribeNativeGatewayServerGroupsRequest, DeleteCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayCertificateDetailsResponse, UpdateCloudNativeAPIGatewayCertificateInfoRequest, DescribeOneCloudNativeAPIGatewayServiceResponse, ModifyCloudNativeAPIGatewayServiceRequest, DeleteCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayCertificateRequest, ModifyCloudNativeAPIGatewayResponse, DescribeZookeeperServerInterfacesRequest, DescribeCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayRequest, DescribeNativeGatewayServerGroupsResponse, DeleteCloudNativeAPIGatewayRouteRequest, DescribeCloudNativeAPIGatewayRoutesRequest, CreateEngineResponse, CreateCloudNativeAPIGatewayServiceRateLimitResponse, ModifyCloudNativeAPIGatewayServiceRateLimitResponse, DescribeNacosServerInterfacesRequest, DescribeSREInstancesResponse, DescribeCloudNativeAPIGatewayCertificateDetailsRequest, CreateCloudNativeAPIGatewayRouteRequest, CreateNativeGatewayServerGroupResponse, CreateCloudNativeAPIGatewayServiceRateLimitRequest, DescribeZookeeperReplicasResponse, CreateEngineRequest, ModifyCloudNativeAPIGatewayCanaryRuleRequest, ModifyCloudNativeAPIGatewayRequest, ModifyCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayCanaryRulesRequest, DeleteCloudNativeAPIGatewayCanaryRuleResponse, DescribeCloudNativeAPIGatewayPortsRequest, ModifyNativeGatewayServerGroupResponse, UpdateCloudNativeAPIGatewayCertificateInfoResponse } from "./tse_models";
|
|
4
4
|
/**
|
|
5
5
|
* tse client
|
|
6
6
|
* @class
|
|
@@ -27,6 +27,10 @@ export declare class Client extends AbstractClient {
|
|
|
27
27
|
* 获取云原生网关服务详情
|
|
28
28
|
*/
|
|
29
29
|
DescribeOneCloudNativeAPIGatewayService(req: DescribeOneCloudNativeAPIGatewayServiceRequest, cb?: (error: string, rep: DescribeOneCloudNativeAPIGatewayServiceResponse) => void): Promise<DescribeOneCloudNativeAPIGatewayServiceResponse>;
|
|
30
|
+
/**
|
|
31
|
+
* 查询云原生网关证书列表
|
|
32
|
+
*/
|
|
33
|
+
DescribeCloudNativeAPIGatewayCertificates(req: DescribeCloudNativeAPIGatewayCertificatesRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayCertificatesResponse) => void): Promise<DescribeCloudNativeAPIGatewayCertificatesResponse>;
|
|
30
34
|
/**
|
|
31
35
|
* 修改云原生网关限流插件(服务)
|
|
32
36
|
*/
|
|
@@ -75,6 +79,10 @@ export declare class Client extends AbstractClient {
|
|
|
75
79
|
* 获取云原生API网关实例列表
|
|
76
80
|
*/
|
|
77
81
|
DescribeCloudNativeAPIGateways(req: DescribeCloudNativeAPIGatewaysRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewaysResponse) => void): Promise<DescribeCloudNativeAPIGatewaysResponse>;
|
|
82
|
+
/**
|
|
83
|
+
* 创建云原生网关证书
|
|
84
|
+
*/
|
|
85
|
+
CreateCloudNativeAPIGatewayCertificate(req: CreateCloudNativeAPIGatewayCertificateRequest, cb?: (error: string, rep: CreateCloudNativeAPIGatewayCertificateResponse) => void): Promise<CreateCloudNativeAPIGatewayCertificateResponse>;
|
|
78
86
|
/**
|
|
79
87
|
* 查询云原生网关服务列表
|
|
80
88
|
*/
|
|
@@ -103,14 +111,14 @@ export declare class Client extends AbstractClient {
|
|
|
103
111
|
* 用于查询引擎实例列表
|
|
104
112
|
*/
|
|
105
113
|
DescribeSREInstances(req: DescribeSREInstancesRequest, cb?: (error: string, rep: DescribeSREInstancesResponse) => void): Promise<DescribeSREInstancesResponse>;
|
|
106
|
-
/**
|
|
107
|
-
* 获取云原生API网关实例网络配置信息
|
|
108
|
-
*/
|
|
109
|
-
DescribeCloudNativeAPIGatewayConfig(req: DescribeCloudNativeAPIGatewayConfigRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayConfigResponse) => void): Promise<DescribeCloudNativeAPIGatewayConfigResponse>;
|
|
110
114
|
/**
|
|
111
115
|
* 查询云原生网关的限流插件(路由)
|
|
112
116
|
*/
|
|
113
117
|
DescribeCloudNativeAPIGatewayRouteRateLimit(req: DescribeCloudNativeAPIGatewayRouteRateLimitRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayRouteRateLimitResponse) => void): Promise<DescribeCloudNativeAPIGatewayRouteRateLimitResponse>;
|
|
118
|
+
/**
|
|
119
|
+
* 获取云原生API网关实例网络配置信息
|
|
120
|
+
*/
|
|
121
|
+
DescribeCloudNativeAPIGatewayConfig(req: DescribeCloudNativeAPIGatewayConfigRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayConfigResponse) => void): Promise<DescribeCloudNativeAPIGatewayConfigResponse>;
|
|
114
122
|
/**
|
|
115
123
|
* 修改云原生网关服务
|
|
116
124
|
*/
|
|
@@ -123,6 +131,10 @@ export declare class Client extends AbstractClient {
|
|
|
123
131
|
* 创建云原生网关的灰度规则
|
|
124
132
|
*/
|
|
125
133
|
CreateCloudNativeAPIGatewayCanaryRule(req: CreateCloudNativeAPIGatewayCanaryRuleRequest, cb?: (error: string, rep: CreateCloudNativeAPIGatewayCanaryRuleResponse) => void): Promise<CreateCloudNativeAPIGatewayCanaryRuleResponse>;
|
|
134
|
+
/**
|
|
135
|
+
* 查询云原生网关单个证书详情
|
|
136
|
+
*/
|
|
137
|
+
DescribeCloudNativeAPIGatewayCertificateDetails(req: DescribeCloudNativeAPIGatewayCertificateDetailsRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayCertificateDetailsResponse) => void): Promise<DescribeCloudNativeAPIGatewayCertificateDetailsResponse>;
|
|
126
138
|
/**
|
|
127
139
|
* 修改引擎公网访问配置
|
|
128
140
|
*/
|
|
@@ -139,10 +151,18 @@ export declare class Client extends AbstractClient {
|
|
|
139
151
|
* 删除云原生API网关实例
|
|
140
152
|
*/
|
|
141
153
|
DeleteCloudNativeAPIGateway(req: DeleteCloudNativeAPIGatewayRequest, cb?: (error: string, rep: DeleteCloudNativeAPIGatewayResponse) => void): Promise<DeleteCloudNativeAPIGatewayResponse>;
|
|
154
|
+
/**
|
|
155
|
+
* 删除云原生网关证书
|
|
156
|
+
*/
|
|
157
|
+
DeleteCloudNativeAPIGatewayCertificate(req: DeleteCloudNativeAPIGatewayCertificateRequest, cb?: (error: string, rep: DeleteCloudNativeAPIGatewayCertificateResponse) => void): Promise<DeleteCloudNativeAPIGatewayCertificateResponse>;
|
|
142
158
|
/**
|
|
143
159
|
* 创建云原生网关路由
|
|
144
160
|
*/
|
|
145
161
|
CreateCloudNativeAPIGatewayRoute(req: CreateCloudNativeAPIGatewayRouteRequest, cb?: (error: string, rep: CreateCloudNativeAPIGatewayRouteResponse) => void): Promise<CreateCloudNativeAPIGatewayRouteResponse>;
|
|
162
|
+
/**
|
|
163
|
+
* 修改云原生网关证书信息
|
|
164
|
+
*/
|
|
165
|
+
UpdateCloudNativeAPIGatewayCertificateInfo(req: UpdateCloudNativeAPIGatewayCertificateInfoRequest, cb?: (error: string, rep: UpdateCloudNativeAPIGatewayCertificateInfoResponse) => void): Promise<UpdateCloudNativeAPIGatewayCertificateInfoResponse>;
|
|
146
166
|
/**
|
|
147
167
|
* 创建云原生网关引擎分组
|
|
148
168
|
*/
|
|
@@ -57,6 +57,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
57
57
|
async DescribeOneCloudNativeAPIGatewayService(req, cb) {
|
|
58
58
|
return this.request("DescribeOneCloudNativeAPIGatewayService", req, cb);
|
|
59
59
|
}
|
|
60
|
+
/**
|
|
61
|
+
* 查询云原生网关证书列表
|
|
62
|
+
*/
|
|
63
|
+
async DescribeCloudNativeAPIGatewayCertificates(req, cb) {
|
|
64
|
+
return this.request("DescribeCloudNativeAPIGatewayCertificates", req, cb);
|
|
65
|
+
}
|
|
60
66
|
/**
|
|
61
67
|
* 修改云原生网关限流插件(服务)
|
|
62
68
|
*/
|
|
@@ -129,6 +135,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
129
135
|
async DescribeCloudNativeAPIGateways(req, cb) {
|
|
130
136
|
return this.request("DescribeCloudNativeAPIGateways", req, cb);
|
|
131
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* 创建云原生网关证书
|
|
140
|
+
*/
|
|
141
|
+
async CreateCloudNativeAPIGatewayCertificate(req, cb) {
|
|
142
|
+
return this.request("CreateCloudNativeAPIGatewayCertificate", req, cb);
|
|
143
|
+
}
|
|
132
144
|
/**
|
|
133
145
|
* 查询云原生网关服务列表
|
|
134
146
|
*/
|
|
@@ -171,18 +183,18 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
171
183
|
async DescribeSREInstances(req, cb) {
|
|
172
184
|
return this.request("DescribeSREInstances", req, cb);
|
|
173
185
|
}
|
|
174
|
-
/**
|
|
175
|
-
* 获取云原生API网关实例网络配置信息
|
|
176
|
-
*/
|
|
177
|
-
async DescribeCloudNativeAPIGatewayConfig(req, cb) {
|
|
178
|
-
return this.request("DescribeCloudNativeAPIGatewayConfig", req, cb);
|
|
179
|
-
}
|
|
180
186
|
/**
|
|
181
187
|
* 查询云原生网关的限流插件(路由)
|
|
182
188
|
*/
|
|
183
189
|
async DescribeCloudNativeAPIGatewayRouteRateLimit(req, cb) {
|
|
184
190
|
return this.request("DescribeCloudNativeAPIGatewayRouteRateLimit", req, cb);
|
|
185
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* 获取云原生API网关实例网络配置信息
|
|
194
|
+
*/
|
|
195
|
+
async DescribeCloudNativeAPIGatewayConfig(req, cb) {
|
|
196
|
+
return this.request("DescribeCloudNativeAPIGatewayConfig", req, cb);
|
|
197
|
+
}
|
|
186
198
|
/**
|
|
187
199
|
* 修改云原生网关服务
|
|
188
200
|
*/
|
|
@@ -201,6 +213,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
201
213
|
async CreateCloudNativeAPIGatewayCanaryRule(req, cb) {
|
|
202
214
|
return this.request("CreateCloudNativeAPIGatewayCanaryRule", req, cb);
|
|
203
215
|
}
|
|
216
|
+
/**
|
|
217
|
+
* 查询云原生网关单个证书详情
|
|
218
|
+
*/
|
|
219
|
+
async DescribeCloudNativeAPIGatewayCertificateDetails(req, cb) {
|
|
220
|
+
return this.request("DescribeCloudNativeAPIGatewayCertificateDetails", req, cb);
|
|
221
|
+
}
|
|
204
222
|
/**
|
|
205
223
|
* 修改引擎公网访问配置
|
|
206
224
|
*/
|
|
@@ -225,12 +243,24 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
225
243
|
async DeleteCloudNativeAPIGateway(req, cb) {
|
|
226
244
|
return this.request("DeleteCloudNativeAPIGateway", req, cb);
|
|
227
245
|
}
|
|
246
|
+
/**
|
|
247
|
+
* 删除云原生网关证书
|
|
248
|
+
*/
|
|
249
|
+
async DeleteCloudNativeAPIGatewayCertificate(req, cb) {
|
|
250
|
+
return this.request("DeleteCloudNativeAPIGatewayCertificate", req, cb);
|
|
251
|
+
}
|
|
228
252
|
/**
|
|
229
253
|
* 创建云原生网关路由
|
|
230
254
|
*/
|
|
231
255
|
async CreateCloudNativeAPIGatewayRoute(req, cb) {
|
|
232
256
|
return this.request("CreateCloudNativeAPIGatewayRoute", req, cb);
|
|
233
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* 修改云原生网关证书信息
|
|
260
|
+
*/
|
|
261
|
+
async UpdateCloudNativeAPIGatewayCertificateInfo(req, cb) {
|
|
262
|
+
return this.request("UpdateCloudNativeAPIGatewayCertificateInfo", req, cb);
|
|
263
|
+
}
|
|
234
264
|
/**
|
|
235
265
|
* 创建云原生网关引擎分组
|
|
236
266
|
*/
|