tencentcloud-sdk-nodejs 4.0.709 → 4.0.710

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.
Files changed (45) hide show
  1. package/CHANGELOG.md +147 -0
  2. package/SERVICE_CHANGELOG.md +181 -215
  3. package/package.json +1 -1
  4. package/products.md +13 -13
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/bi/v20220105/bi_client.ts +91 -79
  7. package/src/services/bi/v20220105/bi_models.ts +68 -25
  8. package/src/services/cdn/v20180606/cdn_models.ts +25 -25
  9. package/src/services/clb/v20180317/clb_client.ts +1 -1
  10. package/src/services/clb/v20180317/clb_models.ts +15 -10
  11. package/src/services/cynosdb/v20190107/cynosdb_models.ts +2 -2
  12. package/src/services/dlc/v20210125/dlc_client.ts +3 -2
  13. package/src/services/dlc/v20210125/dlc_models.ts +73 -38
  14. package/src/services/domain/v20180808/domain_client.ts +78 -17
  15. package/src/services/domain/v20180808/domain_models.ts +188 -21
  16. package/src/services/ess/v20201111/ess_models.ts +11 -0
  17. package/src/services/essbasic/v20210526/essbasic_models.ts +11 -0
  18. package/src/services/faceid/v20180301/faceid_models.ts +12 -12
  19. package/src/services/tione/v20211111/tione_client.ts +2 -4
  20. package/src/services/tione/v20211111/tione_models.ts +0 -2
  21. package/src/services/tse/v20201207/tse_models.ts +10 -0
  22. package/tencentcloud/common/sdk_version.d.ts +1 -1
  23. package/tencentcloud/common/sdk_version.js +1 -1
  24. package/tencentcloud/services/bi/v20220105/bi_client.d.ts +35 -31
  25. package/tencentcloud/services/bi/v20220105/bi_client.js +51 -45
  26. package/tencentcloud/services/bi/v20220105/bi_models.d.ts +65 -24
  27. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +25 -25
  28. package/tencentcloud/services/clb/v20180317/clb_client.d.ts +1 -1
  29. package/tencentcloud/services/clb/v20180317/clb_client.js +1 -1
  30. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +15 -10
  31. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +2 -2
  32. package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +1 -1
  33. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +72 -38
  34. package/tencentcloud/services/domain/v20180808/domain_client.d.ts +26 -6
  35. package/tencentcloud/services/domain/v20180808/domain_client.js +37 -7
  36. package/tencentcloud/services/domain/v20180808/domain_models.d.ts +177 -21
  37. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +11 -0
  38. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +11 -0
  39. package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +12 -12
  40. package/tencentcloud/services/tione/v20211111/tione_client.d.ts +1 -3
  41. package/tencentcloud/services/tione/v20211111/tione_client.js +1 -3
  42. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +0 -2
  43. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +10 -0
  44. package/test/bi.v20220105.test.js +42 -32
  45. package/test/domain.v20180808.test.js +54 -4
