tencentcloud-sdk-nodejs 4.0.720 → 4.0.721
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 +190 -0
- package/SERVICE_CHANGELOG.md +266 -36
- package/package.json +1 -1
- package/products.md +12 -12
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ccc/v20200210/ccc_models.ts +13 -0
- package/src/services/cdb/v20170320/cdb_models.ts +1 -1
- package/src/services/csip/v20221121/csip_models.ts +15 -0
- package/src/services/dnspod/v20210323/dnspod_client.ts +97 -48
- package/src/services/dnspod/v20210323/dnspod_models.ts +292 -138
- package/src/services/essbasic/v20210526/essbasic_client.ts +54 -41
- package/src/services/essbasic/v20210526/essbasic_models.ts +129 -68
- package/src/services/facefusion/v20181201/facefusion_models.ts +5 -4
- package/src/services/tdmq/v20200217/tdmq_client.ts +25 -12
- package/src/services/tdmq/v20200217/tdmq_models.ts +113 -35
- package/src/services/teo/v20220901/teo_models.ts +1 -1
- package/src/services/tione/v20211111/tione_client.ts +1 -0
- package/src/services/tione/v20211111/tione_models.ts +30 -9
- package/src/services/vpc/v20170312/vpc_models.ts +1 -1
- package/src/services/vrs/v20200824/vrs_models.ts +10 -1
- package/src/services/waf/v20180125/waf_client.ts +8 -4
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +13 -0
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +1 -1
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +15 -0
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +31 -15
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +45 -21
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +282 -137
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +53 -40
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +53 -40
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +129 -68
- package/tencentcloud/services/facefusion/v20181201/facefusion_models.d.ts +5 -4
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +9 -5
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +11 -5
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +110 -35
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +1 -1
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +29 -9
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +1 -1
- package/tencentcloud/services/vrs/v20200824/vrs_models.d.ts +10 -1
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +6 -2
- package/tencentcloud/services/waf/v20180125/waf_client.js +6 -2
- package/test/dnspod.v20210323.test.js +60 -20
- package/test/tdmq.v20200217.test.js +12 -2
|
@@ -429,17 +429,21 @@ export interface DeleteClusterResponse {
|
|
|
429
429
|
RequestId?: string;
|
|
430
430
|
}
|
|
431
431
|
/**
|
|
432
|
-
*
|
|
432
|
+
* DescribeTopicMsgs返回参数结构体
|
|
433
433
|
*/
|
|
434
|
-
export interface
|
|
434
|
+
export interface DescribeTopicMsgsResponse {
|
|
435
435
|
/**
|
|
436
|
-
*
|
|
436
|
+
* 总记录数。
|
|
437
437
|
*/
|
|
438
|
-
|
|
438
|
+
TotalCount: number;
|
|
439
439
|
/**
|
|
440
|
-
*
|
|
440
|
+
* 消息日志列表。
|
|
441
441
|
*/
|
|
442
|
-
|
|
442
|
+
TopicMsgLogSets: Array<MsgLog>;
|
|
443
|
+
/**
|
|
444
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
445
|
+
*/
|
|
446
|
+
RequestId?: string;
|
|
443
447
|
}
|
|
444
448
|
/**
|
|
445
449
|
* ModifyCmqSubscriptionAttribute返回参数结构体
|
|
@@ -2859,6 +2863,19 @@ export interface DeleteEnvironmentRolesResponse {
|
|
|
2859
2863
|
*/
|
|
2860
2864
|
RequestId?: string;
|
|
2861
2865
|
}
|
|
2866
|
+
/**
|
|
2867
|
+
* RocketMQtopic分布情况
|
|
2868
|
+
*/
|
|
2869
|
+
export interface RocketMQTopicDistribution {
|
|
2870
|
+
/**
|
|
2871
|
+
* topic类型
|
|
2872
|
+
*/
|
|
2873
|
+
TopicType: string;
|
|
2874
|
+
/**
|
|
2875
|
+
* topic数量
|
|
2876
|
+
*/
|
|
2877
|
+
Count: number;
|
|
2878
|
+
}
|
|
2862
2879
|
/**
|
|
2863
2880
|
* DescribeClusterDetail请求参数结构体
|
|
2864
2881
|
*/
|
|
@@ -2934,22 +2951,25 @@ export interface DeleteRocketMQTopicResponse {
|
|
|
2934
2951
|
RequestId?: string;
|
|
2935
2952
|
}
|
|
2936
2953
|
/**
|
|
2937
|
-
*
|
|
2954
|
+
* 消息日志
|
|
2938
2955
|
*/
|
|
2939
|
-
export interface
|
|
2956
|
+
export interface MsgLog {
|
|
2940
2957
|
/**
|
|
2941
|
-
*
|
|
2958
|
+
* 消息ID。
|
|
2942
2959
|
*/
|
|
2943
|
-
|
|
2960
|
+
MsgId: string;
|
|
2944
2961
|
/**
|
|
2945
|
-
*
|
|
2946
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2962
|
+
* 生产者名称。
|
|
2947
2963
|
*/
|
|
2948
|
-
|
|
2964
|
+
ProducerName: string;
|
|
2949
2965
|
/**
|
|
2950
|
-
*
|
|
2966
|
+
* 生产时间。
|
|
2951
2967
|
*/
|
|
2952
|
-
|
|
2968
|
+
ProduceTime: string;
|
|
2969
|
+
/**
|
|
2970
|
+
* 生产客户端地址。
|
|
2971
|
+
*/
|
|
2972
|
+
ProducerAddr: string;
|
|
2953
2973
|
}
|
|
2954
2974
|
/**
|
|
2955
2975
|
* ModifyCmqTopicAttribute请求参数结构体
|
|
@@ -3673,6 +3693,24 @@ export interface DescribeCmqTopicsResponse {
|
|
|
3673
3693
|
*/
|
|
3674
3694
|
RequestId?: string;
|
|
3675
3695
|
}
|
|
3696
|
+
/**
|
|
3697
|
+
* SendRocketMQMessage返回参数结构体
|
|
3698
|
+
*/
|
|
3699
|
+
export interface SendRocketMQMessageResponse {
|
|
3700
|
+
/**
|
|
3701
|
+
* 发送结果
|
|
3702
|
+
*/
|
|
3703
|
+
Result: boolean;
|
|
3704
|
+
/**
|
|
3705
|
+
* 消息ID
|
|
3706
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3707
|
+
*/
|
|
3708
|
+
MsgId: string;
|
|
3709
|
+
/**
|
|
3710
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3711
|
+
*/
|
|
3712
|
+
RequestId?: string;
|
|
3713
|
+
}
|
|
3676
3714
|
/**
|
|
3677
3715
|
* DescribeCmqTopicDetail请求参数结构体
|
|
3678
3716
|
*/
|
|
@@ -3800,6 +3838,35 @@ export interface UnbindCmqDeadLetterResponse {
|
|
|
3800
3838
|
*/
|
|
3801
3839
|
RequestId?: string;
|
|
3802
3840
|
}
|
|
3841
|
+
/**
|
|
3842
|
+
* 环境角色集合
|
|
3843
|
+
*/
|
|
3844
|
+
export interface EnvironmentRole {
|
|
3845
|
+
/**
|
|
3846
|
+
* 环境(命名空间)。
|
|
3847
|
+
*/
|
|
3848
|
+
EnvironmentId: string;
|
|
3849
|
+
/**
|
|
3850
|
+
* 角色名称。
|
|
3851
|
+
*/
|
|
3852
|
+
RoleName: string;
|
|
3853
|
+
/**
|
|
3854
|
+
* 授权项,最多只能包含produce、consume两项的非空字符串数组。
|
|
3855
|
+
*/
|
|
3856
|
+
Permissions: Array<string>;
|
|
3857
|
+
/**
|
|
3858
|
+
* 角色描述。
|
|
3859
|
+
*/
|
|
3860
|
+
RoleDescribe: string;
|
|
3861
|
+
/**
|
|
3862
|
+
* 创建时间。
|
|
3863
|
+
*/
|
|
3864
|
+
CreateTime: string;
|
|
3865
|
+
/**
|
|
3866
|
+
* 更新时间。
|
|
3867
|
+
*/
|
|
3868
|
+
UpdateTime: string;
|
|
3869
|
+
}
|
|
3803
3870
|
/**
|
|
3804
3871
|
* ModifyRocketMQNamespace返回参数结构体
|
|
3805
3872
|
*/
|
|
@@ -5111,33 +5178,33 @@ export interface DescribeRabbitMQVipInstanceResponse {
|
|
|
5111
5178
|
/**
|
|
5112
5179
|
* 集群信息
|
|
5113
5180
|
*/
|
|
5114
|
-
ClusterInfo
|
|
5181
|
+
ClusterInfo?: RabbitMQClusterInfo;
|
|
5115
5182
|
/**
|
|
5116
5183
|
* 集群规格信息
|
|
5117
5184
|
*/
|
|
5118
|
-
ClusterSpecInfo
|
|
5185
|
+
ClusterSpecInfo?: RabbitMQClusterSpecInfo;
|
|
5119
5186
|
/**
|
|
5120
5187
|
* 集群访问
|
|
5121
5188
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5122
5189
|
*/
|
|
5123
|
-
ClusterNetInfo
|
|
5190
|
+
ClusterNetInfo?: RabbitMQClusterAccessInfo;
|
|
5124
5191
|
/**
|
|
5125
5192
|
* 集群白名单
|
|
5126
5193
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5127
5194
|
*/
|
|
5128
|
-
ClusterWhiteListInfo
|
|
5195
|
+
ClusterWhiteListInfo?: RabbitMQClusterWhiteListInfo;
|
|
5129
5196
|
/**
|
|
5130
5197
|
* vhost配额信息
|
|
5131
5198
|
*/
|
|
5132
|
-
VirtualHostQuota
|
|
5199
|
+
VirtualHostQuota?: VirtualHostQuota;
|
|
5133
5200
|
/**
|
|
5134
5201
|
* exchange配额信息
|
|
5135
5202
|
*/
|
|
5136
|
-
ExchangeQuota
|
|
5203
|
+
ExchangeQuota?: ExchangeQuota;
|
|
5137
5204
|
/**
|
|
5138
5205
|
* queue配额信息
|
|
5139
5206
|
*/
|
|
5140
|
-
QueueQuota
|
|
5207
|
+
QueueQuota?: QueueQuota;
|
|
5141
5208
|
/**
|
|
5142
5209
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5143
5210
|
*/
|
|
@@ -6760,33 +6827,41 @@ export interface CreateRabbitMQVirtualHostRequest {
|
|
|
6760
6827
|
TraceFlag?: boolean;
|
|
6761
6828
|
}
|
|
6762
6829
|
/**
|
|
6763
|
-
*
|
|
6830
|
+
* DescribeTopicMsgs请求参数结构体
|
|
6764
6831
|
*/
|
|
6765
|
-
export interface
|
|
6832
|
+
export interface DescribeTopicMsgsRequest {
|
|
6766
6833
|
/**
|
|
6767
|
-
*
|
|
6834
|
+
* 环境(命名空间)名称。
|
|
6768
6835
|
*/
|
|
6769
6836
|
EnvironmentId: string;
|
|
6770
6837
|
/**
|
|
6771
|
-
*
|
|
6838
|
+
* 主题名。
|
|
6772
6839
|
*/
|
|
6773
|
-
|
|
6840
|
+
TopicName: string;
|
|
6774
6841
|
/**
|
|
6775
|
-
*
|
|
6842
|
+
* 开始时间。
|
|
6776
6843
|
*/
|
|
6777
|
-
|
|
6844
|
+
StartTime: string;
|
|
6778
6845
|
/**
|
|
6779
|
-
*
|
|
6846
|
+
* 结束时间。
|
|
6780
6847
|
*/
|
|
6781
|
-
|
|
6848
|
+
EndTime: string;
|
|
6782
6849
|
/**
|
|
6783
|
-
*
|
|
6850
|
+
* 起始下标,不填默认为0。
|
|
6784
6851
|
*/
|
|
6785
|
-
|
|
6852
|
+
Offset?: number;
|
|
6786
6853
|
/**
|
|
6787
|
-
*
|
|
6854
|
+
* 返回数量,不填则默认为10,最大值为20。
|
|
6788
6855
|
*/
|
|
6789
|
-
|
|
6856
|
+
Limit?: number;
|
|
6857
|
+
/**
|
|
6858
|
+
* 消息ID。
|
|
6859
|
+
*/
|
|
6860
|
+
MsgId?: string;
|
|
6861
|
+
/**
|
|
6862
|
+
* Pulsar 集群的ID
|
|
6863
|
+
*/
|
|
6864
|
+
ClusterId?: string;
|
|
6790
6865
|
}
|
|
6791
6866
|
/**
|
|
6792
6867
|
* VPC接入点信息
|
|
@@ -1050,6 +1050,21 @@ export interface Service {
|
|
|
1050
1050
|
*/
|
|
1051
1051
|
LatestVersion?: string;
|
|
1052
1052
|
}
|
|
1053
|
+
/**
|
|
1054
|
+
* 跨租户弹性网卡下Pod调用信息
|
|
1055
|
+
*/
|
|
1056
|
+
export interface CrossTenantENIInfo {
|
|
1057
|
+
/**
|
|
1058
|
+
* Pod IP
|
|
1059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1060
|
+
*/
|
|
1061
|
+
PrimaryIP?: string;
|
|
1062
|
+
/**
|
|
1063
|
+
* Pod Port
|
|
1064
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1065
|
+
*/
|
|
1066
|
+
Port?: string;
|
|
1067
|
+
}
|
|
1053
1068
|
/**
|
|
1054
1069
|
* 模型专业参数
|
|
1055
1070
|
*/
|
|
@@ -1995,27 +2010,27 @@ export interface ContainerStatus {
|
|
|
1995
2010
|
* 重启次数
|
|
1996
2011
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1997
2012
|
*/
|
|
1998
|
-
RestartCount
|
|
2013
|
+
RestartCount: number;
|
|
1999
2014
|
/**
|
|
2000
2015
|
* 状态
|
|
2001
2016
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2002
2017
|
*/
|
|
2003
|
-
State
|
|
2018
|
+
State: string;
|
|
2004
2019
|
/**
|
|
2005
2020
|
* 是否就绪
|
|
2006
2021
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2007
2022
|
*/
|
|
2008
|
-
Ready
|
|
2023
|
+
Ready: boolean;
|
|
2009
2024
|
/**
|
|
2010
2025
|
* 状态原因
|
|
2011
2026
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2012
2027
|
*/
|
|
2013
|
-
Reason
|
|
2028
|
+
Reason: string;
|
|
2014
2029
|
/**
|
|
2015
2030
|
* 容器的错误信息
|
|
2016
2031
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2017
2032
|
*/
|
|
2018
|
-
Message
|
|
2033
|
+
Message: string;
|
|
2019
2034
|
}
|
|
2020
2035
|
/**
|
|
2021
2036
|
* 三级标签
|
|
@@ -4802,6 +4817,11 @@ export interface Pod {
|
|
|
4802
4817
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4803
4818
|
*/
|
|
4804
4819
|
ContainerInfos?: Array<Container>;
|
|
4820
|
+
/**
|
|
4821
|
+
* 容器调用信息
|
|
4822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4823
|
+
*/
|
|
4824
|
+
CrossTenantENIInfo?: CrossTenantENIInfo;
|
|
4805
4825
|
}
|
|
4806
4826
|
/**
|
|
4807
4827
|
* DescribeLatestTrainingMetrics请求参数结构体
|
|
@@ -5721,22 +5741,22 @@ export interface Container {
|
|
|
5721
5741
|
* 名字
|
|
5722
5742
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5723
5743
|
*/
|
|
5724
|
-
Name
|
|
5744
|
+
Name: string;
|
|
5725
5745
|
/**
|
|
5726
5746
|
* id
|
|
5727
5747
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5728
5748
|
*/
|
|
5729
|
-
ContainerId
|
|
5749
|
+
ContainerId: string;
|
|
5730
5750
|
/**
|
|
5731
5751
|
* 镜像地址
|
|
5732
5752
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5733
5753
|
*/
|
|
5734
|
-
Image
|
|
5754
|
+
Image: string;
|
|
5735
5755
|
/**
|
|
5736
5756
|
* 容器状态
|
|
5737
5757
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5738
5758
|
*/
|
|
5739
|
-
Status
|
|
5759
|
+
Status: ContainerStatus;
|
|
5740
5760
|
}
|
|
5741
5761
|
/**
|
|
5742
5762
|
* 图片分割参数信息
|
|
@@ -3711,7 +3711,7 @@ export interface DescribeBandwidthPackagesRequest {
|
|
|
3711
3711
|
BandwidthPackageIds?: Array<string>;
|
|
3712
3712
|
/**
|
|
3713
3713
|
* 每次请求的`Filters`的上限为10。参数不支持同时指定`BandwidthPackageIds`和`Filters`。详细的过滤条件如下:
|
|
3714
|
-
<li> bandwidth-
|
|
3714
|
+
<li> bandwidth-package-id - String - 是否必填:否 - (过滤条件)按照带宽包的唯一标识ID过滤。</li>
|
|
3715
3715
|
<li> bandwidth-package-name - String - 是否必填:否 - (过滤条件)按照 带宽包名称过滤。不支持模糊过滤。</li>
|
|
3716
3716
|
<li> network-type - String - 是否必填:否 - (过滤条件)按照带宽包的类型过滤。类型包括'HIGH_QUALITY_BGP','BGP','SINGLEISP'和'ANYCAST'。</li>
|
|
3717
3717
|
<li> charge-type - String - 是否必填:否 - (过滤条件)按照带宽包的计费类型过滤。计费类型包括: <li>'TOP5_POSTPAID_BY_MONTH':按月后付费TOP5计费</li><li> 'PERCENT95_POSTPAID_BY_MONTH':按月后付费月95计费</li><li>'ENHANCED95_POSTPAID_BY_MONTH':按月后付费增强型95计费</li><li>'FIXED_PREPAID_BY_MONTH':包月预付费计费</li><li>‘PEAK_BANDWIDTH_POSTPAID_BY_DAY’: 后付费日结按带宽计费</li>
|
|
@@ -331,9 +331,18 @@ export interface CreateVRSTaskRequest {
|
|
|
331
331
|
*/
|
|
332
332
|
CallbackUrl?: string;
|
|
333
333
|
/**
|
|
334
|
-
*
|
|
334
|
+
* 模型类型 1:在线 2:离线 默认为1
|
|
335
335
|
*/
|
|
336
336
|
ModelType?: number;
|
|
337
|
+
/**
|
|
338
|
+
* 任务类型 0:默认类型 1:轻量级复刻
|
|
339
|
+
默认为0
|
|
340
|
+
*/
|
|
341
|
+
TaskType?: number;
|
|
342
|
+
/**
|
|
343
|
+
* 校验音频ID
|
|
344
|
+
*/
|
|
345
|
+
VPRAudioId?: string;
|
|
337
346
|
}
|
|
338
347
|
/**
|
|
339
348
|
* DetectEnvAndSoundQuality返回参数结构体
|
|
@@ -222,7 +222,9 @@ export declare class Client extends AbstractClient {
|
|
|
222
222
|
*/
|
|
223
223
|
DescribeUserLevel(req: DescribeUserLevelRequest, cb?: (error: string, rep: DescribeUserLevelResponse) => void): Promise<DescribeUserLevelResponse>;
|
|
224
224
|
/**
|
|
225
|
-
*
|
|
225
|
+
* 没有在使用。
|
|
226
|
+
|
|
227
|
+
Waf CC V2 Query接口
|
|
226
228
|
*/
|
|
227
229
|
DescribeCCRule(req: DescribeCCRuleRequest, cb?: (error: string, rep: DescribeCCRuleResponse) => void): Promise<DescribeCCRuleResponse>;
|
|
228
230
|
/**
|
|
@@ -331,7 +333,9 @@ export declare class Client extends AbstractClient {
|
|
|
331
333
|
*/
|
|
332
334
|
DescribeFlowTrend(req: DescribeFlowTrendRequest, cb?: (error: string, rep: DescribeFlowTrendResponse) => void): Promise<DescribeFlowTrendResponse>;
|
|
333
335
|
/**
|
|
334
|
-
*
|
|
336
|
+
* 废弃接口
|
|
337
|
+
|
|
338
|
+
获取防篡改url
|
|
335
339
|
*/
|
|
336
340
|
DescribeAntiFakeUrl(req: DescribeAntiFakeUrlRequest, cb?: (error: string, rep: DescribeAntiFakeUrlResponse) => void): Promise<DescribeAntiFakeUrlResponse>;
|
|
337
341
|
/**
|
|
@@ -346,7 +346,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
346
346
|
return this.request("DescribeUserLevel", req, cb);
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
*
|
|
349
|
+
* 没有在使用。
|
|
350
|
+
|
|
351
|
+
Waf CC V2 Query接口
|
|
350
352
|
*/
|
|
351
353
|
async DescribeCCRule(req, cb) {
|
|
352
354
|
return this.request("DescribeCCRule", req, cb);
|
|
@@ -507,7 +509,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
507
509
|
return this.request("DescribeFlowTrend", req, cb);
|
|
508
510
|
}
|
|
509
511
|
/**
|
|
510
|
-
*
|
|
512
|
+
* 废弃接口
|
|
513
|
+
|
|
514
|
+
获取防篡改url
|
|
511
515
|
*/
|
|
512
516
|
async DescribeAntiFakeUrl(req, cb) {
|
|
513
517
|
return this.request("DescribeAntiFakeUrl", req, cb);
|
|
@@ -48,6 +48,16 @@ it("dnspod.v20210323.DescribeSnapshotRollbackTask", async function () {
|
|
|
48
48
|
}
|
|
49
49
|
})
|
|
50
50
|
|
|
51
|
+
it("dnspod.v20210323.ModifyVasAutoRenewStatus", async function () {
|
|
52
|
+
try {
|
|
53
|
+
const data = await client.ModifyVasAutoRenewStatus({})
|
|
54
|
+
expect(data).to.be.ok
|
|
55
|
+
} catch(error) {
|
|
56
|
+
expect(error.requestId).to.be.ok
|
|
57
|
+
expect(error.code).to.be.ok
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
|
|
51
61
|
it("dnspod.v20210323.DescribeDomainPurview", async function () {
|
|
52
62
|
try {
|
|
53
63
|
const data = await client.DescribeDomainPurview({})
|
|
@@ -68,6 +78,16 @@ it("dnspod.v20210323.ModifySubdomainStatus", async function () {
|
|
|
68
78
|
}
|
|
69
79
|
})
|
|
70
80
|
|
|
81
|
+
it("dnspod.v20210323.DeleteDomainCustomLine", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.DeleteDomainCustomLine({})
|
|
84
|
+
expect(data).to.be.ok
|
|
85
|
+
} catch(error) {
|
|
86
|
+
expect(error.requestId).to.be.ok
|
|
87
|
+
expect(error.code).to.be.ok
|
|
88
|
+
}
|
|
89
|
+
})
|
|
90
|
+
|
|
71
91
|
it("dnspod.v20210323.DescribeRecordType", async function () {
|
|
72
92
|
try {
|
|
73
93
|
const data = await client.DescribeRecordType({})
|
|
@@ -288,9 +308,9 @@ it("dnspod.v20210323.DeleteShareDomain", async function () {
|
|
|
288
308
|
}
|
|
289
309
|
})
|
|
290
310
|
|
|
291
|
-
it("dnspod.v20210323.
|
|
311
|
+
it("dnspod.v20210323.DescribeDomain", async function () {
|
|
292
312
|
try {
|
|
293
|
-
const data = await client.
|
|
313
|
+
const data = await client.DescribeDomain({})
|
|
294
314
|
expect(data).to.be.ok
|
|
295
315
|
} catch(error) {
|
|
296
316
|
expect(error.requestId).to.be.ok
|
|
@@ -318,9 +338,9 @@ it("dnspod.v20210323.ModifyRecordStatus", async function () {
|
|
|
318
338
|
}
|
|
319
339
|
})
|
|
320
340
|
|
|
321
|
-
it("dnspod.v20210323.
|
|
341
|
+
it("dnspod.v20210323.CreateRecordGroup", async function () {
|
|
322
342
|
try {
|
|
323
|
-
const data = await client.
|
|
343
|
+
const data = await client.CreateRecordGroup({})
|
|
324
344
|
expect(data).to.be.ok
|
|
325
345
|
} catch(error) {
|
|
326
346
|
expect(error.requestId).to.be.ok
|
|
@@ -348,9 +368,9 @@ it("dnspod.v20210323.CreateRecordBatch", async function () {
|
|
|
348
368
|
}
|
|
349
369
|
})
|
|
350
370
|
|
|
351
|
-
it("dnspod.v20210323.
|
|
371
|
+
it("dnspod.v20210323.CreateDomainCustomLine", async function () {
|
|
352
372
|
try {
|
|
353
|
-
const data = await client.
|
|
373
|
+
const data = await client.CreateDomainCustomLine({})
|
|
354
374
|
expect(data).to.be.ok
|
|
355
375
|
} catch(error) {
|
|
356
376
|
expect(error.requestId).to.be.ok
|
|
@@ -358,9 +378,9 @@ it("dnspod.v20210323.DescribeUserDetail", async function () {
|
|
|
358
378
|
}
|
|
359
379
|
})
|
|
360
380
|
|
|
361
|
-
it("dnspod.v20210323.
|
|
381
|
+
it("dnspod.v20210323.DescribeUserDetail", async function () {
|
|
362
382
|
try {
|
|
363
|
-
const data = await client.
|
|
383
|
+
const data = await client.DescribeUserDetail({})
|
|
364
384
|
expect(data).to.be.ok
|
|
365
385
|
} catch(error) {
|
|
366
386
|
expect(error.requestId).to.be.ok
|
|
@@ -368,9 +388,9 @@ it("dnspod.v20210323.RollbackSnapshot", async function () {
|
|
|
368
388
|
}
|
|
369
389
|
})
|
|
370
390
|
|
|
371
|
-
it("dnspod.v20210323.
|
|
391
|
+
it("dnspod.v20210323.RollbackSnapshot", async function () {
|
|
372
392
|
try {
|
|
373
|
-
const data = await client.
|
|
393
|
+
const data = await client.RollbackSnapshot({})
|
|
374
394
|
expect(data).to.be.ok
|
|
375
395
|
} catch(error) {
|
|
376
396
|
expect(error.requestId).to.be.ok
|
|
@@ -378,9 +398,9 @@ it("dnspod.v20210323.DeleteRecord", async function () {
|
|
|
378
398
|
}
|
|
379
399
|
})
|
|
380
400
|
|
|
381
|
-
it("dnspod.v20210323.
|
|
401
|
+
it("dnspod.v20210323.DeleteRecord", async function () {
|
|
382
402
|
try {
|
|
383
|
-
const data = await client.
|
|
403
|
+
const data = await client.DeleteRecord({})
|
|
384
404
|
expect(data).to.be.ok
|
|
385
405
|
} catch(error) {
|
|
386
406
|
expect(error.requestId).to.be.ok
|
|
@@ -388,9 +408,9 @@ it("dnspod.v20210323.DescribeRecord", async function () {
|
|
|
388
408
|
}
|
|
389
409
|
})
|
|
390
410
|
|
|
391
|
-
it("dnspod.v20210323.
|
|
411
|
+
it("dnspod.v20210323.DescribeRecord", async function () {
|
|
392
412
|
try {
|
|
393
|
-
const data = await client.
|
|
413
|
+
const data = await client.DescribeRecord({})
|
|
394
414
|
expect(data).to.be.ok
|
|
395
415
|
} catch(error) {
|
|
396
416
|
expect(error.requestId).to.be.ok
|
|
@@ -518,9 +538,9 @@ it("dnspod.v20210323.CreateDomainGroup", async function () {
|
|
|
518
538
|
}
|
|
519
539
|
})
|
|
520
540
|
|
|
521
|
-
it("dnspod.v20210323.
|
|
541
|
+
it("dnspod.v20210323.ModifySnapshotConfig", async function () {
|
|
522
542
|
try {
|
|
523
|
-
const data = await client.
|
|
543
|
+
const data = await client.ModifySnapshotConfig({})
|
|
524
544
|
expect(data).to.be.ok
|
|
525
545
|
} catch(error) {
|
|
526
546
|
expect(error.requestId).to.be.ok
|
|
@@ -558,9 +578,9 @@ it("dnspod.v20210323.CheckRecordSnapshotRollback", async function () {
|
|
|
558
578
|
}
|
|
559
579
|
})
|
|
560
580
|
|
|
561
|
-
it("dnspod.v20210323.
|
|
581
|
+
it("dnspod.v20210323.DescribeDomainCustomLineList", async function () {
|
|
562
582
|
try {
|
|
563
|
-
const data = await client.
|
|
583
|
+
const data = await client.DescribeDomainCustomLineList({})
|
|
564
584
|
expect(data).to.be.ok
|
|
565
585
|
} catch(error) {
|
|
566
586
|
expect(error.requestId).to.be.ok
|
|
@@ -588,6 +608,16 @@ it("dnspod.v20210323.ModifyRecordRemark", async function () {
|
|
|
588
608
|
}
|
|
589
609
|
})
|
|
590
610
|
|
|
611
|
+
it("dnspod.v20210323.ModifyDomainCustomLine", async function () {
|
|
612
|
+
try {
|
|
613
|
+
const data = await client.ModifyDomainCustomLine({})
|
|
614
|
+
expect(data).to.be.ok
|
|
615
|
+
} catch(error) {
|
|
616
|
+
expect(error.requestId).to.be.ok
|
|
617
|
+
expect(error.code).to.be.ok
|
|
618
|
+
}
|
|
619
|
+
})
|
|
620
|
+
|
|
591
621
|
it("dnspod.v20210323.DescribeDomainFilterList", async function () {
|
|
592
622
|
try {
|
|
593
623
|
const data = await client.DescribeDomainFilterList({})
|
|
@@ -598,6 +628,16 @@ it("dnspod.v20210323.DescribeDomainFilterList", async function () {
|
|
|
598
628
|
}
|
|
599
629
|
})
|
|
600
630
|
|
|
631
|
+
it("dnspod.v20210323.PayOrderWithBalance", async function () {
|
|
632
|
+
try {
|
|
633
|
+
const data = await client.PayOrderWithBalance({})
|
|
634
|
+
expect(data).to.be.ok
|
|
635
|
+
} catch(error) {
|
|
636
|
+
expect(error.requestId).to.be.ok
|
|
637
|
+
expect(error.code).to.be.ok
|
|
638
|
+
}
|
|
639
|
+
})
|
|
640
|
+
|
|
601
641
|
it("dnspod.v20210323.ModifyRecordToGroup", async function () {
|
|
602
642
|
try {
|
|
603
643
|
const data = await client.ModifyRecordToGroup({})
|
|
@@ -608,9 +648,9 @@ it("dnspod.v20210323.ModifyRecordToGroup", async function () {
|
|
|
608
648
|
}
|
|
609
649
|
})
|
|
610
650
|
|
|
611
|
-
it("dnspod.v20210323.
|
|
651
|
+
it("dnspod.v20210323.DescribeDomainPreview", async function () {
|
|
612
652
|
try {
|
|
613
|
-
const data = await client.
|
|
653
|
+
const data = await client.DescribeDomainPreview({})
|
|
614
654
|
expect(data).to.be.ok
|
|
615
655
|
} catch(error) {
|
|
616
656
|
expect(error.requestId).to.be.ok
|
|
@@ -888,6 +888,16 @@ it("tdmq.v20200217.CreateRocketMQNamespace", async function () {
|
|
|
888
888
|
}
|
|
889
889
|
})
|
|
890
890
|
|
|
891
|
+
it("tdmq.v20200217.SendBatchMessages", async function () {
|
|
892
|
+
try {
|
|
893
|
+
const data = await client.SendBatchMessages({})
|
|
894
|
+
expect(data).to.be.ok
|
|
895
|
+
} catch(error) {
|
|
896
|
+
expect(error.requestId).to.be.ok
|
|
897
|
+
expect(error.code).to.be.ok
|
|
898
|
+
}
|
|
899
|
+
})
|
|
900
|
+
|
|
891
901
|
it("tdmq.v20200217.ModifyRabbitMQVipInstance", async function () {
|
|
892
902
|
try {
|
|
893
903
|
const data = await client.ModifyRabbitMQVipInstance({})
|
|
@@ -988,9 +998,9 @@ it("tdmq.v20200217.ModifyRocketMQNamespace", async function () {
|
|
|
988
998
|
}
|
|
989
999
|
})
|
|
990
1000
|
|
|
991
|
-
it("tdmq.v20200217.
|
|
1001
|
+
it("tdmq.v20200217.DescribeTopicMsgs", async function () {
|
|
992
1002
|
try {
|
|
993
|
-
const data = await client.
|
|
1003
|
+
const data = await client.DescribeTopicMsgs({})
|
|
994
1004
|
expect(data).to.be.ok
|
|
995
1005
|
} catch(error) {
|
|
996
1006
|
expect(error.requestId).to.be.ok
|