tencentcloud-sdk-nodejs 4.1.80 → 4.1.81
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/es/common/sdk_version.js +1 -1
- package/es/services/ctsdb/index.js +4 -0
- package/es/services/ctsdb/v20230202/ctsdb_client.js +12 -0
- package/es/services/ctsdb/v20230202/ctsdb_models.js +0 -0
- package/es/services/ctsdb/v20230202/index.js +6 -0
- package/es/services/index.js +1 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +16 -0
- package/tencentcloud/services/as/v20180419/as_models.d.ts +40 -0
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +42 -0
- package/tencentcloud/services/cdwch/v20200915/cdwch_models.d.ts +40 -51
- package/tencentcloud/services/ctsdb/index.d.ts +6 -0
- package/tencentcloud/services/ctsdb/index.js +7 -0
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_client.d.ts +25 -0
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_client.js +50 -0
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_models.d.ts +335 -0
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_models.js +18 -0
- package/tencentcloud/services/ctsdb/v20230202/index.d.ts +6 -0
- package/tencentcloud/services/ctsdb/v20230202/index.js +10 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +36 -2
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +32 -0
- package/tencentcloud/services/igtm/v20231024/igtm_models.d.ts +1 -20
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +2 -0
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +4 -1
- package/tencentcloud/services/securitylake/v20240117/securitylake_models.d.ts +0 -1
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +20 -0
- package/tencentcloud/services/tcaplusdb/v20190823/tcaplusdb_client.d.ts +3 -1
- package/tencentcloud/services/tcaplusdb/v20190823/tcaplusdb_client.js +3 -1
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +28 -28
- package/tencentcloud/services/tts/v20190823/tts_client.d.ts +1 -0
- package/tencentcloud/services/tts/v20190823/tts_client.js +1 -0
- package/tencentcloud/services/tts/v20190823/tts_models.d.ts +2 -3
@@ -0,0 +1,335 @@
|
|
1
|
+
/**
|
2
|
+
* 标签
|
3
|
+
*/
|
4
|
+
export interface Tag {
|
5
|
+
/**
|
6
|
+
* 键
|
7
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8
|
+
*/
|
9
|
+
Key?: string;
|
10
|
+
/**
|
11
|
+
* 值
|
12
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13
|
+
*/
|
14
|
+
Value?: string;
|
15
|
+
}
|
16
|
+
/**
|
17
|
+
* 实例网络信息(influxdb)
|
18
|
+
*/
|
19
|
+
export interface Network {
|
20
|
+
/**
|
21
|
+
* vpc id
|
22
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23
|
+
*/
|
24
|
+
VpcId: string;
|
25
|
+
/**
|
26
|
+
* vpc subnet id
|
27
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
28
|
+
*/
|
29
|
+
SubnetId: string;
|
30
|
+
/**
|
31
|
+
* vpc ip地址
|
32
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33
|
+
*/
|
34
|
+
VIP?: string;
|
35
|
+
/**
|
36
|
+
* vpc port地址
|
37
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38
|
+
*/
|
39
|
+
Port?: number;
|
40
|
+
}
|
41
|
+
/**
|
42
|
+
* DescribeClusters请求参数结构体
|
43
|
+
*/
|
44
|
+
export interface DescribeClustersRequest {
|
45
|
+
/**
|
46
|
+
* 当前页数
|
47
|
+
*/
|
48
|
+
PageNumber: number;
|
49
|
+
/**
|
50
|
+
* 单页大小
|
51
|
+
*/
|
52
|
+
PageSize: number;
|
53
|
+
/**
|
54
|
+
* 查询参数:支持通过实例ID(cluster_id)和实例名称(name)进行过滤查询
|
55
|
+
*/
|
56
|
+
Filters?: Array<Filter>;
|
57
|
+
/**
|
58
|
+
* 排序参数:支持通过创建时间字段(created_at)进行排序,Type可指定为DESC(降序)或ASC(升序)
|
59
|
+
*/
|
60
|
+
Orders?: Array<Order>;
|
61
|
+
}
|
62
|
+
/**
|
63
|
+
* 数据库相关信息
|
64
|
+
*/
|
65
|
+
export interface Database {
|
66
|
+
/**
|
67
|
+
* 实例ID
|
68
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
69
|
+
*/
|
70
|
+
ClusterID?: string;
|
71
|
+
/**
|
72
|
+
* 数据库名
|
73
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
74
|
+
*/
|
75
|
+
Name?: string;
|
76
|
+
/**
|
77
|
+
* 降冷时间(天)
|
78
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
79
|
+
*/
|
80
|
+
CoolDownInDays?: number;
|
81
|
+
/**
|
82
|
+
* 数据保留时间(天)
|
83
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
84
|
+
*/
|
85
|
+
RetentionInDays?: number;
|
86
|
+
/**
|
87
|
+
* 备注
|
88
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
89
|
+
*/
|
90
|
+
Remark?: string;
|
91
|
+
/**
|
92
|
+
* 状态:0: 资源初始化中, 1: 资源创建中, 2: 正常状态, 3: 资源删除中, 4: 资源已删除, 5: 资源禁用中, 6: 资源已禁用, 7: 资源异常,需要人工操作
|
93
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
94
|
+
*/
|
95
|
+
Status?: number;
|
96
|
+
/**
|
97
|
+
* 创建时间
|
98
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
99
|
+
*/
|
100
|
+
CreatedAt?: string;
|
101
|
+
/**
|
102
|
+
* 最后修改时间
|
103
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
104
|
+
*/
|
105
|
+
UpdatedAt?: string;
|
106
|
+
}
|
107
|
+
/**
|
108
|
+
* DescribeDatabases返回参数结构体
|
109
|
+
*/
|
110
|
+
export interface DescribeDatabasesResponse {
|
111
|
+
/**
|
112
|
+
* 数据库列表
|
113
|
+
*/
|
114
|
+
Databases?: Array<Database>;
|
115
|
+
/**
|
116
|
+
* 数量
|
117
|
+
*/
|
118
|
+
TotalCount?: number;
|
119
|
+
/**
|
120
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
121
|
+
*/
|
122
|
+
RequestId?: string;
|
123
|
+
}
|
124
|
+
/**
|
125
|
+
* 有效期
|
126
|
+
*/
|
127
|
+
export interface Period {
|
128
|
+
/**
|
129
|
+
* 开始时间
|
130
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
131
|
+
*/
|
132
|
+
StartTime?: string;
|
133
|
+
/**
|
134
|
+
* 结束时间
|
135
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
136
|
+
*/
|
137
|
+
EndTime?: string;
|
138
|
+
}
|
139
|
+
/**
|
140
|
+
* DescribeDatabases请求参数结构体
|
141
|
+
*/
|
142
|
+
export interface DescribeDatabasesRequest {
|
143
|
+
/**
|
144
|
+
* 数据库参数
|
145
|
+
*/
|
146
|
+
Database: Database;
|
147
|
+
/**
|
148
|
+
* 分页大小
|
149
|
+
*/
|
150
|
+
PageSize?: number;
|
151
|
+
/**
|
152
|
+
* 分页页面
|
153
|
+
*/
|
154
|
+
PageNumber?: number;
|
155
|
+
}
|
156
|
+
/**
|
157
|
+
* 实例规格信息(influxdb)
|
158
|
+
*/
|
159
|
+
export interface Spec {
|
160
|
+
/**
|
161
|
+
* 1:包年包月、2:按小时计费
|
162
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
163
|
+
*/
|
164
|
+
PayMode: number;
|
165
|
+
/**
|
166
|
+
* 请求单元,为0则表示走资源配置
|
167
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
168
|
+
*/
|
169
|
+
RequestUnit?: number;
|
170
|
+
/**
|
171
|
+
* CPU 核数最大限制
|
172
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
173
|
+
*/
|
174
|
+
CpuLimit?: number;
|
175
|
+
/**
|
176
|
+
* 内存 最大限制(Gi)
|
177
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
178
|
+
*/
|
179
|
+
MemoryLimit?: number;
|
180
|
+
/**
|
181
|
+
* 磁盘 最大限制(Gi)
|
182
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
183
|
+
*/
|
184
|
+
DiskLimit?: number;
|
185
|
+
/**
|
186
|
+
* 业务分片数
|
187
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
188
|
+
*/
|
189
|
+
Shards?: number;
|
190
|
+
/**
|
191
|
+
* 业务节点数
|
192
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
193
|
+
*/
|
194
|
+
Replicas?: number;
|
195
|
+
}
|
196
|
+
/**
|
197
|
+
* 查询过滤器
|
198
|
+
*/
|
199
|
+
export interface Filter {
|
200
|
+
/**
|
201
|
+
* 过滤参数
|
202
|
+
*/
|
203
|
+
Name?: string;
|
204
|
+
/**
|
205
|
+
* 过滤表达式
|
206
|
+
*/
|
207
|
+
Op?: string;
|
208
|
+
/**
|
209
|
+
* 参与过滤的值
|
210
|
+
*/
|
211
|
+
Values?: Array<string>;
|
212
|
+
}
|
213
|
+
/**
|
214
|
+
* 实例相关信息
|
215
|
+
*/
|
216
|
+
export interface Cluster {
|
217
|
+
/**
|
218
|
+
* 用户APPID
|
219
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
220
|
+
*/
|
221
|
+
AppID?: number;
|
222
|
+
/**
|
223
|
+
* 实例id
|
224
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
225
|
+
*/
|
226
|
+
ClusterID?: string;
|
227
|
+
/**
|
228
|
+
* 账号id
|
229
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
230
|
+
*/
|
231
|
+
AccountID?: string;
|
232
|
+
/**
|
233
|
+
* 自定义实例名
|
234
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
235
|
+
*/
|
236
|
+
Name?: string;
|
237
|
+
/**
|
238
|
+
* 地域
|
239
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
240
|
+
*/
|
241
|
+
Region?: string;
|
242
|
+
/**
|
243
|
+
* 可用区
|
244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
245
|
+
*/
|
246
|
+
Zones?: string;
|
247
|
+
/**
|
248
|
+
* 网络信息
|
249
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
250
|
+
* @deprecated
|
251
|
+
*/
|
252
|
+
Networks?: Array<Network>;
|
253
|
+
/**
|
254
|
+
* 实例规格
|
255
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
256
|
+
* @deprecated
|
257
|
+
*/
|
258
|
+
Spec?: Spec;
|
259
|
+
/**
|
260
|
+
* 实例状态:0:运行中,1:创建中 ,16:变配中,17:隔离中,18:待销毁,19:恢复中,20:关机 , 21:销毁中 ,22:已销毁
|
261
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
262
|
+
*/
|
263
|
+
Status?: number;
|
264
|
+
/**
|
265
|
+
* 实例有效期
|
266
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
267
|
+
*/
|
268
|
+
Period?: Period;
|
269
|
+
/**
|
270
|
+
* 创建时间
|
271
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
272
|
+
*/
|
273
|
+
CreatedAt?: string;
|
274
|
+
/**
|
275
|
+
* 最后修改时间
|
276
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
277
|
+
*/
|
278
|
+
UpdatedAt?: string;
|
279
|
+
/**
|
280
|
+
* 产品内部特性
|
281
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
282
|
+
*/
|
283
|
+
Tenant?: Tenant;
|
284
|
+
/**
|
285
|
+
* 标签
|
286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
287
|
+
*/
|
288
|
+
Tags?: Array<Tag>;
|
289
|
+
/**
|
290
|
+
* 安全组信息
|
291
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
292
|
+
*/
|
293
|
+
Security?: Array<string>;
|
294
|
+
}
|
295
|
+
/**
|
296
|
+
* DescribeClusters返回参数结构体
|
297
|
+
*/
|
298
|
+
export interface DescribeClustersResponse {
|
299
|
+
/**
|
300
|
+
* 当前条件下的总记录数
|
301
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
302
|
+
*/
|
303
|
+
TotalCount?: number;
|
304
|
+
/**
|
305
|
+
* 符合条件的实例列表
|
306
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
307
|
+
*/
|
308
|
+
Clusters?: Array<Cluster>;
|
309
|
+
/**
|
310
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
311
|
+
*/
|
312
|
+
RequestId?: string;
|
313
|
+
}
|
314
|
+
/**
|
315
|
+
* 排序参数,用于排序查询结果
|
316
|
+
*/
|
317
|
+
export interface Order {
|
318
|
+
/**
|
319
|
+
* 排序字段
|
320
|
+
*/
|
321
|
+
Name?: string;
|
322
|
+
/**
|
323
|
+
* 排序方式
|
324
|
+
*/
|
325
|
+
Type?: string;
|
326
|
+
}
|
327
|
+
/**
|
328
|
+
* 产品内部特性
|
329
|
+
*/
|
330
|
+
export interface Tenant {
|
331
|
+
/**
|
332
|
+
* 密码是否已加密
|
333
|
+
*/
|
334
|
+
IsPasswordEncrypted?: boolean;
|
335
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"use strict";
|
2
|
+
/*
|
3
|
+
* Copyright (c) 2018 Tencent. 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,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.v20230202 = void 0;
|
4
|
+
const tslib_1 = require("tslib");
|
5
|
+
const Models = tslib_1.__importStar(require("./ctsdb_models"));
|
6
|
+
const ctsdb_client_1 = require("./ctsdb_client");
|
7
|
+
exports.v20230202 = {
|
8
|
+
Client: ctsdb_client_1.Client,
|
9
|
+
Models: Models
|
10
|
+
};
|
@@ -569,6 +569,41 @@ export interface CommonApproverOption {
|
|
569
569
|
* 是否允许修改签署人信息
|
570
570
|
*/
|
571
571
|
CanEditApprover?: boolean;
|
572
|
+
/**
|
573
|
+
* 是否可以拒签 默认false-可以拒签 true-不可以拒签
|
574
|
+
*/
|
575
|
+
NoRefuse?: boolean;
|
576
|
+
/**
|
577
|
+
* 是否可以转发 默认false-可以转发 true-不可以转发
|
578
|
+
*/
|
579
|
+
NoTransfer?: boolean;
|
580
|
+
/**
|
581
|
+
* 当签署方有多个签署区时候,是否隐藏一键所有的签署区
|
582
|
+
|
583
|
+
false:(默认)不隐藏
|
584
|
+
true:隐藏,每个签署区要单独选择印章或者签名
|
585
|
+
*/
|
586
|
+
HideOneKeySign?: boolean;
|
587
|
+
/**
|
588
|
+
* 签署人阅读合同限制参数
|
589
|
+
<br/>取值:
|
590
|
+
<ul>
|
591
|
+
<li> LimitReadTimeAndBottom,阅读合同必须限制阅读时长并且必须阅读到底</li>
|
592
|
+
<li> LimitReadTime,阅读合同仅限制阅读时长</li>
|
593
|
+
<li> LimitBottom,阅读合同仅限制必须阅读到底</li>
|
594
|
+
<li> NoReadTimeAndBottom,阅读合同不限制阅读时长且不限制阅读到底(白名单功能,请联系客户经理开白使用)</li>
|
595
|
+
</ul>
|
596
|
+
*/
|
597
|
+
FlowReadLimit?: string;
|
598
|
+
/**
|
599
|
+
* 禁止在签署过程中添加签署日期控件
|
600
|
+
<br/>前置条件:文件发起合同时,指定SignBeanTag=1(可以在签署过程中添加签署控件):
|
601
|
+
<ul>
|
602
|
+
<li> 默认值:false,在开启:签署过程中添加签署控件时,添加签署控件会默认自带签署日期控件</li>
|
603
|
+
<li> 可选值:true,在开启:签署过程中添加签署控件时,添加签署控件不会自带签署日期控件</li>
|
604
|
+
</ul>
|
605
|
+
*/
|
606
|
+
ForbidAddSignDate?: boolean;
|
572
607
|
}
|
573
608
|
/**
|
574
609
|
* DescribeCancelFlowsTask返回参数结构体
|
@@ -5066,8 +5101,7 @@ export interface ChannelDescribeEmployeesRequest {
|
|
5066
5101
|
*/
|
5067
5102
|
Filters?: Array<Filter>;
|
5068
5103
|
/**
|
5069
|
-
*
|
5070
|
-
页码从 0 开始,即首页为 0,最大20000。
|
5104
|
+
* 偏移量:从 0 开始,最大20000。
|
5071
5105
|
*/
|
5072
5106
|
Offset?: number;
|
5073
5107
|
/**
|
@@ -1365,6 +1365,14 @@ export interface Multimedia {
|
|
1365
1365
|
1. type 为 image 时,地址为图片的预览地址;其他类型时,地址为封面图地址。
|
1366
1366
|
*/
|
1367
1367
|
Url?: string;
|
1368
|
+
/**
|
1369
|
+
* 如果Url为图片地址,标识图片宽度。
|
1370
|
+
*/
|
1371
|
+
Width?: number;
|
1372
|
+
/**
|
1373
|
+
* 如果Url为图片地址,标识图片高度。
|
1374
|
+
*/
|
1375
|
+
Height?: number;
|
1368
1376
|
/**
|
1369
1377
|
* 多媒体详情地址。
|
1370
1378
|
说明:
|
@@ -1372,6 +1380,18 @@ export interface Multimedia {
|
|
1372
1380
|
注意:此字段可能返回 null,表示取不到有效值。
|
1373
1381
|
*/
|
1374
1382
|
JumpUrl?: string;
|
1383
|
+
/**
|
1384
|
+
* 缩略图地址。
|
1385
|
+
*/
|
1386
|
+
ThumbURL?: string;
|
1387
|
+
/**
|
1388
|
+
* 缩略图宽度
|
1389
|
+
*/
|
1390
|
+
ThumbWidth?: number;
|
1391
|
+
/**
|
1392
|
+
* 缩略图高度
|
1393
|
+
*/
|
1394
|
+
ThumbHeight?: number;
|
1375
1395
|
/**
|
1376
1396
|
* 名称。
|
1377
1397
|
说明:
|
@@ -1398,6 +1418,18 @@ export interface Multimedia {
|
|
1398
1418
|
注意:此字段可能返回 null,表示取不到有效值。
|
1399
1419
|
*/
|
1400
1420
|
Ext?: SongExt;
|
1421
|
+
/**
|
1422
|
+
* 发布时间。
|
1423
|
+
*/
|
1424
|
+
PublishTime?: string;
|
1425
|
+
/**
|
1426
|
+
* 站点名称
|
1427
|
+
*/
|
1428
|
+
SiteName?: string;
|
1429
|
+
/**
|
1430
|
+
* 站点图标
|
1431
|
+
*/
|
1432
|
+
SiteIcon?: string;
|
1401
1433
|
}
|
1402
1434
|
/**
|
1403
1435
|
* GroupChatCompletions返回参数结构体
|
@@ -98,7 +98,6 @@ export interface AddressPoolDetail {
|
|
98
98
|
export interface DescribeMonitorsResponse {
|
99
99
|
/**
|
100
100
|
* 监控器列表
|
101
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
102
101
|
*/
|
103
102
|
MonitorDataSet?: Array<MonitorDetail>;
|
104
103
|
/**
|
@@ -129,7 +128,6 @@ export interface DescribeDetectorsResponse {
|
|
129
128
|
export interface DeleteAddressPoolResponse {
|
130
129
|
/**
|
131
130
|
* 是否成功
|
132
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
133
131
|
*/
|
134
132
|
Msg?: string;
|
135
133
|
/**
|
@@ -211,7 +209,6 @@ export interface Strategy {
|
|
211
209
|
export interface CreateStrategyResponse {
|
212
210
|
/**
|
213
211
|
* 新增策略id
|
214
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
215
212
|
*/
|
216
213
|
StrategyId?: number;
|
217
214
|
/**
|
@@ -286,7 +283,6 @@ export interface DescribeAddressPoolListRequest {
|
|
286
283
|
export interface ModifyStrategyResponse {
|
287
284
|
/**
|
288
285
|
* 是否成功
|
289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
290
286
|
*/
|
291
287
|
Msg?: string;
|
292
288
|
/**
|
@@ -535,12 +531,10 @@ export interface DescribeDetectTaskPackageListResponse {
|
|
535
531
|
export interface DescribeAddressPoolDetailResponse {
|
536
532
|
/**
|
537
533
|
* 资源组详情描述
|
538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
539
534
|
*/
|
540
535
|
AddressPool?: AddressPoolDetail;
|
541
536
|
/**
|
542
537
|
* 资源组中的资源列表
|
543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
544
538
|
*/
|
545
539
|
AddressSet?: Array<Address>;
|
546
540
|
/**
|
@@ -1020,12 +1014,10 @@ export interface DescribeDetectTaskPackageListRequest {
|
|
1020
1014
|
export interface DescribeStrategyListResponse {
|
1021
1015
|
/**
|
1022
1016
|
* 策略列表
|
1023
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1024
1017
|
*/
|
1025
1018
|
StrategySet?: Array<Strategy>;
|
1026
1019
|
/**
|
1027
1020
|
* 总数
|
1028
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1029
1021
|
*/
|
1030
1022
|
TotalCount?: number;
|
1031
1023
|
/**
|
@@ -1249,7 +1241,6 @@ export interface MainPoolWeight {
|
|
1249
1241
|
export interface ModifyAddressPoolResponse {
|
1250
1242
|
/**
|
1251
1243
|
* 是否修改成功
|
1252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1253
1244
|
*/
|
1254
1245
|
Msg?: string;
|
1255
1246
|
/**
|
@@ -1323,7 +1314,6 @@ export interface DescribeMonitorsRequest {
|
|
1323
1314
|
export interface ModifyMonitorResponse {
|
1324
1315
|
/**
|
1325
1316
|
* success 为修改成功
|
1326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1327
1317
|
*/
|
1328
1318
|
Msg?: string;
|
1329
1319
|
/**
|
@@ -1537,12 +1527,10 @@ export interface MonitorDetail {
|
|
1537
1527
|
export interface DescribeAddressPoolListResponse {
|
1538
1528
|
/**
|
1539
1529
|
* 资源组列表
|
1540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1541
1530
|
*/
|
1542
1531
|
AddressPoolSet?: Array<AddressPool>;
|
1543
1532
|
/**
|
1544
1533
|
* 总数
|
1545
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1546
1534
|
*/
|
1547
1535
|
TotalCount?: number;
|
1548
1536
|
/**
|
@@ -1556,7 +1544,6 @@ export interface DescribeAddressPoolListResponse {
|
|
1556
1544
|
export interface CreateMonitorResponse {
|
1557
1545
|
/**
|
1558
1546
|
* 监控器id
|
1559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1560
1547
|
*/
|
1561
1548
|
MonitorId?: number;
|
1562
1549
|
/**
|
@@ -1654,7 +1641,6 @@ export interface InstancePackage {
|
|
1654
1641
|
export interface DeleteStrategyResponse {
|
1655
1642
|
/**
|
1656
1643
|
* 是否成功
|
1657
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1658
1644
|
*/
|
1659
1645
|
Msg?: string;
|
1660
1646
|
/**
|
@@ -1675,7 +1661,7 @@ export interface ModifyAddressPoolRequest {
|
|
1675
1661
|
*/
|
1676
1662
|
PoolName?: string;
|
1677
1663
|
/**
|
1678
|
-
* 流量策略: WEIGHT负载均衡,
|
1664
|
+
* 流量策略: WEIGHT负载均衡,ALL解析全部
|
1679
1665
|
*/
|
1680
1666
|
TrafficStrategy?: string;
|
1681
1667
|
/**
|
@@ -1801,7 +1787,6 @@ export interface ModifyInstanceConfigRequest {
|
|
1801
1787
|
export interface DescribeAddressLocationResponse {
|
1802
1788
|
/**
|
1803
1789
|
* 所属地域
|
1804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1805
1790
|
*/
|
1806
1791
|
AddressLocation?: Array<AddressLocation>;
|
1807
1792
|
/**
|
@@ -1815,17 +1800,14 @@ export interface DescribeAddressLocationResponse {
|
|
1815
1800
|
export interface DescribeInstanceListResponse {
|
1816
1801
|
/**
|
1817
1802
|
* 实例列表
|
1818
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1819
1803
|
*/
|
1820
1804
|
InstanceSet?: Array<Instance>;
|
1821
1805
|
/**
|
1822
1806
|
* 列表总数
|
1823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1824
1807
|
*/
|
1825
1808
|
TotalCount?: number;
|
1826
1809
|
/**
|
1827
1810
|
* 是否支持系统域名接入:true支持;false不支持
|
1828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1829
1811
|
*/
|
1830
1812
|
SystemAccessEnabled?: boolean;
|
1831
1813
|
/**
|
@@ -1860,7 +1842,6 @@ export interface ResourceFilter {
|
|
1860
1842
|
export interface DeleteMonitorResponse {
|
1861
1843
|
/**
|
1862
1844
|
* 成功返回
|
1863
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1864
1845
|
*/
|
1865
1846
|
Msg?: string;
|
1866
1847
|
/**
|
@@ -72,6 +72,7 @@ export { cpdp } from "./cpdp";
|
|
72
72
|
export { csip } from "./csip";
|
73
73
|
export { csxg } from "./csxg";
|
74
74
|
export { ctem } from "./ctem";
|
75
|
+
export { ctsdb } from "./ctsdb";
|
75
76
|
export { cvm } from "./cvm";
|
76
77
|
export { cwp } from "./cwp";
|
77
78
|
export { cws } from "./cws";
|
@@ -148,6 +148,8 @@ var csxg_1 = require("./csxg");
|
|
148
148
|
Object.defineProperty(exports, "csxg", { enumerable: true, get: function () { return csxg_1.csxg; } });
|
149
149
|
var ctem_1 = require("./ctem");
|
150
150
|
Object.defineProperty(exports, "ctem", { enumerable: true, get: function () { return ctem_1.ctem; } });
|
151
|
+
var ctsdb_1 = require("./ctsdb");
|
152
|
+
Object.defineProperty(exports, "ctsdb", { enumerable: true, get: function () { return ctsdb_1.ctsdb; } });
|
151
153
|
var cvm_1 = require("./cvm");
|
152
154
|
Object.defineProperty(exports, "cvm", { enumerable: true, get: function () { return cvm_1.cvm; } });
|
153
155
|
var cwp_1 = require("./cwp");
|
@@ -363,6 +363,14 @@ export interface DeployRecordDetail {
|
|
363
363
|
* 部署CLB监听器的Url
|
364
364
|
*/
|
365
365
|
Url?: Array<string>;
|
366
|
+
/**
|
367
|
+
* 当前部署证书加密算法
|
368
|
+
*/
|
369
|
+
Algorithm?: string;
|
370
|
+
/**
|
371
|
+
* 原证书加密算法
|
372
|
+
*/
|
373
|
+
OldAlgorithm?: string;
|
366
374
|
}
|
367
375
|
/**
|
368
376
|
* CancelCertificateOrder请求参数结构体
|
@@ -2203,6 +2211,14 @@ export interface UpdateRecordDetail {
|
|
2203
2211
|
* 监听器Url(clb专属)
|
2204
2212
|
*/
|
2205
2213
|
Url?: string;
|
2214
|
+
/**
|
2215
|
+
* 新证书加密算法
|
2216
|
+
*/
|
2217
|
+
Algorithm?: string;
|
2218
|
+
/**
|
2219
|
+
* 旧证书加密算法
|
2220
|
+
*/
|
2221
|
+
OldAlgorithm?: string;
|
2206
2222
|
}
|
2207
2223
|
/**
|
2208
2224
|
* 绑定资源结果
|
@@ -3334,6 +3350,10 @@ export interface TeoInstanceDetail {
|
|
3334
3350
|
issued:绑定失败。
|
3335
3351
|
*/
|
3336
3352
|
Status?: string;
|
3353
|
+
/**
|
3354
|
+
* 证书加密算法
|
3355
|
+
*/
|
3356
|
+
Algorithm?: string;
|
3337
3357
|
}
|
3338
3358
|
/**
|
3339
3359
|
* DescribeHostClbInstanceList返回参数结构体
|