@@ -2723,46 +2723,51 @@ export interface CreateClsLogSetResponse {
2723
2723
  */
2724
2724
  export interface Backend {
2725
2725
  /**
2726
- * 后端服务的类型,可取:CVM、ENI
2726
+ * 后端服务的类型,可取:CVM、ENI、CCN
2727
2727
  */
2728
- Type: string;
2728
+ Type?: string;
2729
2729
  /**
2730
2730
  * 后端服务的唯一 ID,如 ins-abcd1234
2731
2731
  */
2732
- InstanceId: string;
2732
+ InstanceId?: string;
2733
2733
  /**
2734
2734
  * 后端服务的监听端口
2735
2735
  */
2736
- Port: number;
2736
+ Port?: number;
2737
2737
  /**
2738
2738
  * 后端服务的转发权重,取值范围:[0, 100],默认为 10。
2739
2739
  */
2740
- Weight: number;
2740
+ Weight?: number;
2741
2741
  /**
2742
2742
  * 后端服务的外网 IP
2743
2743
  注意:此字段可能返回 null,表示取不到有效值。
2744
2744
  */
2745
- PublicIpAddresses: Array<string>;
2745
+ PublicIpAddresses?: Array<string>;
2746
2746
  /**
2747
2747
  * 后端服务的内网 IP
2748
2748
  注意:此字段可能返回 null,表示取不到有效值。
2749
2749
  */
2750
- PrivateIpAddresses: Array<string>;
2750
+ PrivateIpAddresses?: Array<string>;
2751
2751
  /**
2752
2752
  * 后端服务的实例名称
2753
2753
  注意:此字段可能返回 null,表示取不到有效值。
2754
2754
  */
2755
- InstanceName: string;
2755
+ InstanceName?: string;
2756
2756
  /**
2757
2757
  * 后端服务被绑定的时间
2758
2758
  注意:此字段可能返回 null,表示取不到有效值。
2759
2759
  */
2760
- RegisteredTime: string;
2760
+ RegisteredTime?: string;
2761
2761
  /**
2762
2762
  * 弹性网卡唯一ID,如 eni-1234abcd
2763
2763
  注意:此字段可能返回 null,表示取不到有效值。
2764
2764
  */
2765
- EniId: string;
2765
+ EniId?: string;
2766
+ /**
2767
+ * 标签。
2768
+ 注意:此字段可能返回 null,表示取不到有效值。
2769
+ */
2770
+ Tag?: string;
2766
2771
  }
2767
2772
  /**
2768
2773
  * lb实例包年包月相关配置属性
@@ -720,7 +720,7 @@ export interface DescribeDBSecurityGroupsResponse {
720
720
  /**
721
721
  * 安全组信息
722
722
  */
723
- Groups: Array<SecurityGroup>;
723
+ Groups?: Array<SecurityGroup>;
724
724
  /**
725
725
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
726
726
  */
@@ -7815,7 +7815,7 @@ export interface DescribeInstanceSpecsResponse {
7815
7815
  */
7816
7816
  export interface DescribeDBSecurityGroupsRequest {
7817
7817
  /**
7818
- * 实例组ID
7818
+ * 实例组ID。可以通过接口DescribeClusterInstanceGrps获取。
7819
7819
  */
7820
7820
  InstanceId: string;
7821
7821
  }
@@ -134,7 +134,7 @@ export declare class Client extends AbstractClient {
134
134
  /**
135
135
  * 获取LakeFs上task执行结果访问信息
136
136
  */
137
- DescribeLakeFsTaskResult(req?: DescribeLakeFsTaskResultRequest, cb?: (error: string, rep: DescribeLakeFsTaskResultResponse) => void): Promise<DescribeLakeFsTaskResultResponse>;
137
+ DescribeLakeFsTaskResult(req: DescribeLakeFsTaskResultRequest, cb?: (error: string, rep: DescribeLakeFsTaskResultResponse) => void): Promise<DescribeLakeFsTaskResultResponse>;
138
138
  /**
139
139
  * 此接口用于更新行过滤规则。注意只能更新过滤规则,不能更新规格对象catalog,database和table。
140
140
  */
@@ -1,52 +1,27 @@
1
1
  /**
2
- * 用户详细信息
2
+ * LakeFileSystem使用的临时token
3
3
  */
4
- export interface UserDetailInfo {
5
- /**
6
- * 用户Id
7
- 注意:此字段可能返回 null,表示取不到有效值。
8
- */
9
- UserId: string;
10
- /**
11
- * 返回的信息类型,Group:返回的当前用户的工作组信息;DataAuth:返回的当前用户的数据权限信息;EngineAuth:返回的当前用户的引擎权限信息
12
- 注意:此字段可能返回 null,表示取不到有效值。
13
- */
14
- Type: string;
4
+ export interface LakeFileSystemToken {
15
5
  /**
16
- * 用户类型:ADMIN:管理员 COMMON:一般用户
17
- 注意:此字段可能返回 null,表示取不到有效值。
18
- */
19
- UserType: string;
20
- /**
21
- * 用户描述信息
22
- 注意:此字段可能返回 null,表示取不到有效值。
23
- */
24
- UserDescription: string;
25
- /**
26
- * 数据权限信息集合
27
- 注意:此字段可能返回 null,表示取不到有效值。
6
+ * Token使用的临时秘钥的ID
28
7
  */
29
- DataPolicyInfo: Policys;
8
+ SecretId: string;
30
9
  /**
31
- * 引擎权限集合
32
- 注意:此字段可能返回 null,表示取不到有效值。
10
+ * Token使用的临时秘钥
33
11
  */
34
- EnginePolicyInfo: Policys;
12
+ SecretKey: string;
35
13
  /**
36
- * 绑定到该用户的工作组集合信息
37
- 注意:此字段可能返回 null,表示取不到有效值。
14
+ * Token信息
38
15
  */
39
- WorkGroupInfo: WorkGroups;
16
+ Token: string;
40
17
  /**
41
- * 用户别名
42
- 注意:此字段可能返回 null,表示取不到有效值。
18
+ * 过期时间
43
19
  */
44
- UserAlias: string;
20
+ ExpiredTime: number;
45
21
  /**
46
- * 行过滤集合
47
- 注意:此字段可能返回 null,表示取不到有效值。
22
+ * 颁布时间
48
23
  */
49
- RowFilterInfo: Policys;
24
+ IssueTime: number;
50
25
  }
51
26
  /**
52
27
  * UpdateDataEngine请求参数结构体
@@ -1013,6 +988,56 @@ export interface DeleteScriptResponse {
1013
988
  */
1014
989
  RequestId?: string;
1015
990
  }
991
+ /**
992
+ * 用户详细信息
993
+ */
994
+ export interface UserDetailInfo {
995
+ /**
996
+ * 用户Id
997
+ 注意:此字段可能返回 null,表示取不到有效值。
998
+ */
999
+ UserId: string;
1000
+ /**
1001
+ * 返回的信息类型,Group:返回的当前用户的工作组信息;DataAuth:返回的当前用户的数据权限信息;EngineAuth:返回的当前用户的引擎权限信息
1002
+ 注意:此字段可能返回 null,表示取不到有效值。
1003
+ */
1004
+ Type: string;
1005
+ /**
1006
+ * 用户类型:ADMIN:管理员 COMMON:一般用户
1007
+ 注意:此字段可能返回 null,表示取不到有效值。
1008
+ */
1009
+ UserType: string;
1010
+ /**
1011
+ * 用户描述信息
1012
+ 注意:此字段可能返回 null,表示取不到有效值。
1013
+ */
1014
+ UserDescription: string;
1015
+ /**
1016
+ * 数据权限信息集合
1017
+ 注意:此字段可能返回 null,表示取不到有效值。
1018
+ */
1019
+ DataPolicyInfo: Policys;
1020
+ /**
1021
+ * 引擎权限集合
1022
+ 注意:此字段可能返回 null,表示取不到有效值。
1023
+ */
1024
+ EnginePolicyInfo: Policys;
1025
+ /**
1026
+ * 绑定到该用户的工作组集合信息
1027
+ 注意:此字段可能返回 null,表示取不到有效值。
1028
+ */
1029
+ WorkGroupInfo: WorkGroups;
1030
+ /**
1031
+ * 用户别名
1032
+ 注意:此字段可能返回 null,表示取不到有效值。
1033
+ */
1034
+ UserAlias: string;
1035
+ /**
1036
+ * 行过滤集合
1037
+ 注意:此字段可能返回 null,表示取不到有效值。
1038
+ */
1039
+ RowFilterInfo: Policys;
1040
+ }
1016
1041
  /**
1017
1042
  * 返回数据表的相关信息。
1018
1043
  */
@@ -4577,7 +4602,12 @@ export interface DeleteScriptRequest {
4577
4602
  /**
4578
4603
  * DescribeLakeFsTaskResult请求参数结构体
4579
4604
  */
4580
- export declare type DescribeLakeFsTaskResultRequest = null;
4605
+ export interface DescribeLakeFsTaskResultRequest {
4606
+ /**
4607
+ * 需要访问的任务结果路径
4608
+ */
4609
+ FsPath: string;
4610
+ }
4581
4611
  /**
4582
4612
  * UnbindWorkGroupsFromUser返回参数结构体
4583
4613
  */
@@ -6488,6 +6518,10 @@ export interface TableResponseInfo {
6488
6518
  * DescribeLakeFsTaskResult返回参数结构体
6489
6519
  */
6490
6520
  export interface DescribeLakeFsTaskResultResponse {
6521
+ /**
6522
+ * 路径的访问实例
6523
+ */
6524
+ AccessToken?: LakeFileSystemToken;
6491
6525
  /**
6492
6526
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6493
6527
  */
@@ -1,6 +1,6 @@
1
1
  import { AbstractClient } from "../../../common/abstract_client";
2
2
  import { ClientConfig } from "../../../common/interface";
3
- import { UploadImageResponse, RenewDomainBatchResponse, BatchModifyDomainInfoRequest, CreateDomainRedemptionResponse, UpdateProhibitionBatchRequest, TransferInDomainBatchResponse, DeleteTemplateResponse, TransferInDomainBatchRequest, CreateDomainBatchResponse, SendPhoneEmailCodeResponse, ModifyDomainDNSBatchResponse, DeletePhoneEmailRequest, DescribeTemplateResponse, UpdateProhibitionBatchResponse, CheckDomainResponse, DescribeDomainSimpleInfoRequest, CreatePhoneEmailRequest, DescribeTemplateRequest, RenewDomainBatchRequest, BatchModifyDomainInfoResponse, ModifyDomainOwnerBatchResponse, DescribeDomainBaseInfoResponse, DescribeTemplateListResponse, TransferProhibitionBatchRequest, DescribeTemplateListRequest, DescribeBatchOperationLogDetailsRequest, DescribeDomainNameListResponse, CreateCustomDnsHostResponse, DescribeDomainPriceListResponse, CreateTemplateResponse, DeleteTemplateRequest, CheckBatchStatusRequest, SetDomainAutoRenewResponse, CreateTemplateRequest, DescribeDomainPriceListRequest, SetDomainAutoRenewRequest, CreateDomainBatchRequest, DescribeDomainSimpleInfoResponse, DescribeDomainBaseInfoRequest, DescribePhoneEmailListRequest, DescribeDomainNameListRequest, DescribeBatchOperationLogsRequest, UploadImageRequest, CheckDomainRequest, DescribeBatchOperationLogsResponse, TransferProhibitionBatchResponse, CreateCustomDnsHostRequest, ModifyDomainDNSBatchRequest, DescribeBatchOperationLogDetailsResponse, DescribePhoneEmailListResponse, CheckBatchStatusResponse, DeletePhoneEmailResponse, CreateDomainRedemptionRequest, CreatePhoneEmailResponse, ModifyDomainOwnerBatchRequest, SendPhoneEmailCodeRequest } from "./domain_models";
3
+ import { UploadImageResponse, RenewDomainBatchResponse, SyncCustomDnsHostRequest, BatchModifyDomainInfoRequest, CreateDomainRedemptionResponse, UpdateProhibitionBatchRequest, TransferInDomainBatchResponse, DeleteTemplateResponse, TransferInDomainBatchRequest, CreateDomainBatchResponse, SendPhoneEmailCodeResponse, ModifyDomainDNSBatchResponse, DescribeCustomDnsHostSetResponse, DeletePhoneEmailRequest, DescribeTemplateResponse, CheckDomainResponse, DescribeDomainSimpleInfoRequest, CreatePhoneEmailRequest, DeleteCustomDnsHostResponse, DescribeTemplateRequest, RenewDomainBatchRequest, BatchModifyDomainInfoResponse, ModifyDomainOwnerBatchResponse, DescribeDomainBaseInfoResponse, DescribeTemplateListResponse, TransferProhibitionBatchRequest, DescribeTemplateListRequest, UpdateProhibitionBatchResponse, DescribeBatchOperationLogDetailsRequest, DescribeCustomDnsHostSetRequest, CreateCustomDnsHostResponse, DescribeDomainPriceListResponse, CreateTemplateResponse, DeleteTemplateRequest, CheckBatchStatusRequest, SetDomainAutoRenewResponse, CreateTemplateRequest, DescribeDomainPriceListRequest, SetDomainAutoRenewRequest, CreateDomainBatchRequest, ModifyIntlCustomDnsHostRequest, DescribeDomainSimpleInfoResponse, DescribeDomainBaseInfoRequest, DescribePhoneEmailListRequest, DescribeDomainNameListResponse, DescribeDomainNameListRequest, DescribeBatchOperationLogsRequest, UploadImageRequest, CheckDomainRequest, DescribeBatchOperationLogsResponse, TransferProhibitionBatchResponse, ModifyCustomDnsHostResponse, SyncCustomDnsHostResponse, ModifyCustomDnsHostRequest, CreateCustomDnsHostRequest, ModifyDomainDNSBatchRequest, DeleteCustomDnsHostRequest, DescribeBatchOperationLogDetailsResponse, SendPhoneEmailCodeRequest, DescribePhoneEmailListResponse, CheckBatchStatusResponse, DeletePhoneEmailResponse, CreateDomainRedemptionRequest, CreatePhoneEmailResponse, ModifyDomainOwnerBatchRequest, ModifyIntlCustomDnsHostResponse } from "./domain_models";
4
4
  /**
5
5
  * domain client
6
6
  * @class
@@ -11,6 +11,10 @@ export declare class Client extends AbstractClient {
11
11
  * 本接口 ( SetDomainAutoRenew ) 用于设置域名自动续费。
12
12
  */
13
13
  SetDomainAutoRenew(req: SetDomainAutoRenewRequest, cb?: (error: string, rep: SetDomainAutoRenewResponse) => void): Promise<SetDomainAutoRenewResponse>;
14
+ /**
15
+ * 修改自定义DNS Host
16
+ */
17
+ ModifyCustomDnsHost(req: ModifyCustomDnsHostRequest, cb?: (error: string, rep: ModifyCustomDnsHostResponse) => void): Promise<ModifyCustomDnsHostResponse>;
14
18
  /**
15
19
  * 本接口 ( CheckBatchStatus ) 用于查询批量操作日志状态 。
16
20
  */
@@ -27,11 +31,19 @@ export declare class Client extends AbstractClient {
27
31
  * 此接口用于发送手机邮箱验证码。
28
32
  */
29
33
  SendPhoneEmailCode(req: SendPhoneEmailCodeRequest, cb?: (error: string, rep: SendPhoneEmailCodeResponse) => void): Promise<SendPhoneEmailCodeResponse>;
34
+ /**
35
+ * 查询自定义DNS Host
36
+ */
37
+ DescribeCustomDnsHostSet(req: DescribeCustomDnsHostSetRequest, cb?: (error: string, rep: DescribeCustomDnsHostSetResponse) => void): Promise<DescribeCustomDnsHostSetResponse>;
30
38
  /**
31
39
  * 本接口 ( DescribeDomainNameList ) 我的域名列表。
32
40
 
33
41
  */
34
42
  DescribeDomainNameList(req: DescribeDomainNameListRequest, cb?: (error: string, rep: DescribeDomainNameListResponse) => void): Promise<DescribeDomainNameListResponse>;
43
+ /**
44
+ * 国际站-修改DNS Host
45
+ */
46
+ ModifyIntlCustomDnsHost(req: ModifyIntlCustomDnsHostRequest, cb?: (error: string, rep: ModifyIntlCustomDnsHostResponse) => void): Promise<ModifyIntlCustomDnsHostResponse>;
35
47
  /**
36
48
  * 本接口 ( CreateDomainBatch ) 用于批量域名注册 。
37
49
  */
@@ -54,10 +66,13 @@ export declare class Client extends AbstractClient {
54
66
  */
55
67
  CheckDomain(req: CheckDomainRequest, cb?: (error: string, rep: CheckDomainResponse) => void): Promise<CheckDomainResponse>;
56
68
  /**
57
- * 本接口 ( RenewDomainBatch ) 用于批量续费域名 。
58
-
69
+ * 同步自定义DNS Host
59
70
  */
60
- RenewDomainBatch(req: RenewDomainBatchRequest, cb?: (error: string, rep: RenewDomainBatchResponse) => void): Promise<RenewDomainBatchResponse>;
71
+ SyncCustomDnsHost(req: SyncCustomDnsHostRequest, cb?: (error: string, rep: SyncCustomDnsHostResponse) => void): Promise<SyncCustomDnsHostResponse>;
72
+ /**
73
+ * 本接口 ( ModifyDomainDNSBatch) 用于批量域名 DNS 修改 。
74
+ */
75
+ ModifyDomainDNSBatch(req: ModifyDomainDNSBatchRequest, cb?: (error: string, rep: ModifyDomainDNSBatchResponse) => void): Promise<ModifyDomainDNSBatchResponse>;
61
76
  /**
62
77
  * 创建自定义DNS Host
63
78
  */
@@ -102,14 +117,19 @@ export declare class Client extends AbstractClient {
102
117
  * 本接口 ( ModifyDomainOwnerBatch) 用于域名批量账号间转移 。
103
118
  */
104
119
  ModifyDomainOwnerBatch(req: ModifyDomainOwnerBatchRequest, cb?: (error: string, rep: ModifyDomainOwnerBatchResponse) => void): Promise<ModifyDomainOwnerBatchResponse>;
120
+ /**
121
+ * 删除自定义DNS Host
122
+ */
123
+ DeleteCustomDnsHost(req: DeleteCustomDnsHostRequest, cb?: (error: string, rep: DeleteCustomDnsHostResponse) => void): Promise<DeleteCustomDnsHostResponse>;
105
124
  /**
106
125
  * 本接口用于获取已验证的手机邮箱列表
107
126
  */
108
127
  DescribePhoneEmailList(req: DescribePhoneEmailListRequest, cb?: (error: string, rep: DescribePhoneEmailListResponse) => void): Promise<DescribePhoneEmailListResponse>;
109
128
  /**
110
- * 本接口 ( ModifyDomainDNSBatch) 用于批量域名 DNS 修改
129
+ * 本接口 ( RenewDomainBatch ) 用于批量续费域名
130
+
111
131
  */
112
- ModifyDomainDNSBatch(req: ModifyDomainDNSBatchRequest, cb?: (error: string, rep: ModifyDomainDNSBatchResponse) => void): Promise<ModifyDomainDNSBatchResponse>;
132
+ RenewDomainBatch(req: RenewDomainBatchRequest, cb?: (error: string, rep: RenewDomainBatchResponse) => void): Promise<RenewDomainBatchResponse>;
113
133
  /**
114
134
  * 获取域名实名信息详情
115
135
  */
@@ -33,6 +33,12 @@ class Client extends abstract_client_1.AbstractClient {
33
33
  async SetDomainAutoRenew(req, cb) {
34
34
  return this.request("SetDomainAutoRenew", req, cb);
35
35
  }
36
+ /**
37
+ * 修改自定义DNS Host
38
+ */
39
+ async ModifyCustomDnsHost(req, cb) {
40
+ return this.request("ModifyCustomDnsHost", req, cb);
41
+ }
36
42
  /**
37
43
  * 本接口 ( CheckBatchStatus ) 用于查询批量操作日志状态 。
38
44
  */
@@ -57,6 +63,12 @@ class Client extends abstract_client_1.AbstractClient {
57
63
  async SendPhoneEmailCode(req, cb) {
58
64
  return this.request("SendPhoneEmailCode", req, cb);
59
65
  }
66
+ /**
67
+ * 查询自定义DNS Host
68
+ */
69
+ async DescribeCustomDnsHostSet(req, cb) {
70
+ return this.request("DescribeCustomDnsHostSet", req, cb);
71
+ }
60
72
  /**
61
73
  * 本接口 ( DescribeDomainNameList ) 我的域名列表。
62
74
 
@@ -64,6 +76,12 @@ class Client extends abstract_client_1.AbstractClient {
64
76
  async DescribeDomainNameList(req, cb) {
65
77
  return this.request("DescribeDomainNameList", req, cb);
66
78
  }
79
+ /**
80
+ * 国际站-修改DNS Host
81
+ */
82
+ async ModifyIntlCustomDnsHost(req, cb) {
83
+ return this.request("ModifyIntlCustomDnsHost", req, cb);
84
+ }
67
85
  /**
68
86
  * 本接口 ( CreateDomainBatch ) 用于批量域名注册 。
69
87
  */
@@ -96,11 +114,16 @@ class Client extends abstract_client_1.AbstractClient {
96
114
  return this.request("CheckDomain", req, cb);
97
115
  }
98
116
  /**
99
- * 本接口 ( RenewDomainBatch ) 用于批量续费域名 。
100
-
117
+ * 同步自定义DNS Host
101
118
  */
102
- async RenewDomainBatch(req, cb) {
103
- return this.request("RenewDomainBatch", req, cb);
119
+ async SyncCustomDnsHost(req, cb) {
120
+ return this.request("SyncCustomDnsHost", req, cb);
121
+ }
122
+ /**
123
+ * 本接口 ( ModifyDomainDNSBatch) 用于批量域名 DNS 修改 。
124
+ */
125
+ async ModifyDomainDNSBatch(req, cb) {
126
+ return this.request("ModifyDomainDNSBatch", req, cb);
104
127
  }
105
128
  /**
106
129
  * 创建自定义DNS Host
@@ -168,6 +191,12 @@ class Client extends abstract_client_1.AbstractClient {
168
191
  async ModifyDomainOwnerBatch(req, cb) {
169
192
  return this.request("ModifyDomainOwnerBatch", req, cb);
170
193
  }
194
+ /**
195
+ * 删除自定义DNS Host
196
+ */
197
+ async DeleteCustomDnsHost(req, cb) {
198
+ return this.request("DeleteCustomDnsHost", req, cb);
199
+ }
171
200
  /**
172
201
  * 本接口用于获取已验证的手机邮箱列表
173
202
  */
@@ -175,10 +204,11 @@ class Client extends abstract_client_1.AbstractClient {
175
204
  return this.request("DescribePhoneEmailList", req, cb);
176
205
  }
177
206
  /**
178
- * 本接口 ( ModifyDomainDNSBatch) 用于批量域名 DNS 修改
207
+ * 本接口 ( RenewDomainBatch ) 用于批量续费域名
208
+
179
209
  */
180
- async ModifyDomainDNSBatch(req, cb) {
181
- return this.request("ModifyDomainDNSBatch", req, cb);
210
+ async RenewDomainBatch(req, cb) {
211
+ return this.request("RenewDomainBatch", req, cb);
182
212
  }
183
213
  /**
184
214
  * 获取域名实名信息详情