tencentcloud-sdk-nodejs 4.0.388 → 4.0.389
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 +233 -0
- package/SERVICE_CHANGELOG.md +385 -112
- package/package.json +1 -1
- package/products.md +14 -12
- package/src/common/sdk_version.ts +1 -1
- package/src/services/antiddos/v20200309/antiddos_models.ts +42 -0
- package/src/services/bma/index.ts +5 -0
- package/src/services/bma/v20210624/bma_client.ts +79 -0
- package/src/services/bma/v20210624/bma_models.ts +316 -0
- package/src/services/bma/v20210624/index.ts +6 -0
- package/src/services/cfw/v20190904/cfw_client.ts +1 -1
- package/src/services/clb/v20180317/clb_models.ts +1 -1
- package/src/services/cpdp/v20190820/cpdp_models.ts +6 -0
- package/src/services/dataintegration/index.ts +5 -0
- package/src/services/dataintegration/v20220613/dataintegration_client.ts +40 -0
- package/src/services/dataintegration/v20220613/dataintegration_models.ts +61 -0
- package/src/services/dataintegration/v20220613/index.ts +6 -0
- package/src/services/dbdc/v20201029/dbdc_models.ts +31 -4
- package/src/services/ess/v20201111/ess_models.ts +93 -93
- package/src/services/gaap/v20180529/gaap_models.ts +195 -20
- package/src/services/index.ts +2 -0
- package/src/services/mariadb/v20170312/mariadb_models.ts +10 -0
- package/src/services/redis/v20180412/redis_client.ts +85 -61
- package/src/services/redis/v20180412/redis_models.ts +71 -6
- package/src/services/tdmq/v20200217/tdmq_client.ts +1 -1
- package/src/services/tdmq/v20200217/tdmq_models.ts +1 -1
- package/src/services/trp/v20210515/trp_models.ts +21 -1
- package/src/services/tsf/v20180326/tsf_models.ts +6 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +34 -0
- package/tencentcloud/services/bma/index.d.ts +6 -0
- package/tencentcloud/services/bma/index.js +7 -0
- package/tencentcloud/services/bma/v20210624/bma_client.d.ts +26 -0
- package/tencentcloud/services/bma/v20210624/bma_client.js +55 -0
- package/tencentcloud/services/bma/v20210624/bma_models.d.ts +248 -0
- package/tencentcloud/services/bma/v20210624/bma_models.js +18 -0
- package/tencentcloud/services/bma/v20210624/index.d.ts +6 -0
- package/tencentcloud/services/bma/v20210624/index.js +9 -0
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +1 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +5 -0
- package/tencentcloud/services/dataintegration/index.d.ts +6 -0
- package/tencentcloud/services/dataintegration/index.js +7 -0
- package/tencentcloud/services/dataintegration/v20220613/dataintegration_client.d.ts +14 -0
- package/tencentcloud/services/dataintegration/v20220613/dataintegration_client.js +37 -0
- package/tencentcloud/services/dataintegration/v20220613/dataintegration_models.d.ts +39 -0
- package/tencentcloud/services/dataintegration/v20220613/dataintegration_models.js +18 -0
- package/tencentcloud/services/dataintegration/v20220613/index.d.ts +6 -0
- package/tencentcloud/services/dataintegration/v20220613/index.js +9 -0
- package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +26 -4
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +81 -81
- package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +159 -18
- package/tencentcloud/services/index.d.ts +2 -0
- package/tencentcloud/services/index.js +4 -0
- package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +8 -0
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +29 -21
- package/tencentcloud/services/redis/v20180412/redis_client.js +42 -30
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +62 -6
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +1 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +1 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +1 -1
- package/tencentcloud/services/trp/v20210515/trp_models.d.ts +17 -1
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +5 -1
- package/test/bma.v20210624.test.js +61 -0
- package/test/dataintegration.v20220613.test.js +31 -0
- package/test/redis.v20180412.test.js +40 -20
|
@@ -1513,6 +1513,21 @@ export interface DescribeInstanceDTSInfoResponse {
|
|
|
1513
1513
|
RequestId?: string
|
|
1514
1514
|
}
|
|
1515
1515
|
|
|
1516
|
+
/**
|
|
1517
|
+
* ChangeMasterInstance返回参数结构体
|
|
1518
|
+
*/
|
|
1519
|
+
export interface ChangeMasterInstanceResponse {
|
|
1520
|
+
/**
|
|
1521
|
+
* 异步流程ID
|
|
1522
|
+
*/
|
|
1523
|
+
TaskId: number
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1527
|
+
*/
|
|
1528
|
+
RequestId?: string
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1516
1531
|
/**
|
|
1517
1532
|
* AddReplicationInstance返回参数结构体
|
|
1518
1533
|
*/
|
|
@@ -1715,18 +1730,18 @@ export interface ModifyDBInstanceSecurityGroupsResponse {
|
|
|
1715
1730
|
}
|
|
1716
1731
|
|
|
1717
1732
|
/**
|
|
1718
|
-
*
|
|
1733
|
+
* ChangeMasterInstance请求参数结构体
|
|
1719
1734
|
*/
|
|
1720
|
-
export interface
|
|
1735
|
+
export interface ChangeMasterInstanceRequest {
|
|
1721
1736
|
/**
|
|
1722
|
-
*
|
|
1737
|
+
* 复制组ID
|
|
1723
1738
|
*/
|
|
1724
|
-
|
|
1739
|
+
GroupId: string
|
|
1725
1740
|
|
|
1726
1741
|
/**
|
|
1727
|
-
*
|
|
1742
|
+
* 实例ID
|
|
1728
1743
|
*/
|
|
1729
|
-
|
|
1744
|
+
InstanceId: string
|
|
1730
1745
|
}
|
|
1731
1746
|
|
|
1732
1747
|
/**
|
|
@@ -3757,6 +3772,26 @@ export interface DestroyPostpaidInstanceRequest {
|
|
|
3757
3772
|
InstanceId: string
|
|
3758
3773
|
}
|
|
3759
3774
|
|
|
3775
|
+
/**
|
|
3776
|
+
* ChangeInstanceRole请求参数结构体
|
|
3777
|
+
*/
|
|
3778
|
+
export interface ChangeInstanceRoleRequest {
|
|
3779
|
+
/**
|
|
3780
|
+
* 复制组ID
|
|
3781
|
+
*/
|
|
3782
|
+
GroupId: string
|
|
3783
|
+
|
|
3784
|
+
/**
|
|
3785
|
+
* 实例ID
|
|
3786
|
+
*/
|
|
3787
|
+
InstanceId: string
|
|
3788
|
+
|
|
3789
|
+
/**
|
|
3790
|
+
* 实例角色,rw可读写,r只读
|
|
3791
|
+
*/
|
|
3792
|
+
InstanceRole: string
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3760
3795
|
/**
|
|
3761
3796
|
* DeleteInstanceAccount请求参数结构体
|
|
3762
3797
|
*/
|
|
@@ -3772,6 +3807,21 @@ export interface DeleteInstanceAccountRequest {
|
|
|
3772
3807
|
AccountName: string
|
|
3773
3808
|
}
|
|
3774
3809
|
|
|
3810
|
+
/**
|
|
3811
|
+
* DescribeInstanceMonitorHotKey请求参数结构体
|
|
3812
|
+
*/
|
|
3813
|
+
export interface DescribeInstanceMonitorHotKeyRequest {
|
|
3814
|
+
/**
|
|
3815
|
+
* 实例Id
|
|
3816
|
+
*/
|
|
3817
|
+
InstanceId: string
|
|
3818
|
+
|
|
3819
|
+
/**
|
|
3820
|
+
* 时间范围:1——实时,2——近30分钟,3——近6小时,4——近24小时
|
|
3821
|
+
*/
|
|
3822
|
+
SpanType: number
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3775
3825
|
/**
|
|
3776
3826
|
* UpgradeInstance返回参数结构体
|
|
3777
3827
|
*/
|
|
@@ -5087,6 +5137,21 @@ export interface TendisSlowLogDetail {
|
|
|
5087
5137
|
Node: string
|
|
5088
5138
|
}
|
|
5089
5139
|
|
|
5140
|
+
/**
|
|
5141
|
+
* ChangeInstanceRole返回参数结构体
|
|
5142
|
+
*/
|
|
5143
|
+
export interface ChangeInstanceRoleResponse {
|
|
5144
|
+
/**
|
|
5145
|
+
* 异步流程ID
|
|
5146
|
+
*/
|
|
5147
|
+
TaskId: number
|
|
5148
|
+
|
|
5149
|
+
/**
|
|
5150
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5151
|
+
*/
|
|
5152
|
+
RequestId?: string
|
|
5153
|
+
}
|
|
5154
|
+
|
|
5090
5155
|
/**
|
|
5091
5156
|
* UpgradeProxyVersion请求参数结构体
|
|
5092
5157
|
*/
|
|
@@ -938,7 +938,7 @@ export class Client extends AbstractClient {
|
|
|
938
938
|
}
|
|
939
939
|
|
|
940
940
|
/**
|
|
941
|
-
*
|
|
941
|
+
* 当前 ReceiveMessage 接口只支持 Partitioned 类型的 Topic。该接口用于接收发送到指定 Partitioned Topic 中的消息,当 Partitioned Topic 中没有消息但还去尝试调用该接口时,会抛出 ReceiveTimeout 的异常。
|
|
942
942
|
|
|
943
943
|
如何使用 BatchReceivePolicy:
|
|
944
944
|
|
|
@@ -2740,7 +2740,7 @@ export interface ReceiveMessageRequest {
|
|
|
2740
2740
|
ReceiverQueueSize?: number
|
|
2741
2741
|
|
|
2742
2742
|
/**
|
|
2743
|
-
* 默认值为:
|
|
2743
|
+
* 默认值为:Earliest。用作判定consumer初始接收消息的位置,可选参数为:Earliest, Latest
|
|
2744
2744
|
*/
|
|
2745
2745
|
SubInitialPosition?: string
|
|
2746
2746
|
|
|
@@ -104,7 +104,7 @@ export interface CodeBatch {
|
|
|
104
104
|
ProductName: string
|
|
105
105
|
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
107
|
+
* 未使用
|
|
108
108
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
109
109
|
*/
|
|
110
110
|
Ext: Ext
|
|
@@ -154,6 +154,21 @@ export interface ModifyCodeBatchRequest {
|
|
|
154
154
|
* 模板ID
|
|
155
155
|
*/
|
|
156
156
|
MpTpl?: string
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* 商户ID
|
|
160
|
+
*/
|
|
161
|
+
MerchantId?: string
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* 商品ID
|
|
165
|
+
*/
|
|
166
|
+
ProductId?: string
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* 备注
|
|
170
|
+
*/
|
|
171
|
+
Remark?: string
|
|
157
172
|
}
|
|
158
173
|
|
|
159
174
|
/**
|
|
@@ -1528,6 +1543,11 @@ export interface CreateCodeBatchRequest {
|
|
|
1528
1543
|
* 备注
|
|
1529
1544
|
*/
|
|
1530
1545
|
Remark?: string
|
|
1546
|
+
|
|
1547
|
+
/**
|
|
1548
|
+
* 活动ID
|
|
1549
|
+
*/
|
|
1550
|
+
MpTpl?: string
|
|
1531
1551
|
}
|
|
1532
1552
|
|
|
1533
1553
|
/**
|
|
@@ -4037,6 +4037,11 @@ export interface DescribeMicroserviceRequest {
|
|
|
4037
4037
|
* 可选,根据部署组ID进行过滤
|
|
4038
4038
|
*/
|
|
4039
4039
|
GroupIds?: Array<string>
|
|
4040
|
+
|
|
4041
|
+
/**
|
|
4042
|
+
* 过滤条件。多个 filter 之间是与关系,单个 filter 多个 value 之间是或关系。filter name 取值有:id(实例id)、name(实例名)、lan-ip(内网ip)、node-ip(所在节点ip)
|
|
4043
|
+
*/
|
|
4044
|
+
Filters?: Array<Filter>
|
|
4040
4045
|
}
|
|
4041
4046
|
|
|
4042
4047
|
/**
|
|
@@ -11466,7 +11471,7 @@ export interface DescribeClusterInstancesResponse {
|
|
|
11466
11471
|
* 集群机器实例分页信息
|
|
11467
11472
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11468
11473
|
*/
|
|
11469
|
-
Result
|
|
11474
|
+
Result: TsfPageInstance
|
|
11470
11475
|
|
|
11471
11476
|
/**
|
|
11472
11477
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.389";
|
|
@@ -938,6 +938,30 @@ export interface L7RuleHealth {
|
|
|
938
938
|
* 健康检查判定正常状态码,1xx =1, 2xx=2, 3xx=4, 4xx=8,5xx=16,多个状态码值加和
|
|
939
939
|
*/
|
|
940
940
|
StatusCode: number;
|
|
941
|
+
/**
|
|
942
|
+
* 是否同时下发http和https规则健康检查配置
|
|
943
|
+
*/
|
|
944
|
+
ProtocolFlag?: number;
|
|
945
|
+
/**
|
|
946
|
+
* 被动探测开关,=1表示开启;=0表示关闭
|
|
947
|
+
*/
|
|
948
|
+
PassiveEnable?: number;
|
|
949
|
+
/**
|
|
950
|
+
* 被动探测不健康屏蔽时间
|
|
951
|
+
*/
|
|
952
|
+
BlockInter?: number;
|
|
953
|
+
/**
|
|
954
|
+
* 被动探测不健康统计间隔
|
|
955
|
+
*/
|
|
956
|
+
FailedCountInter?: number;
|
|
957
|
+
/**
|
|
958
|
+
* 被动探测不健康阈值
|
|
959
|
+
*/
|
|
960
|
+
FailedThreshold?: number;
|
|
961
|
+
/**
|
|
962
|
+
* 被动探测判定正常状态码,1xx =1, 2xx=2, 3xx=4, 4xx=8,5xx=16,多个状态码值加和
|
|
963
|
+
*/
|
|
964
|
+
PassiveStatusCode?: number;
|
|
941
965
|
}
|
|
942
966
|
/**
|
|
943
967
|
* ModifyPacketFilterConfig返回参数结构体
|
|
@@ -2153,6 +2177,11 @@ export interface L4RuleSource {
|
|
|
2153
2177
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2154
2178
|
*/
|
|
2155
2179
|
Port?: number;
|
|
2180
|
+
/**
|
|
2181
|
+
* 备份源站,1: 备份源站,0: 普通源站
|
|
2182
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2183
|
+
*/
|
|
2184
|
+
Backup?: number;
|
|
2156
2185
|
}
|
|
2157
2186
|
/**
|
|
2158
2187
|
* 协议封禁配置
|
|
@@ -2308,6 +2337,11 @@ export interface BGPIPInstance {
|
|
|
2308
2337
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2309
2338
|
*/
|
|
2310
2339
|
AnycastOutPackRelation: AnycastOutPackRelation;
|
|
2340
|
+
/**
|
|
2341
|
+
* 资源实例版本
|
|
2342
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2343
|
+
*/
|
|
2344
|
+
InstanceVersion: number;
|
|
2311
2345
|
}
|
|
2312
2346
|
/**
|
|
2313
2347
|
* DeleteWaterPrintConfig返回参数结构体
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
|
+
import { ClientConfig } from "../../../common/interface";
|
|
3
|
+
import { DescribeCRWorkInfoRequest, DescribeCRWorkInfoResponse, CreateCRRightRequest, CreateCRRightResponse, CreateCRBlockRequest, CreateCRBlockResponse, CreateCRCompanyVerifyResponse, CreateCRCompanyVerifyRequest } from "./bma_models";
|
|
4
|
+
/**
|
|
5
|
+
* bma client
|
|
6
|
+
* @class
|
|
7
|
+
*/
|
|
8
|
+
export declare class Client extends AbstractClient {
|
|
9
|
+
constructor(clientConfig: ClientConfig);
|
|
10
|
+
/**
|
|
11
|
+
* 查询作品基本信息
|
|
12
|
+
*/
|
|
13
|
+
DescribeCRWorkInfo(req: DescribeCRWorkInfoRequest, cb?: (error: string, rep: DescribeCRWorkInfoResponse) => void): Promise<DescribeCRWorkInfoResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* 版权保护-新建发函接口
|
|
16
|
+
*/
|
|
17
|
+
CreateCRRight(req: CreateCRRightRequest, cb?: (error: string, rep: CreateCRRightResponse) => void): Promise<CreateCRRightResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* 版权保护-新建拦截接口
|
|
20
|
+
*/
|
|
21
|
+
CreateCRBlock(req: CreateCRBlockRequest, cb?: (error: string, rep: CreateCRBlockResponse) => void): Promise<CreateCRBlockResponse>;
|
|
22
|
+
/**
|
|
23
|
+
* 品牌经营管家-版权保护模块企业认证接口
|
|
24
|
+
*/
|
|
25
|
+
CreateCRCompanyVerify(req: CreateCRCompanyVerifyRequest, cb?: (error: string, rep: CreateCRCompanyVerifyResponse) => void): Promise<CreateCRCompanyVerifyResponse>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Client = void 0;
|
|
4
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
|
+
/*
|
|
6
|
+
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
7
|
+
*
|
|
8
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
+
* you may not use this file except in compliance with the License.
|
|
10
|
+
* You may obtain a copy of the License at
|
|
11
|
+
*
|
|
12
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
+
*
|
|
14
|
+
* Unless required by applicable law or agreed to in writing,
|
|
15
|
+
* software distributed under the License is distributed on an
|
|
16
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
17
|
+
* KIND, either express or implied. See the License for the
|
|
18
|
+
* specific language governing permissions and limitations
|
|
19
|
+
* under the License.
|
|
20
|
+
*/
|
|
21
|
+
const abstract_client_1 = require("../../../common/abstract_client");
|
|
22
|
+
/**
|
|
23
|
+
* bma client
|
|
24
|
+
* @class
|
|
25
|
+
*/
|
|
26
|
+
class Client extends abstract_client_1.AbstractClient {
|
|
27
|
+
constructor(clientConfig) {
|
|
28
|
+
super("bma.tencentcloudapi.com", "2021-06-24", clientConfig);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* 查询作品基本信息
|
|
32
|
+
*/
|
|
33
|
+
async DescribeCRWorkInfo(req, cb) {
|
|
34
|
+
return this.request("DescribeCRWorkInfo", req, cb);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* 版权保护-新建发函接口
|
|
38
|
+
*/
|
|
39
|
+
async CreateCRRight(req, cb) {
|
|
40
|
+
return this.request("CreateCRRight", req, cb);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* 版权保护-新建拦截接口
|
|
44
|
+
*/
|
|
45
|
+
async CreateCRBlock(req, cb) {
|
|
46
|
+
return this.request("CreateCRBlock", req, cb);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* 品牌经营管家-版权保护模块企业认证接口
|
|
50
|
+
*/
|
|
51
|
+
async CreateCRCompanyVerify(req, cb) {
|
|
52
|
+
return this.request("CreateCRCompanyVerify", req, cb);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.Client = Client;
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DescribeCRWorkInfo请求参数结构体
|
|
3
|
+
*/
|
|
4
|
+
export interface DescribeCRWorkInfoRequest {
|
|
5
|
+
/**
|
|
6
|
+
* xxx
|
|
7
|
+
*/
|
|
8
|
+
WorkId: number;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* DescribeCRWorkInfo返回参数结构体
|
|
12
|
+
*/
|
|
13
|
+
export interface DescribeCRWorkInfoResponse {
|
|
14
|
+
/**
|
|
15
|
+
* x
|
|
16
|
+
*/
|
|
17
|
+
WorkName: string;
|
|
18
|
+
/**
|
|
19
|
+
* x
|
|
20
|
+
*/
|
|
21
|
+
MonitorStatus: number;
|
|
22
|
+
/**
|
|
23
|
+
* x
|
|
24
|
+
*/
|
|
25
|
+
AuthStatus: number;
|
|
26
|
+
/**
|
|
27
|
+
* x
|
|
28
|
+
*/
|
|
29
|
+
CommStatus: number;
|
|
30
|
+
/**
|
|
31
|
+
* x
|
|
32
|
+
*/
|
|
33
|
+
IsProducer: number;
|
|
34
|
+
/**
|
|
35
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
36
|
+
*/
|
|
37
|
+
RequestId?: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* CreateCRRight请求参数结构体
|
|
41
|
+
*/
|
|
42
|
+
export interface CreateCRRightRequest {
|
|
43
|
+
/**
|
|
44
|
+
* 已存证的作品ID
|
|
45
|
+
*/
|
|
46
|
+
WorkId: number;
|
|
47
|
+
/**
|
|
48
|
+
* 侵权链接
|
|
49
|
+
*/
|
|
50
|
+
TortUrl: string;
|
|
51
|
+
/**
|
|
52
|
+
* 侵权标题
|
|
53
|
+
*/
|
|
54
|
+
TortTitle?: string;
|
|
55
|
+
/**
|
|
56
|
+
* 侵权平台
|
|
57
|
+
*/
|
|
58
|
+
TortPlat?: string;
|
|
59
|
+
/**
|
|
60
|
+
* 发函结果回调地址
|
|
61
|
+
*/
|
|
62
|
+
RightUrl?: string;
|
|
63
|
+
/**
|
|
64
|
+
* x
|
|
65
|
+
*/
|
|
66
|
+
FileUrl?: string;
|
|
67
|
+
/**
|
|
68
|
+
* x
|
|
69
|
+
*/
|
|
70
|
+
ValidStartDate?: string;
|
|
71
|
+
/**
|
|
72
|
+
* x
|
|
73
|
+
*/
|
|
74
|
+
ValidEndDate?: string;
|
|
75
|
+
/**
|
|
76
|
+
* x
|
|
77
|
+
*/
|
|
78
|
+
CommFileUrl?: string;
|
|
79
|
+
/**
|
|
80
|
+
* x
|
|
81
|
+
*/
|
|
82
|
+
CommValidStartDate?: string;
|
|
83
|
+
/**
|
|
84
|
+
* x
|
|
85
|
+
*/
|
|
86
|
+
CommValidEndDate?: string;
|
|
87
|
+
/**
|
|
88
|
+
* x
|
|
89
|
+
*/
|
|
90
|
+
HomeFileUrl?: string;
|
|
91
|
+
/**
|
|
92
|
+
* x
|
|
93
|
+
*/
|
|
94
|
+
HomeValidStartDate?: string;
|
|
95
|
+
/**
|
|
96
|
+
* x
|
|
97
|
+
*/
|
|
98
|
+
HomeValidEndDate?: string;
|
|
99
|
+
/**
|
|
100
|
+
* x
|
|
101
|
+
*/
|
|
102
|
+
IsProducer?: string;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* CreateCRRight返回参数结构体
|
|
106
|
+
*/
|
|
107
|
+
export interface CreateCRRightResponse {
|
|
108
|
+
/**
|
|
109
|
+
* 侵权ID
|
|
110
|
+
*/
|
|
111
|
+
TortId: number;
|
|
112
|
+
/**
|
|
113
|
+
* xxx
|
|
114
|
+
*/
|
|
115
|
+
TortNum: string;
|
|
116
|
+
/**
|
|
117
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
118
|
+
*/
|
|
119
|
+
RequestId?: string;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* CreateCRBlock请求参数结构体
|
|
123
|
+
*/
|
|
124
|
+
export interface CreateCRBlockRequest {
|
|
125
|
+
/**
|
|
126
|
+
* 已存证的作品ID
|
|
127
|
+
*/
|
|
128
|
+
WorkId: number;
|
|
129
|
+
/**
|
|
130
|
+
* 侵权链接
|
|
131
|
+
*/
|
|
132
|
+
TortUrl: string;
|
|
133
|
+
/**
|
|
134
|
+
* 侵权标题
|
|
135
|
+
*/
|
|
136
|
+
TortTitle?: string;
|
|
137
|
+
/**
|
|
138
|
+
* 侵权平台
|
|
139
|
+
*/
|
|
140
|
+
TortPlat?: string;
|
|
141
|
+
/**
|
|
142
|
+
* 拦截结果回调地址
|
|
143
|
+
*/
|
|
144
|
+
BlockUrl?: string;
|
|
145
|
+
/**
|
|
146
|
+
* x
|
|
147
|
+
*/
|
|
148
|
+
FileUrl?: string;
|
|
149
|
+
/**
|
|
150
|
+
* x
|
|
151
|
+
*/
|
|
152
|
+
ValidStartDate?: string;
|
|
153
|
+
/**
|
|
154
|
+
* x
|
|
155
|
+
*/
|
|
156
|
+
ValidEndDate?: string;
|
|
157
|
+
/**
|
|
158
|
+
* xx
|
|
159
|
+
*/
|
|
160
|
+
TortPic?: string;
|
|
161
|
+
/**
|
|
162
|
+
* x
|
|
163
|
+
*/
|
|
164
|
+
CommFileUrl?: string;
|
|
165
|
+
/**
|
|
166
|
+
* x
|
|
167
|
+
*/
|
|
168
|
+
CommValidStartDate?: string;
|
|
169
|
+
/**
|
|
170
|
+
* x
|
|
171
|
+
*/
|
|
172
|
+
CommValidEndDate?: string;
|
|
173
|
+
/**
|
|
174
|
+
* x
|
|
175
|
+
*/
|
|
176
|
+
IsProducer?: string;
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* CreateCRBlock返回参数结构体
|
|
180
|
+
*/
|
|
181
|
+
export interface CreateCRBlockResponse {
|
|
182
|
+
/**
|
|
183
|
+
* 侵权ID
|
|
184
|
+
*/
|
|
185
|
+
TortId: number;
|
|
186
|
+
/**
|
|
187
|
+
* xxx
|
|
188
|
+
*/
|
|
189
|
+
TortNum: string;
|
|
190
|
+
/**
|
|
191
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
192
|
+
*/
|
|
193
|
+
RequestId?: string;
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* CreateCRCompanyVerify返回参数结构体
|
|
197
|
+
*/
|
|
198
|
+
export interface CreateCRCompanyVerifyResponse {
|
|
199
|
+
/**
|
|
200
|
+
* 认证状态 0-认证成功 1-认证失败
|
|
201
|
+
*/
|
|
202
|
+
Status: number;
|
|
203
|
+
/**
|
|
204
|
+
* 认证结果返回
|
|
205
|
+
*/
|
|
206
|
+
Note: string;
|
|
207
|
+
/**
|
|
208
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
209
|
+
*/
|
|
210
|
+
RequestId?: string;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* CreateCRCompanyVerify请求参数结构体
|
|
214
|
+
*/
|
|
215
|
+
export interface CreateCRCompanyVerifyRequest {
|
|
216
|
+
/**
|
|
217
|
+
* 企业名称
|
|
218
|
+
*/
|
|
219
|
+
CompanyName: string;
|
|
220
|
+
/**
|
|
221
|
+
* 企业证件号码
|
|
222
|
+
*/
|
|
223
|
+
CompanyID: string;
|
|
224
|
+
/**
|
|
225
|
+
* 企业法人姓名
|
|
226
|
+
*/
|
|
227
|
+
CompanyLegalName: string;
|
|
228
|
+
/**
|
|
229
|
+
* 管理员名称
|
|
230
|
+
*/
|
|
231
|
+
ManagerName: string;
|
|
232
|
+
/**
|
|
233
|
+
* 管理员手机号
|
|
234
|
+
*/
|
|
235
|
+
ManagerPhone: string;
|
|
236
|
+
/**
|
|
237
|
+
* 手机验证码
|
|
238
|
+
*/
|
|
239
|
+
VerificationCode: string;
|
|
240
|
+
/**
|
|
241
|
+
* 企业认证号码类型 1:社会信用代码 2:组织机构代码 3:企业工商注册码 4:其他 默认为1
|
|
242
|
+
*/
|
|
243
|
+
CompanyIDType?: string;
|
|
244
|
+
/**
|
|
245
|
+
* xxx
|
|
246
|
+
*/
|
|
247
|
+
Type?: string;
|
|
248
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing,
|
|
12
|
+
* software distributed under the License is distributed on an
|
|
13
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
* KIND, either express or implied. See the License for the
|
|
15
|
+
* specific language governing permissions and limitations
|
|
16
|
+
* under the License.
|
|
17
|
+
*/
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.v20210624 = void 0;
|
|
4
|
+
const Models = require("./bma_models");
|
|
5
|
+
const bma_client_1 = require("./bma_client");
|
|
6
|
+
exports.v20210624 = {
|
|
7
|
+
Client: bma_client_1.Client,
|
|
8
|
+
Models: Models
|
|
9
|
+
};
|
|
@@ -196,7 +196,7 @@ export declare class Client extends AbstractClient {
|
|
|
196
196
|
*/
|
|
197
197
|
DeleteResourceGroup(req: DeleteResourceGroupRequest, cb?: (error: string, rep: DeleteResourceGroupResponse) => void): Promise<DeleteResourceGroupResponse>;
|
|
198
198
|
/**
|
|
199
|
-
*
|
|
199
|
+
* 创建NAT防火墙实例(Region参数必填)
|
|
200
200
|
*/
|
|
201
201
|
CreateNatFwInstance(req: CreateNatFwInstanceRequest, cb?: (error: string, rep: CreateNatFwInstanceResponse) => void): Promise<CreateNatFwInstanceResponse>;
|
|
202
202
|
/**
|
|
@@ -306,7 +306,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
306
306
|
return this.request("DeleteResourceGroup", req, cb);
|
|
307
307
|
}
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* 创建NAT防火墙实例(Region参数必填)
|
|
310
310
|
*/
|
|
311
311
|
async CreateNatFwInstance(req, cb) {
|
|
312
312
|
return this.request("CreateNatFwInstance", req, cb);
|
|
@@ -1785,7 +1785,7 @@ export interface HealthCheck {
|
|
|
1785
1785
|
*/
|
|
1786
1786
|
HttpCheckPath?: string;
|
|
1787
1787
|
/**
|
|
1788
|
-
* 健康检查域名(仅适用于HTTP/HTTPS转发规则、TCP监听器的HTTP
|
|
1788
|
+
* 健康检查域名(仅适用于HTTP/HTTPS转发规则、TCP监听器的HTTP健康检查方式,当监听器是TCP类型时,该参数为必填项)。
|
|
1789
1789
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1790
1790
|
*/
|
|
1791
1791
|
HttpCheckDomain?: string;
|
|
@@ -20696,6 +20696,11 @@ export interface AmountBeforeTaxResult {
|
|
|
20696
20696
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
20697
20697
|
*/
|
|
20698
20698
|
AmountBeforeTax: string;
|
|
20699
|
+
/**
|
|
20700
|
+
* 两位精度税前金额
|
|
20701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
20702
|
+
*/
|
|
20703
|
+
AmountBeforeTaxWithTwoDigitPrecision: string;
|
|
20699
20704
|
}
|
|
20700
20705
|
/**
|
|
20701
20706
|
* 银企直连-查询单笔支付状态结果
|