tencentcloud-sdk-nodejs-tcb 4.1.108 → 4.1.158
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/README.md +6 -4
- package/es/services/tcb/v20180608/tcb_client.js +120 -189
- package/es/services/tcb/v20180608/tcb_models.js +1 -0
- package/package.json +7 -5
- package/tencentcloud/services/index.js +1 -0
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +126 -218
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +185 -323
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +262 -1477
|
@@ -63,19 +63,6 @@ export interface DescribeEnvLimitResponse {
|
|
|
63
63
|
*/
|
|
64
64
|
RequestId?: string;
|
|
65
65
|
}
|
|
66
|
-
/**
|
|
67
|
-
* DescribeCloudBaseRunAllVpcs返回参数结构体
|
|
68
|
-
*/
|
|
69
|
-
export interface DescribeCloudBaseRunAllVpcsResponse {
|
|
70
|
-
/**
|
|
71
|
-
* 所有vpcid
|
|
72
|
-
*/
|
|
73
|
-
Vpcs?: Array<string>;
|
|
74
|
-
/**
|
|
75
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
76
|
-
*/
|
|
77
|
-
RequestId?: string;
|
|
78
|
-
}
|
|
79
66
|
/**
|
|
80
67
|
* 订单信息
|
|
81
68
|
*/
|
|
@@ -153,19 +140,6 @@ export interface CheckTcbServiceResponse {
|
|
|
153
140
|
*/
|
|
154
141
|
RequestId?: string;
|
|
155
142
|
}
|
|
156
|
-
/**
|
|
157
|
-
* DescribeCloudBaseRunConfForGateWay请求参数结构体
|
|
158
|
-
*/
|
|
159
|
-
export interface DescribeCloudBaseRunConfForGateWayRequest {
|
|
160
|
-
/**
|
|
161
|
-
* 环境ID
|
|
162
|
-
*/
|
|
163
|
-
EnvID: string;
|
|
164
|
-
/**
|
|
165
|
-
* vpc信息
|
|
166
|
-
*/
|
|
167
|
-
VpcID?: string;
|
|
168
|
-
}
|
|
169
143
|
/**
|
|
170
144
|
* DescribeCloudBaseRunServerVersion请求参数结构体
|
|
171
145
|
*/
|
|
@@ -197,9 +171,34 @@ export interface CbrPackageInfo {
|
|
|
197
171
|
PackageVersion?: string;
|
|
198
172
|
}
|
|
199
173
|
/**
|
|
200
|
-
*
|
|
174
|
+
* 后付费计费详情
|
|
201
175
|
*/
|
|
202
|
-
export
|
|
176
|
+
export interface PostPaidEnvDeductInfo {
|
|
177
|
+
/**
|
|
178
|
+
* 资源方
|
|
179
|
+
*/
|
|
180
|
+
ResourceType?: string;
|
|
181
|
+
/**
|
|
182
|
+
* 指标名
|
|
183
|
+
*/
|
|
184
|
+
MetricName?: string;
|
|
185
|
+
/**
|
|
186
|
+
* 按量计费详情
|
|
187
|
+
*/
|
|
188
|
+
ResQuota?: number;
|
|
189
|
+
/**
|
|
190
|
+
* 资源包抵扣详情
|
|
191
|
+
*/
|
|
192
|
+
PkgQuota?: number;
|
|
193
|
+
/**
|
|
194
|
+
* 免费额度抵扣详情
|
|
195
|
+
*/
|
|
196
|
+
FreeQuota?: number;
|
|
197
|
+
/**
|
|
198
|
+
* 环境id
|
|
199
|
+
*/
|
|
200
|
+
EnvId?: string;
|
|
201
|
+
}
|
|
203
202
|
/**
|
|
204
203
|
* DescribeEnvDealRegion返回参数结构体
|
|
205
204
|
*/
|
|
@@ -238,27 +237,6 @@ export interface DeleteCloudBaseRunServerVersionResponse {
|
|
|
238
237
|
*/
|
|
239
238
|
RequestId?: string;
|
|
240
239
|
}
|
|
241
|
-
/**
|
|
242
|
-
* RollUpdateCloudBaseRunServerVersion返回参数结构体
|
|
243
|
-
*/
|
|
244
|
-
export interface RollUpdateCloudBaseRunServerVersionResponse {
|
|
245
|
-
/**
|
|
246
|
-
* succ为成功
|
|
247
|
-
*/
|
|
248
|
-
Result?: string;
|
|
249
|
-
/**
|
|
250
|
-
* 滚动更新的VersionName
|
|
251
|
-
*/
|
|
252
|
-
VersionName?: string;
|
|
253
|
-
/**
|
|
254
|
-
* 操作记录id
|
|
255
|
-
*/
|
|
256
|
-
RunId?: string;
|
|
257
|
-
/**
|
|
258
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
259
|
-
*/
|
|
260
|
-
RequestId?: string;
|
|
261
|
-
}
|
|
262
240
|
/**
|
|
263
241
|
* SearchClsLog返回参数结构体
|
|
264
242
|
*/
|
|
@@ -281,59 +259,6 @@ export interface ModifyClsTopicResponse {
|
|
|
281
259
|
*/
|
|
282
260
|
RequestId?: string;
|
|
283
261
|
}
|
|
284
|
-
/**
|
|
285
|
-
* 独立网关信息
|
|
286
|
-
*/
|
|
287
|
-
export interface StandaloneGatewayInfo {
|
|
288
|
-
/**
|
|
289
|
-
* 独立网关名称
|
|
290
|
-
*/
|
|
291
|
-
GatewayName: string;
|
|
292
|
-
/**
|
|
293
|
-
* CPU核心数
|
|
294
|
-
*/
|
|
295
|
-
CPU: number;
|
|
296
|
-
/**
|
|
297
|
-
* 内存大小,单位MB
|
|
298
|
-
*/
|
|
299
|
-
Mem: number;
|
|
300
|
-
/**
|
|
301
|
-
* 套餐包版本名称
|
|
302
|
-
*/
|
|
303
|
-
PackageVersion: string;
|
|
304
|
-
/**
|
|
305
|
-
* 网关别名
|
|
306
|
-
*/
|
|
307
|
-
GatewayAlias: string;
|
|
308
|
-
/**
|
|
309
|
-
* 私有网络ID
|
|
310
|
-
*/
|
|
311
|
-
VpcId: string;
|
|
312
|
-
/**
|
|
313
|
-
* 子网ID列表
|
|
314
|
-
*/
|
|
315
|
-
SubnetIds: Array<string>;
|
|
316
|
-
/**
|
|
317
|
-
* 网关描述
|
|
318
|
-
*/
|
|
319
|
-
GatewayDesc: string;
|
|
320
|
-
/**
|
|
321
|
-
* 网关状态
|
|
322
|
-
*/
|
|
323
|
-
GateWayStatus: string;
|
|
324
|
-
/**
|
|
325
|
-
* 服务信息
|
|
326
|
-
*/
|
|
327
|
-
ServiceInfo: BackendServiceInfo;
|
|
328
|
-
/**
|
|
329
|
-
* 公网CLBIP
|
|
330
|
-
*/
|
|
331
|
-
PublicClbIp: string;
|
|
332
|
-
/**
|
|
333
|
-
* 内网CLBIP
|
|
334
|
-
*/
|
|
335
|
-
InternalClbIp: string;
|
|
336
|
-
}
|
|
337
262
|
/**
|
|
338
263
|
* EditAuthConfig返回参数结构体
|
|
339
264
|
*/
|
|
@@ -397,36 +322,6 @@ export interface CommonServiceAPIResponse {
|
|
|
397
322
|
*/
|
|
398
323
|
RequestId?: string;
|
|
399
324
|
}
|
|
400
|
-
/**
|
|
401
|
-
* DescribeStandaloneGateway请求参数结构体
|
|
402
|
-
*/
|
|
403
|
-
export interface DescribeStandaloneGatewayRequest {
|
|
404
|
-
/**
|
|
405
|
-
* 环境ID
|
|
406
|
-
*/
|
|
407
|
-
EnvId: string;
|
|
408
|
-
/**
|
|
409
|
-
* 网关名称
|
|
410
|
-
*/
|
|
411
|
-
GatewayName?: string;
|
|
412
|
-
/**
|
|
413
|
-
* 网关别名
|
|
414
|
-
*/
|
|
415
|
-
GatewayAlias?: string;
|
|
416
|
-
}
|
|
417
|
-
/**
|
|
418
|
-
* DescribeStandaloneGatewayPackage请求参数结构体
|
|
419
|
-
*/
|
|
420
|
-
export interface DescribeStandaloneGatewayPackageRequest {
|
|
421
|
-
/**
|
|
422
|
-
* 环境ID
|
|
423
|
-
*/
|
|
424
|
-
EnvId?: string;
|
|
425
|
-
/**
|
|
426
|
-
* 套餐版本,包含starter、basic、advanced、enterprise
|
|
427
|
-
*/
|
|
428
|
-
PackageVersion?: string;
|
|
429
|
-
}
|
|
430
325
|
/**
|
|
431
326
|
* DescribeGraphData返回参数结构体
|
|
432
327
|
*/
|
|
@@ -474,20 +369,9 @@ export interface DescribePostpayPackageFreeQuotasRequest {
|
|
|
474
369
|
FreeQuotaType?: string;
|
|
475
370
|
}
|
|
476
371
|
/**
|
|
477
|
-
*
|
|
372
|
+
* DescribeEnvLimit请求参数结构体
|
|
478
373
|
*/
|
|
479
|
-
export
|
|
480
|
-
/**
|
|
481
|
-
* 环境id
|
|
482
|
-
*/
|
|
483
|
-
EnvId: string;
|
|
484
|
-
/**
|
|
485
|
-
* 终端用户来源
|
|
486
|
-
<li> qcloud </li>
|
|
487
|
-
<li>miniapp</li>
|
|
488
|
-
*/
|
|
489
|
-
Source?: string;
|
|
490
|
-
}
|
|
374
|
+
export type DescribeEnvLimitRequest = null;
|
|
491
375
|
/**
|
|
492
376
|
* DescribeCloudBaseBuildService返回参数结构体
|
|
493
377
|
*/
|
|
@@ -526,71 +410,38 @@ export interface DescribeCloudBaseBuildServiceResponse {
|
|
|
526
410
|
RequestId?: string;
|
|
527
411
|
}
|
|
528
412
|
/**
|
|
529
|
-
*
|
|
530
|
-
*/
|
|
531
|
-
export interface DescribeEndUsersRequest {
|
|
532
|
-
/**
|
|
533
|
-
* 开发者的环境ID
|
|
534
|
-
*/
|
|
535
|
-
EnvId: string;
|
|
536
|
-
/**
|
|
537
|
-
* 可选参数,偏移量,默认 0
|
|
538
|
-
*/
|
|
539
|
-
Offset?: number;
|
|
540
|
-
/**
|
|
541
|
-
* 可选参数,拉取数量,默认 20
|
|
542
|
-
*/
|
|
543
|
-
Limit?: number;
|
|
544
|
-
/**
|
|
545
|
-
* 按照 uuid 列表过滤,最大个数为100
|
|
546
|
-
*/
|
|
547
|
-
UUIds?: Array<string>;
|
|
548
|
-
}
|
|
549
|
-
/**
|
|
550
|
-
* DescribeCloudBaseRunPodList返回参数结构体
|
|
413
|
+
* DescribeSpecialCostItems请求参数结构体
|
|
551
414
|
*/
|
|
552
|
-
export interface
|
|
553
|
-
/**
|
|
554
|
-
* 偏移量
|
|
555
|
-
*/
|
|
556
|
-
Offset?: number;
|
|
557
|
-
/**
|
|
558
|
-
* 分页大小
|
|
559
|
-
*/
|
|
560
|
-
Limit?: number;
|
|
415
|
+
export interface DescribeSpecialCostItemsRequest {
|
|
561
416
|
/**
|
|
562
|
-
*
|
|
417
|
+
* 环境id
|
|
563
418
|
*/
|
|
564
|
-
|
|
419
|
+
EnvId?: string;
|
|
565
420
|
/**
|
|
566
|
-
*
|
|
421
|
+
* 查询开始时间
|
|
567
422
|
*/
|
|
568
|
-
|
|
423
|
+
StartTime?: string;
|
|
569
424
|
/**
|
|
570
|
-
*
|
|
425
|
+
* 查询结束时间
|
|
571
426
|
*/
|
|
572
|
-
|
|
427
|
+
EndTime?: string;
|
|
573
428
|
}
|
|
574
429
|
/**
|
|
575
|
-
*
|
|
430
|
+
* DescribeCloudBaseRunVersion请求参数结构体
|
|
576
431
|
*/
|
|
577
|
-
export interface
|
|
578
|
-
/**
|
|
579
|
-
* 公网服务域名
|
|
580
|
-
*/
|
|
581
|
-
PublicDomain?: string;
|
|
432
|
+
export interface DescribeCloudBaseRunVersionRequest {
|
|
582
433
|
/**
|
|
583
|
-
*
|
|
434
|
+
* 环境ID
|
|
584
435
|
*/
|
|
585
|
-
|
|
436
|
+
EnvId: string;
|
|
586
437
|
/**
|
|
587
|
-
*
|
|
438
|
+
* 服务名称
|
|
588
439
|
*/
|
|
589
|
-
|
|
440
|
+
ServerName: string;
|
|
590
441
|
/**
|
|
591
|
-
*
|
|
442
|
+
* 版本名称
|
|
592
443
|
*/
|
|
593
|
-
|
|
444
|
+
VersionName: string;
|
|
594
445
|
}
|
|
595
446
|
/**
|
|
596
447
|
* 封禁配置
|
|
@@ -634,23 +485,6 @@ export interface LogResObject {
|
|
|
634
485
|
*/
|
|
635
486
|
AnalysisRecords?: Array<string>;
|
|
636
487
|
}
|
|
637
|
-
/**
|
|
638
|
-
* DestroyStandaloneGateway请求参数结构体
|
|
639
|
-
*/
|
|
640
|
-
export interface DestroyStandaloneGatewayRequest {
|
|
641
|
-
/**
|
|
642
|
-
* 环境ID
|
|
643
|
-
*/
|
|
644
|
-
EnvId: string;
|
|
645
|
-
/**
|
|
646
|
-
* 网名名称
|
|
647
|
-
*/
|
|
648
|
-
GatewayName: string;
|
|
649
|
-
/**
|
|
650
|
-
* 是否强制释放
|
|
651
|
-
*/
|
|
652
|
-
IsForce: boolean;
|
|
653
|
-
}
|
|
654
488
|
/**
|
|
655
489
|
* CloudRunServiceSimpleVersionSnapshot 信息
|
|
656
490
|
*/
|
|
@@ -773,13 +607,17 @@ export interface CloudRunServiceSimpleVersionSnapshot {
|
|
|
773
607
|
Status?: string;
|
|
774
608
|
}
|
|
775
609
|
/**
|
|
776
|
-
*
|
|
610
|
+
* DestroyStaticStore请求参数结构体
|
|
777
611
|
*/
|
|
778
|
-
export interface
|
|
612
|
+
export interface DestroyStaticStoreRequest {
|
|
779
613
|
/**
|
|
780
|
-
*
|
|
614
|
+
* 环境ID
|
|
781
615
|
*/
|
|
782
|
-
|
|
616
|
+
EnvId: string;
|
|
617
|
+
/**
|
|
618
|
+
* cdn域名
|
|
619
|
+
*/
|
|
620
|
+
CdnDomain?: string;
|
|
783
621
|
}
|
|
784
622
|
/**
|
|
785
623
|
* ReplaceActivityRecord返回参数结构体
|
|
@@ -791,38 +629,33 @@ export interface ReplaceActivityRecordResponse {
|
|
|
791
629
|
RequestId?: string;
|
|
792
630
|
}
|
|
793
631
|
/**
|
|
794
|
-
*
|
|
632
|
+
* 云日志服务相关信息
|
|
795
633
|
*/
|
|
796
|
-
export interface
|
|
634
|
+
export interface LogServiceInfo {
|
|
797
635
|
/**
|
|
798
|
-
*
|
|
636
|
+
* log名
|
|
799
637
|
*/
|
|
800
|
-
|
|
638
|
+
LogsetName?: string;
|
|
801
639
|
/**
|
|
802
|
-
*
|
|
640
|
+
* log-id
|
|
803
641
|
*/
|
|
804
|
-
|
|
642
|
+
LogsetId?: string;
|
|
805
643
|
/**
|
|
806
|
-
*
|
|
644
|
+
* topic名
|
|
807
645
|
*/
|
|
808
|
-
|
|
809
|
-
}
|
|
810
|
-
/**
|
|
811
|
-
* TurnOnStandaloneGateway请求参数结构体
|
|
812
|
-
*/
|
|
813
|
-
export interface TurnOnStandaloneGatewayRequest {
|
|
646
|
+
TopicName?: string;
|
|
814
647
|
/**
|
|
815
|
-
*
|
|
648
|
+
* topic-id
|
|
816
649
|
*/
|
|
817
|
-
|
|
650
|
+
TopicId?: string;
|
|
818
651
|
/**
|
|
819
|
-
*
|
|
652
|
+
* cls日志所属地域
|
|
820
653
|
*/
|
|
821
|
-
|
|
654
|
+
Region?: string;
|
|
822
655
|
/**
|
|
823
|
-
*
|
|
656
|
+
* topic保存时长 默认7天
|
|
824
657
|
*/
|
|
825
|
-
|
|
658
|
+
Period?: number;
|
|
826
659
|
}
|
|
827
660
|
/**
|
|
828
661
|
* CreatePostpayPackage请求参数结构体
|
|
@@ -883,38 +716,6 @@ export interface CreatePostpayPackageRequest {
|
|
|
883
716
|
*/
|
|
884
717
|
Extra?: string;
|
|
885
718
|
}
|
|
886
|
-
/**
|
|
887
|
-
* DescribeWxCloudBaseRunSubNets请求参数结构体
|
|
888
|
-
*/
|
|
889
|
-
export interface DescribeWxCloudBaseRunSubNetsRequest {
|
|
890
|
-
/**
|
|
891
|
-
* VPC id
|
|
892
|
-
*/
|
|
893
|
-
VpcId: string;
|
|
894
|
-
/**
|
|
895
|
-
* 查询个数限制,不填或小于等于0,等于不限制
|
|
896
|
-
*/
|
|
897
|
-
Limit?: number;
|
|
898
|
-
}
|
|
899
|
-
/**
|
|
900
|
-
* ModifyEndUser请求参数结构体
|
|
901
|
-
*/
|
|
902
|
-
export interface ModifyEndUserRequest {
|
|
903
|
-
/**
|
|
904
|
-
* 环境ID
|
|
905
|
-
*/
|
|
906
|
-
EnvId: string;
|
|
907
|
-
/**
|
|
908
|
-
* C端用户端的唯一ID
|
|
909
|
-
*/
|
|
910
|
-
UUId: string;
|
|
911
|
-
/**
|
|
912
|
-
* 账号的状态
|
|
913
|
-
<li>ENABLE</li>
|
|
914
|
-
<li>DISABLE</li>
|
|
915
|
-
*/
|
|
916
|
-
Status?: string;
|
|
917
|
-
}
|
|
918
719
|
/**
|
|
919
720
|
* DescribeCurveData返回参数结构体
|
|
920
721
|
*/
|
|
@@ -1016,19 +817,6 @@ export interface ClsInfo {
|
|
|
1016
817
|
*/
|
|
1017
818
|
CreateTime: string;
|
|
1018
819
|
}
|
|
1019
|
-
/**
|
|
1020
|
-
* DescribeCloudBaseRunOperationTypes请求参数结构体
|
|
1021
|
-
*/
|
|
1022
|
-
export interface DescribeCloudBaseRunOperationTypesRequest {
|
|
1023
|
-
/**
|
|
1024
|
-
* 环境ID
|
|
1025
|
-
*/
|
|
1026
|
-
EnvId: string;
|
|
1027
|
-
/**
|
|
1028
|
-
* 服务名称,精确匹配
|
|
1029
|
-
*/
|
|
1030
|
-
ServerName?: string;
|
|
1031
|
-
}
|
|
1032
820
|
/**
|
|
1033
821
|
* 网关版本详情
|
|
1034
822
|
*/
|
|
@@ -1097,20 +885,11 @@ export interface ReinstateEnvRequest {
|
|
|
1097
885
|
EnvId: string;
|
|
1098
886
|
}
|
|
1099
887
|
/**
|
|
1100
|
-
*
|
|
888
|
+
* ModifyClsTopic请求参数结构体
|
|
1101
889
|
*/
|
|
1102
|
-
export interface
|
|
890
|
+
export interface ModifyClsTopicRequest {
|
|
1103
891
|
/**
|
|
1104
|
-
*
|
|
1105
|
-
*/
|
|
1106
|
-
ExternalId: string;
|
|
1107
|
-
}
|
|
1108
|
-
/**
|
|
1109
|
-
* ModifyClsTopic请求参数结构体
|
|
1110
|
-
*/
|
|
1111
|
-
export interface ModifyClsTopicRequest {
|
|
1112
|
-
/**
|
|
1113
|
-
* 环境ID
|
|
892
|
+
* 环境ID
|
|
1114
893
|
*/
|
|
1115
894
|
EnvId: string;
|
|
1116
895
|
/**
|
|
@@ -1118,36 +897,6 @@ export interface ModifyClsTopicRequest {
|
|
|
1118
897
|
*/
|
|
1119
898
|
Period?: number;
|
|
1120
899
|
}
|
|
1121
|
-
/**
|
|
1122
|
-
* DescribeStandaloneGateway返回参数结构体
|
|
1123
|
-
*/
|
|
1124
|
-
export interface DescribeStandaloneGatewayResponse {
|
|
1125
|
-
/**
|
|
1126
|
-
* 独立网关信息列表
|
|
1127
|
-
*/
|
|
1128
|
-
StandaloneGatewayList: Array<StandaloneGatewayInfo>;
|
|
1129
|
-
/**
|
|
1130
|
-
* 总数
|
|
1131
|
-
*/
|
|
1132
|
-
Total: number;
|
|
1133
|
-
/**
|
|
1134
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1135
|
-
*/
|
|
1136
|
-
RequestId?: string;
|
|
1137
|
-
}
|
|
1138
|
-
/**
|
|
1139
|
-
* DescribeWxCloudBaseRunEnvs返回参数结构体
|
|
1140
|
-
*/
|
|
1141
|
-
export interface DescribeWxCloudBaseRunEnvsResponse {
|
|
1142
|
-
/**
|
|
1143
|
-
* env列表
|
|
1144
|
-
*/
|
|
1145
|
-
EnvList?: Array<EnvInfo>;
|
|
1146
|
-
/**
|
|
1147
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1148
|
-
*/
|
|
1149
|
-
RequestId?: string;
|
|
1150
|
-
}
|
|
1151
900
|
/**
|
|
1152
901
|
* CreateHostingDomain请求参数结构体
|
|
1153
902
|
*/
|
|
@@ -1243,17 +992,21 @@ export interface CloudBaseRunVolumeMount {
|
|
|
1243
992
|
MountPropagation?: string;
|
|
1244
993
|
}
|
|
1245
994
|
/**
|
|
1246
|
-
*
|
|
995
|
+
* CreatePostpayPackage返回参数结构体
|
|
1247
996
|
*/
|
|
1248
|
-
export interface
|
|
997
|
+
export interface CreatePostpayPackageResponse {
|
|
1249
998
|
/**
|
|
1250
|
-
*
|
|
999
|
+
* 后付费订单号
|
|
1251
1000
|
*/
|
|
1252
|
-
|
|
1001
|
+
TranId?: string;
|
|
1253
1002
|
/**
|
|
1254
|
-
*
|
|
1003
|
+
* 环境ID
|
|
1255
1004
|
*/
|
|
1256
|
-
|
|
1005
|
+
EnvId?: string;
|
|
1006
|
+
/**
|
|
1007
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1008
|
+
*/
|
|
1009
|
+
RequestId?: string;
|
|
1257
1010
|
}
|
|
1258
1011
|
/**
|
|
1259
1012
|
* DescribePostpayFreeQuotas请求参数结构体
|
|
@@ -1323,17 +1076,25 @@ export interface CloudBaseRunImageInfo {
|
|
|
1323
1076
|
ImageUrl: string;
|
|
1324
1077
|
}
|
|
1325
1078
|
/**
|
|
1326
|
-
*
|
|
1079
|
+
* ModifyDatabaseACL请求参数结构体
|
|
1327
1080
|
*/
|
|
1328
|
-
export interface
|
|
1081
|
+
export interface ModifyDatabaseACLRequest {
|
|
1329
1082
|
/**
|
|
1330
|
-
*
|
|
1083
|
+
* 环境ID
|
|
1331
1084
|
*/
|
|
1332
|
-
|
|
1085
|
+
EnvId: string;
|
|
1333
1086
|
/**
|
|
1334
|
-
*
|
|
1087
|
+
* 集合名称
|
|
1335
1088
|
*/
|
|
1336
|
-
|
|
1089
|
+
CollectionName: string;
|
|
1090
|
+
/**
|
|
1091
|
+
* 权限标签。包含以下取值:
|
|
1092
|
+
<li> READONLY:所有用户可读,仅创建者和管理员可写</li>
|
|
1093
|
+
<li> PRIVATE:仅创建者及管理员可读写</li>
|
|
1094
|
+
<li> ADMINWRITE:所有用户可读,仅管理员可写</li>
|
|
1095
|
+
<li> ADMINONLY:仅管理员可读写</li>
|
|
1096
|
+
*/
|
|
1097
|
+
AclTag: string;
|
|
1337
1098
|
}
|
|
1338
1099
|
/**
|
|
1339
1100
|
* DescribeCloudBaseRunServerVersion返回参数结构体
|
|
@@ -1503,67 +1264,6 @@ export interface DescribeCloudBaseRunServerVersionResponse {
|
|
|
1503
1264
|
*/
|
|
1504
1265
|
RequestId?: string;
|
|
1505
1266
|
}
|
|
1506
|
-
/**
|
|
1507
|
-
* 终端用户信息
|
|
1508
|
-
*/
|
|
1509
|
-
export interface EndUserInfo {
|
|
1510
|
-
/**
|
|
1511
|
-
* 用户唯一ID
|
|
1512
|
-
*/
|
|
1513
|
-
UUId?: string;
|
|
1514
|
-
/**
|
|
1515
|
-
* 微信ID
|
|
1516
|
-
*/
|
|
1517
|
-
WXOpenId?: string;
|
|
1518
|
-
/**
|
|
1519
|
-
* qq ID
|
|
1520
|
-
*/
|
|
1521
|
-
QQOpenId?: string;
|
|
1522
|
-
/**
|
|
1523
|
-
* 手机号
|
|
1524
|
-
*/
|
|
1525
|
-
Phone?: string;
|
|
1526
|
-
/**
|
|
1527
|
-
* 邮箱
|
|
1528
|
-
*/
|
|
1529
|
-
Email?: string;
|
|
1530
|
-
/**
|
|
1531
|
-
* 昵称
|
|
1532
|
-
*/
|
|
1533
|
-
NickName?: string;
|
|
1534
|
-
/**
|
|
1535
|
-
* 性别
|
|
1536
|
-
*/
|
|
1537
|
-
Gender?: string;
|
|
1538
|
-
/**
|
|
1539
|
-
* 头像地址
|
|
1540
|
-
*/
|
|
1541
|
-
AvatarUrl?: string;
|
|
1542
|
-
/**
|
|
1543
|
-
* 更新时间
|
|
1544
|
-
*/
|
|
1545
|
-
UpdateTime?: string;
|
|
1546
|
-
/**
|
|
1547
|
-
* 创建时间
|
|
1548
|
-
*/
|
|
1549
|
-
CreateTime?: string;
|
|
1550
|
-
/**
|
|
1551
|
-
* 是否为匿名用户
|
|
1552
|
-
*/
|
|
1553
|
-
IsAnonymous?: boolean;
|
|
1554
|
-
/**
|
|
1555
|
-
* 是否禁用账户
|
|
1556
|
-
*/
|
|
1557
|
-
IsDisabled?: boolean;
|
|
1558
|
-
/**
|
|
1559
|
-
* 是否设置过密码
|
|
1560
|
-
*/
|
|
1561
|
-
HasPassword?: boolean;
|
|
1562
|
-
/**
|
|
1563
|
-
* 用户名
|
|
1564
|
-
*/
|
|
1565
|
-
UserName?: string;
|
|
1566
|
-
}
|
|
1567
1267
|
/**
|
|
1568
1268
|
* DescribeGatewayVersions返回参数结构体
|
|
1569
1269
|
*/
|
|
@@ -1586,34 +1286,13 @@ export interface DescribeGatewayVersionsResponse {
|
|
|
1586
1286
|
RequestId?: string;
|
|
1587
1287
|
}
|
|
1588
1288
|
/**
|
|
1589
|
-
*
|
|
1590
|
-
*/
|
|
1591
|
-
export interface DescribeGatewayVersionsRequest {
|
|
1592
|
-
/**
|
|
1593
|
-
* 环境id
|
|
1594
|
-
*/
|
|
1595
|
-
EnvId: string;
|
|
1596
|
-
/**
|
|
1597
|
-
* 网关id
|
|
1598
|
-
*/
|
|
1599
|
-
GatewayId: string;
|
|
1600
|
-
/**
|
|
1601
|
-
* 版本名
|
|
1602
|
-
*/
|
|
1603
|
-
VersionName?: string;
|
|
1604
|
-
}
|
|
1605
|
-
/**
|
|
1606
|
-
* DeleteEndUser请求参数结构体
|
|
1289
|
+
* DescribeSmsQuotas请求参数结构体
|
|
1607
1290
|
*/
|
|
1608
|
-
export interface
|
|
1291
|
+
export interface DescribeSmsQuotasRequest {
|
|
1609
1292
|
/**
|
|
1610
1293
|
* 环境ID
|
|
1611
1294
|
*/
|
|
1612
1295
|
EnvId: string;
|
|
1613
|
-
/**
|
|
1614
|
-
* 用户列表,每一项都是uuid
|
|
1615
|
-
*/
|
|
1616
|
-
UserList: Array<string>;
|
|
1617
1296
|
}
|
|
1618
1297
|
/**
|
|
1619
1298
|
* DescribeHostingDomainTask请求参数结构体
|
|
@@ -1821,62 +1500,6 @@ export interface CommonServiceAPIRequest {
|
|
|
1821
1500
|
*/
|
|
1822
1501
|
ApiRole?: string;
|
|
1823
1502
|
}
|
|
1824
|
-
/**
|
|
1825
|
-
* DestroyStaticStore请求参数结构体
|
|
1826
|
-
*/
|
|
1827
|
-
export interface DestroyStaticStoreRequest {
|
|
1828
|
-
/**
|
|
1829
|
-
* 环境ID
|
|
1830
|
-
*/
|
|
1831
|
-
EnvId: string;
|
|
1832
|
-
/**
|
|
1833
|
-
* cdn域名
|
|
1834
|
-
*/
|
|
1835
|
-
CdnDomain?: string;
|
|
1836
|
-
}
|
|
1837
|
-
/**
|
|
1838
|
-
* CreateWxCloudBaseRunEnv请求参数结构体
|
|
1839
|
-
*/
|
|
1840
|
-
export interface CreateWxCloudBaseRunEnvRequest {
|
|
1841
|
-
/**
|
|
1842
|
-
* wx应用Id
|
|
1843
|
-
*/
|
|
1844
|
-
WxAppId: string;
|
|
1845
|
-
/**
|
|
1846
|
-
* 环境别名,要以a-z开头,不能包含 a-z,0-9,- 以外的字符
|
|
1847
|
-
*/
|
|
1848
|
-
Alias?: string;
|
|
1849
|
-
/**
|
|
1850
|
-
* 用户享有的免费额度级别,目前只能为“basic”,不传该字段或该字段为空,标识不享受免费额度。
|
|
1851
|
-
*/
|
|
1852
|
-
FreeQuota?: string;
|
|
1853
|
-
/**
|
|
1854
|
-
* 订单标记。建议使用方统一转大小写之后再判断。
|
|
1855
|
-
QuickStart:快速启动来源
|
|
1856
|
-
Activity:活动来源
|
|
1857
|
-
*/
|
|
1858
|
-
Flag?: string;
|
|
1859
|
-
/**
|
|
1860
|
-
* 私有网络Id
|
|
1861
|
-
*/
|
|
1862
|
-
VpcId?: string;
|
|
1863
|
-
/**
|
|
1864
|
-
* 子网列表
|
|
1865
|
-
*/
|
|
1866
|
-
SubNetIds?: Array<string>;
|
|
1867
|
-
/**
|
|
1868
|
-
* 是否打开云调用
|
|
1869
|
-
*/
|
|
1870
|
-
IsOpenCloudInvoke?: boolean;
|
|
1871
|
-
/**
|
|
1872
|
-
* 创建来源:wechat | cloud
|
|
1873
|
-
*/
|
|
1874
|
-
Source?: string;
|
|
1875
|
-
/**
|
|
1876
|
-
* 渠道:wechat | cloud
|
|
1877
|
-
*/
|
|
1878
|
-
Channel?: string;
|
|
1879
|
-
}
|
|
1880
1503
|
/**
|
|
1881
1504
|
* ModifyCloudBaseRunServerFlowConf请求参数结构体
|
|
1882
1505
|
*/
|
|
@@ -1915,15 +1538,6 @@ export interface DescribeActivityRecordResponse {
|
|
|
1915
1538
|
*/
|
|
1916
1539
|
RequestId?: string;
|
|
1917
1540
|
}
|
|
1918
|
-
/**
|
|
1919
|
-
* DescribeCloudBaseRunVersionRsByCondition返回参数结构体
|
|
1920
|
-
*/
|
|
1921
|
-
export interface DescribeCloudBaseRunVersionRsByConditionResponse {
|
|
1922
|
-
/**
|
|
1923
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1924
|
-
*/
|
|
1925
|
-
RequestId?: string;
|
|
1926
|
-
}
|
|
1927
1541
|
/**
|
|
1928
1542
|
* CreateStaticStore请求参数结构体
|
|
1929
1543
|
*/
|
|
@@ -1937,33 +1551,6 @@ export interface CreateStaticStoreRequest {
|
|
|
1937
1551
|
*/
|
|
1938
1552
|
EnableUnion?: boolean;
|
|
1939
1553
|
}
|
|
1940
|
-
/**
|
|
1941
|
-
* CreateWxCloudBaseRunServerDBCluster请求参数结构体
|
|
1942
|
-
*/
|
|
1943
|
-
export interface CreateWxCloudBaseRunServerDBClusterRequest {
|
|
1944
|
-
/**
|
|
1945
|
-
* 账户密码
|
|
1946
|
-
*/
|
|
1947
|
-
AccountPassword: string;
|
|
1948
|
-
/**
|
|
1949
|
-
* 环境ID
|
|
1950
|
-
*/
|
|
1951
|
-
EnvId: string;
|
|
1952
|
-
/**
|
|
1953
|
-
* 微信appid
|
|
1954
|
-
*/
|
|
1955
|
-
WxAppId?: string;
|
|
1956
|
-
/**
|
|
1957
|
-
* mysql内核版本,支持5.7,8.0
|
|
1958
|
-
*/
|
|
1959
|
-
DbVersion?: string;
|
|
1960
|
-
/**
|
|
1961
|
-
* 0: 大小写敏感
|
|
1962
|
-
1: 非大小写敏感
|
|
1963
|
-
默认为0
|
|
1964
|
-
*/
|
|
1965
|
-
LowerCaseTableName?: string;
|
|
1966
|
-
}
|
|
1967
1554
|
/**
|
|
1968
1555
|
* DeleteCloudBaseProjectLatestVersion返回参数结构体
|
|
1969
1556
|
*/
|
|
@@ -2077,27 +1664,6 @@ export interface CreateAuthDomainResponse {
|
|
|
2077
1664
|
*/
|
|
2078
1665
|
RequestId?: string;
|
|
2079
1666
|
}
|
|
2080
|
-
/**
|
|
2081
|
-
* ModifyDatabaseACL请求参数结构体
|
|
2082
|
-
*/
|
|
2083
|
-
export interface ModifyDatabaseACLRequest {
|
|
2084
|
-
/**
|
|
2085
|
-
* 环境ID
|
|
2086
|
-
*/
|
|
2087
|
-
EnvId: string;
|
|
2088
|
-
/**
|
|
2089
|
-
* 集合名称
|
|
2090
|
-
*/
|
|
2091
|
-
CollectionName: string;
|
|
2092
|
-
/**
|
|
2093
|
-
* 权限标签。包含以下取值:
|
|
2094
|
-
<li> READONLY:所有用户可读,仅创建者和管理员可写</li>
|
|
2095
|
-
<li> PRIVATE:仅创建者及管理员可读写</li>
|
|
2096
|
-
<li> ADMINWRITE:所有用户可读,仅管理员可写</li>
|
|
2097
|
-
<li> ADMINONLY:仅管理员可读写</li>
|
|
2098
|
-
*/
|
|
2099
|
-
AclTag: string;
|
|
2100
|
-
}
|
|
2101
1667
|
/**
|
|
2102
1668
|
* DescribeEnvs请求参数结构体
|
|
2103
1669
|
*/
|
|
@@ -2211,17 +1777,29 @@ export interface BindEnvGatewayResponse {
|
|
|
2211
1777
|
RequestId?: string;
|
|
2212
1778
|
}
|
|
2213
1779
|
/**
|
|
2214
|
-
*
|
|
1780
|
+
* DescribeWxGateways请求参数结构体
|
|
2215
1781
|
*/
|
|
2216
|
-
export interface
|
|
1782
|
+
export interface DescribeWxGatewaysRequest {
|
|
2217
1783
|
/**
|
|
2218
|
-
*
|
|
1784
|
+
* 环境ID
|
|
2219
1785
|
*/
|
|
2220
|
-
|
|
1786
|
+
EnvId?: string;
|
|
2221
1787
|
/**
|
|
2222
|
-
*
|
|
1788
|
+
* 网关ID
|
|
2223
1789
|
*/
|
|
2224
|
-
|
|
1790
|
+
GatewayId?: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* 服务名称,精确匹配
|
|
1793
|
+
*/
|
|
1794
|
+
GatewayName?: string;
|
|
1795
|
+
/**
|
|
1796
|
+
* 分页参数
|
|
1797
|
+
*/
|
|
1798
|
+
Limit?: number;
|
|
1799
|
+
/**
|
|
1800
|
+
* 分页参数
|
|
1801
|
+
*/
|
|
1802
|
+
Offset?: number;
|
|
2225
1803
|
}
|
|
2226
1804
|
/**
|
|
2227
1805
|
* DescribeEnvFreeQuota请求参数结构体
|
|
@@ -2250,40 +1828,6 @@ export interface CloudBaseCapabilities {
|
|
|
2250
1828
|
*/
|
|
2251
1829
|
Drop?: Array<string>;
|
|
2252
1830
|
}
|
|
2253
|
-
/**
|
|
2254
|
-
* 仓库信息
|
|
2255
|
-
*/
|
|
2256
|
-
export interface CbrRepoInfo {
|
|
2257
|
-
/**
|
|
2258
|
-
* 仓库名称
|
|
2259
|
-
*/
|
|
2260
|
-
Repo?: string;
|
|
2261
|
-
/**
|
|
2262
|
-
* 仓库平台
|
|
2263
|
-
*/
|
|
2264
|
-
RepoType?: string;
|
|
2265
|
-
/**
|
|
2266
|
-
* 仓库语言
|
|
2267
|
-
*/
|
|
2268
|
-
RepoLanguage?: string;
|
|
2269
|
-
/**
|
|
2270
|
-
* 分支名称
|
|
2271
|
-
*/
|
|
2272
|
-
Branch?: string;
|
|
2273
|
-
}
|
|
2274
|
-
/**
|
|
2275
|
-
* DescribeEndUserLoginStatistic返回参数结构体
|
|
2276
|
-
*/
|
|
2277
|
-
export interface DescribeEndUserLoginStatisticResponse {
|
|
2278
|
-
/**
|
|
2279
|
-
* 环境终端用户新增与登录统计
|
|
2280
|
-
*/
|
|
2281
|
-
LoginStatistics?: Array<LoginStatistic>;
|
|
2282
|
-
/**
|
|
2283
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2284
|
-
*/
|
|
2285
|
-
RequestId?: string;
|
|
2286
|
-
}
|
|
2287
1831
|
/**
|
|
2288
1832
|
* DescribeExtensionUploadInfo请求参数结构体
|
|
2289
1833
|
*/
|
|
@@ -2328,23 +1872,6 @@ export interface CreateCloudBaseRunResourceResponse {
|
|
|
2328
1872
|
*/
|
|
2329
1873
|
RequestId?: string;
|
|
2330
1874
|
}
|
|
2331
|
-
/**
|
|
2332
|
-
* DescribeStandaloneGatewayPackage返回参数结构体
|
|
2333
|
-
*/
|
|
2334
|
-
export interface DescribeStandaloneGatewayPackageResponse {
|
|
2335
|
-
/**
|
|
2336
|
-
* 总数
|
|
2337
|
-
*/
|
|
2338
|
-
Total: number;
|
|
2339
|
-
/**
|
|
2340
|
-
* 套餐详情
|
|
2341
|
-
*/
|
|
2342
|
-
StandaloneGatewayPackageList: Array<StandaloneGatewayPackageInfo>;
|
|
2343
|
-
/**
|
|
2344
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2345
|
-
*/
|
|
2346
|
-
RequestId?: string;
|
|
2347
|
-
}
|
|
2348
1875
|
/**
|
|
2349
1876
|
* CLS日志单条信息
|
|
2350
1877
|
*/
|
|
@@ -2388,13 +1915,13 @@ export interface DestroyStaticStoreResponse {
|
|
|
2388
1915
|
RequestId?: string;
|
|
2389
1916
|
}
|
|
2390
1917
|
/**
|
|
2391
|
-
*
|
|
1918
|
+
* BindEnvGateway请求参数结构体
|
|
2392
1919
|
*/
|
|
2393
|
-
export interface
|
|
1920
|
+
export interface BindEnvGatewayRequest {
|
|
2394
1921
|
/**
|
|
2395
|
-
*
|
|
1922
|
+
* 子环境id
|
|
2396
1923
|
*/
|
|
2397
|
-
|
|
1924
|
+
SubEnvId: string;
|
|
2398
1925
|
}
|
|
2399
1926
|
/**
|
|
2400
1927
|
* ModifyDatabaseACL返回参数结构体
|
|
@@ -2438,35 +1965,6 @@ export interface CloudBaseEsInfo {
|
|
|
2438
1965
|
*/
|
|
2439
1966
|
Password?: string;
|
|
2440
1967
|
}
|
|
2441
|
-
/**
|
|
2442
|
-
* 后付费计费详情
|
|
2443
|
-
*/
|
|
2444
|
-
export interface PostPaidEnvDeductInfo {
|
|
2445
|
-
/**
|
|
2446
|
-
* 资源方
|
|
2447
|
-
*/
|
|
2448
|
-
ResourceType?: string;
|
|
2449
|
-
/**
|
|
2450
|
-
* 指标名
|
|
2451
|
-
*/
|
|
2452
|
-
MetricName?: string;
|
|
2453
|
-
/**
|
|
2454
|
-
* 按量计费详情
|
|
2455
|
-
*/
|
|
2456
|
-
ResQuota?: number;
|
|
2457
|
-
/**
|
|
2458
|
-
* 资源包抵扣详情
|
|
2459
|
-
*/
|
|
2460
|
-
PkgQuota?: number;
|
|
2461
|
-
/**
|
|
2462
|
-
* 免费额度抵扣详情
|
|
2463
|
-
*/
|
|
2464
|
-
FreeQuota?: number;
|
|
2465
|
-
/**
|
|
2466
|
-
* 环境id
|
|
2467
|
-
*/
|
|
2468
|
-
EnvId?: string;
|
|
2469
|
-
}
|
|
2470
1968
|
/**
|
|
2471
1969
|
* ModifyCloudBaseRunServerFlowConf返回参数结构体
|
|
2472
1970
|
*/
|
|
@@ -2481,17 +1979,21 @@ export interface ModifyCloudBaseRunServerFlowConfResponse {
|
|
|
2481
1979
|
RequestId?: string;
|
|
2482
1980
|
}
|
|
2483
1981
|
/**
|
|
2484
|
-
*
|
|
1982
|
+
* DescribeDownloadFile返回参数结构体
|
|
2485
1983
|
*/
|
|
2486
|
-
export interface
|
|
1984
|
+
export interface DescribeDownloadFileResponse {
|
|
2487
1985
|
/**
|
|
2488
|
-
*
|
|
1986
|
+
* 文件路径,该字段已废弃
|
|
2489
1987
|
*/
|
|
2490
|
-
|
|
1988
|
+
FilePath?: string;
|
|
2491
1989
|
/**
|
|
2492
|
-
*
|
|
1990
|
+
* 加密key,用于计算下载加密文件的header。参考SSE-C https://cloud.tencent.com/document/product/436/7728#sse-c
|
|
1991
|
+
*/
|
|
1992
|
+
CustomKey?: string;
|
|
1993
|
+
/**
|
|
1994
|
+
* 下载链接
|
|
2493
1995
|
*/
|
|
2494
|
-
|
|
1996
|
+
DownloadUrl?: string;
|
|
2495
1997
|
/**
|
|
2496
1998
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2497
1999
|
*/
|
|
@@ -2742,83 +2244,6 @@ export interface CodeSource {
|
|
|
2742
2244
|
*/
|
|
2743
2245
|
ProjectName?: string;
|
|
2744
2246
|
}
|
|
2745
|
-
/**
|
|
2746
|
-
* DescribeCloudBaseRunOneClickTaskExternal返回参数结构体
|
|
2747
|
-
*/
|
|
2748
|
-
export interface DescribeCloudBaseRunOneClickTaskExternalResponse {
|
|
2749
|
-
/**
|
|
2750
|
-
* 外部任务Id
|
|
2751
|
-
*/
|
|
2752
|
-
ExternalId?: string;
|
|
2753
|
-
/**
|
|
2754
|
-
* 弃用
|
|
2755
|
-
*/
|
|
2756
|
-
EnvId?: string;
|
|
2757
|
-
/**
|
|
2758
|
-
* 用户uin
|
|
2759
|
-
*/
|
|
2760
|
-
UserUin?: string;
|
|
2761
|
-
/**
|
|
2762
|
-
* 服务名
|
|
2763
|
-
*/
|
|
2764
|
-
ServerName?: string;
|
|
2765
|
-
/**
|
|
2766
|
-
* 版本名
|
|
2767
|
-
*/
|
|
2768
|
-
VersionName?: string;
|
|
2769
|
-
/**
|
|
2770
|
-
* 创建时间
|
|
2771
|
-
*/
|
|
2772
|
-
CreateTime?: string;
|
|
2773
|
-
/**
|
|
2774
|
-
* 当前阶段
|
|
2775
|
-
微信云托管环境创建阶段:envStage
|
|
2776
|
-
存储资源创建阶段:storageStage
|
|
2777
|
-
服务创建阶段:serverStage
|
|
2778
|
-
*/
|
|
2779
|
-
Stage?: string;
|
|
2780
|
-
/**
|
|
2781
|
-
* 状态
|
|
2782
|
-
running
|
|
2783
|
-
stopped
|
|
2784
|
-
failed
|
|
2785
|
-
finished
|
|
2786
|
-
*/
|
|
2787
|
-
Status?: string;
|
|
2788
|
-
/**
|
|
2789
|
-
* 失败原因
|
|
2790
|
-
*/
|
|
2791
|
-
FailReason?: string;
|
|
2792
|
-
/**
|
|
2793
|
-
* 用户envId
|
|
2794
|
-
*/
|
|
2795
|
-
UserEnvId?: string;
|
|
2796
|
-
/**
|
|
2797
|
-
* 创建时间
|
|
2798
|
-
*/
|
|
2799
|
-
StartTime?: string;
|
|
2800
|
-
/**
|
|
2801
|
-
* 步骤信息
|
|
2802
|
-
*/
|
|
2803
|
-
Steps?: Array<OneClickTaskStepInfo>;
|
|
2804
|
-
/**
|
|
2805
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2806
|
-
*/
|
|
2807
|
-
RequestId?: string;
|
|
2808
|
-
}
|
|
2809
|
-
/**
|
|
2810
|
-
* TurnOffStandaloneGateway返回参数结构体
|
|
2811
|
-
*/
|
|
2812
|
-
export interface TurnOffStandaloneGatewayResponse {
|
|
2813
|
-
/**
|
|
2814
|
-
* 关闭独立网关状态
|
|
2815
|
-
*/
|
|
2816
|
-
Status: string;
|
|
2817
|
-
/**
|
|
2818
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2819
|
-
*/
|
|
2820
|
-
RequestId?: string;
|
|
2821
|
-
}
|
|
2822
2247
|
/**
|
|
2823
2248
|
* DescribeEnvs返回参数结构体
|
|
2824
2249
|
*/
|
|
@@ -2917,23 +2342,6 @@ export interface DescribeActivityRecordRequest {
|
|
|
2917
2342
|
*/
|
|
2918
2343
|
IsDeletedList?: Array<number | bigint>;
|
|
2919
2344
|
}
|
|
2920
|
-
/**
|
|
2921
|
-
* CreateWxCloudBaseRunEnv返回参数结构体
|
|
2922
|
-
*/
|
|
2923
|
-
export interface CreateWxCloudBaseRunEnvResponse {
|
|
2924
|
-
/**
|
|
2925
|
-
* 环境Id
|
|
2926
|
-
*/
|
|
2927
|
-
EnvId?: string;
|
|
2928
|
-
/**
|
|
2929
|
-
* 后付费订单号
|
|
2930
|
-
*/
|
|
2931
|
-
TranId?: string;
|
|
2932
|
-
/**
|
|
2933
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2934
|
-
*/
|
|
2935
|
-
RequestId?: string;
|
|
2936
|
-
}
|
|
2937
2345
|
/**
|
|
2938
2346
|
* DeleteCloudBaseRunServerVersion请求参数结构体
|
|
2939
2347
|
*/
|
|
@@ -3149,72 +2557,25 @@ export interface CreateCloudBaseRunServerVersionRequest {
|
|
|
3149
2557
|
PolicyDetail?: Array<HpaPolicy>;
|
|
3150
2558
|
}
|
|
3151
2559
|
/**
|
|
3152
|
-
*
|
|
3153
|
-
*/
|
|
3154
|
-
export interface LoginStatistic {
|
|
3155
|
-
/**
|
|
3156
|
-
* 统计类型 新增NEWUSER 和登录 LOGIN
|
|
3157
|
-
*/
|
|
3158
|
-
StatisticalType?: string;
|
|
3159
|
-
/**
|
|
3160
|
-
* 统计周期:日DAY,周WEEK,月MONTH
|
|
3161
|
-
*/
|
|
3162
|
-
StatisticalCycle?: string;
|
|
3163
|
-
/**
|
|
3164
|
-
* 统计总量
|
|
3165
|
-
*/
|
|
3166
|
-
Count?: number;
|
|
3167
|
-
/**
|
|
3168
|
-
* 更新时间
|
|
3169
|
-
*/
|
|
3170
|
-
UpdateTime?: string;
|
|
3171
|
-
}
|
|
3172
|
-
/**
|
|
3173
|
-
* DescribeCloudBaseRunServerDomainName请求参数结构体
|
|
3174
|
-
*/
|
|
3175
|
-
export interface DescribeCloudBaseRunServerDomainNameRequest {
|
|
3176
|
-
/**
|
|
3177
|
-
* 服务名
|
|
3178
|
-
*/
|
|
3179
|
-
ServerName: string;
|
|
3180
|
-
/**
|
|
3181
|
-
* 环境Id
|
|
3182
|
-
*/
|
|
3183
|
-
UserEnvId: string;
|
|
3184
|
-
/**
|
|
3185
|
-
* 用户Uin
|
|
3186
|
-
*/
|
|
3187
|
-
UserUin: string;
|
|
3188
|
-
/**
|
|
3189
|
-
* 外部Id
|
|
3190
|
-
*/
|
|
3191
|
-
ExternalId: string;
|
|
3192
|
-
}
|
|
3193
|
-
/**
|
|
3194
|
-
* DescribeCloudBaseRunAllVpcs请求参数结构体
|
|
2560
|
+
* 仓库信息
|
|
3195
2561
|
*/
|
|
3196
|
-
export interface
|
|
2562
|
+
export interface CbrRepoInfo {
|
|
3197
2563
|
/**
|
|
3198
|
-
*
|
|
2564
|
+
* 仓库名称
|
|
3199
2565
|
*/
|
|
3200
|
-
|
|
3201
|
-
}
|
|
3202
|
-
/**
|
|
3203
|
-
* CreatePostpayPackage返回参数结构体
|
|
3204
|
-
*/
|
|
3205
|
-
export interface CreatePostpayPackageResponse {
|
|
2566
|
+
Repo?: string;
|
|
3206
2567
|
/**
|
|
3207
|
-
*
|
|
2568
|
+
* 仓库平台
|
|
3208
2569
|
*/
|
|
3209
|
-
|
|
2570
|
+
RepoType?: string;
|
|
3210
2571
|
/**
|
|
3211
|
-
*
|
|
2572
|
+
* 仓库语言
|
|
3212
2573
|
*/
|
|
3213
|
-
|
|
2574
|
+
RepoLanguage?: string;
|
|
3214
2575
|
/**
|
|
3215
|
-
*
|
|
2576
|
+
* 分支名称
|
|
3216
2577
|
*/
|
|
3217
|
-
|
|
2578
|
+
Branch?: string;
|
|
3218
2579
|
}
|
|
3219
2580
|
/**
|
|
3220
2581
|
* DescribeBaasPackageList返回参数结构体
|
|
@@ -3264,21 +2625,21 @@ export interface DeleteWxGatewayRouteResponse {
|
|
|
3264
2625
|
RequestId?: string;
|
|
3265
2626
|
}
|
|
3266
2627
|
/**
|
|
3267
|
-
*
|
|
2628
|
+
* KV参数的优先级
|
|
3268
2629
|
*/
|
|
3269
|
-
export interface
|
|
2630
|
+
export interface CloudBaseRunKVPriority {
|
|
3270
2631
|
/**
|
|
3271
|
-
*
|
|
2632
|
+
* 参数的Key
|
|
3272
2633
|
*/
|
|
3273
|
-
|
|
2634
|
+
Key?: string;
|
|
3274
2635
|
/**
|
|
3275
|
-
*
|
|
2636
|
+
* 参数的Value
|
|
3276
2637
|
*/
|
|
3277
|
-
|
|
2638
|
+
Value?: string;
|
|
3278
2639
|
/**
|
|
3279
|
-
*
|
|
2640
|
+
* 优先级
|
|
3280
2641
|
*/
|
|
3281
|
-
|
|
2642
|
+
Priority?: number;
|
|
3282
2643
|
}
|
|
3283
2644
|
/**
|
|
3284
2645
|
* UnfreezeCloudBaseRunServers请求参数结构体
|
|
@@ -3383,15 +2744,6 @@ export interface EstablishCloudBaseRunServerRequest {
|
|
|
3383
2744
|
*/
|
|
3384
2745
|
ServerPath?: string;
|
|
3385
2746
|
}
|
|
3386
|
-
/**
|
|
3387
|
-
* ReinstateEnv返回参数结构体
|
|
3388
|
-
*/
|
|
3389
|
-
export interface ReinstateEnvResponse {
|
|
3390
|
-
/**
|
|
3391
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3392
|
-
*/
|
|
3393
|
-
RequestId?: string;
|
|
3394
|
-
}
|
|
3395
2747
|
/**
|
|
3396
2748
|
* 对标 EKS VolumeMount
|
|
3397
2749
|
*/
|
|
@@ -3430,35 +2782,6 @@ export interface DescribeSpecialCostItemsResponse {
|
|
|
3430
2782
|
*/
|
|
3431
2783
|
RequestId?: string;
|
|
3432
2784
|
}
|
|
3433
|
-
/**
|
|
3434
|
-
* CreateStandaloneGateway请求参数结构体
|
|
3435
|
-
*/
|
|
3436
|
-
export interface CreateStandaloneGatewayRequest {
|
|
3437
|
-
/**
|
|
3438
|
-
* 环境ID
|
|
3439
|
-
*/
|
|
3440
|
-
EnvId: string;
|
|
3441
|
-
/**
|
|
3442
|
-
* 网关名
|
|
3443
|
-
*/
|
|
3444
|
-
GatewayAlias: string;
|
|
3445
|
-
/**
|
|
3446
|
-
* 私有网络ID
|
|
3447
|
-
*/
|
|
3448
|
-
VpcId: string;
|
|
3449
|
-
/**
|
|
3450
|
-
* 子网ID
|
|
3451
|
-
*/
|
|
3452
|
-
SubnetIds: Array<string>;
|
|
3453
|
-
/**
|
|
3454
|
-
* 网关描述
|
|
3455
|
-
*/
|
|
3456
|
-
GatewayDesc: string;
|
|
3457
|
-
/**
|
|
3458
|
-
* 网关套餐版本
|
|
3459
|
-
*/
|
|
3460
|
-
PackageVersion: string;
|
|
3461
|
-
}
|
|
3462
2785
|
/**
|
|
3463
2786
|
* DescribeWxGatewayRoutes请求参数结构体
|
|
3464
2787
|
*/
|
|
@@ -3481,64 +2804,39 @@ export interface DescribeWxGatewayRoutesRequest {
|
|
|
3481
2804
|
GatewayVersion?: string;
|
|
3482
2805
|
}
|
|
3483
2806
|
/**
|
|
3484
|
-
*
|
|
2807
|
+
* DescribeCloudBaseProjectVersionList返回参数结构体
|
|
3485
2808
|
*/
|
|
3486
|
-
export interface
|
|
3487
|
-
/**
|
|
3488
|
-
* 环境ID
|
|
3489
|
-
*/
|
|
3490
|
-
EnvId?: string;
|
|
2809
|
+
export interface DescribeCloudBaseProjectVersionListResponse {
|
|
3491
2810
|
/**
|
|
3492
|
-
*
|
|
2811
|
+
* 版本列表
|
|
3493
2812
|
*/
|
|
3494
|
-
|
|
2813
|
+
ProjectVersions?: Array<CloudBaseProjectVersion>;
|
|
3495
2814
|
/**
|
|
3496
|
-
*
|
|
2815
|
+
* 总个数
|
|
3497
2816
|
*/
|
|
3498
|
-
|
|
2817
|
+
TotalCount?: number;
|
|
3499
2818
|
/**
|
|
3500
|
-
*
|
|
2819
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3501
2820
|
*/
|
|
3502
|
-
|
|
2821
|
+
RequestId?: string;
|
|
2822
|
+
}
|
|
2823
|
+
/**
|
|
2824
|
+
* DescribeDownloadFile请求参数结构体
|
|
2825
|
+
*/
|
|
2826
|
+
export interface DescribeDownloadFileRequest {
|
|
3503
2827
|
/**
|
|
3504
|
-
*
|
|
2828
|
+
* 代码uri,格式如:extension://abcdefhhxxx.zip,对应 DescribeExtensionUploadInfo 接口的返回值
|
|
3505
2829
|
*/
|
|
3506
|
-
|
|
2830
|
+
CodeUri: string;
|
|
3507
2831
|
}
|
|
3508
2832
|
/**
|
|
3509
|
-
*
|
|
2833
|
+
* ReinstateEnv返回参数结构体
|
|
3510
2834
|
*/
|
|
3511
|
-
export interface
|
|
2835
|
+
export interface ReinstateEnvResponse {
|
|
3512
2836
|
/**
|
|
3513
|
-
*
|
|
2837
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3514
2838
|
*/
|
|
3515
|
-
|
|
3516
|
-
/**
|
|
3517
|
-
* 参数的Value
|
|
3518
|
-
*/
|
|
3519
|
-
Value?: string;
|
|
3520
|
-
/**
|
|
3521
|
-
* 优先级
|
|
3522
|
-
*/
|
|
3523
|
-
Priority?: number;
|
|
3524
|
-
}
|
|
3525
|
-
/**
|
|
3526
|
-
* DescribeDownloadFile请求参数结构体
|
|
3527
|
-
*/
|
|
3528
|
-
export interface DescribeDownloadFileRequest {
|
|
3529
|
-
/**
|
|
3530
|
-
* 代码uri,格式如:extension://abcdefhhxxx.zip,对应 DescribeExtensionUploadInfo 接口的返回值
|
|
3531
|
-
*/
|
|
3532
|
-
CodeUri: string;
|
|
3533
|
-
}
|
|
3534
|
-
/**
|
|
3535
|
-
* DescribeEndUserStatistic请求参数结构体
|
|
3536
|
-
*/
|
|
3537
|
-
export interface DescribeEndUserStatisticRequest {
|
|
3538
|
-
/**
|
|
3539
|
-
* 环境id
|
|
3540
|
-
*/
|
|
3541
|
-
EnvId: string;
|
|
2839
|
+
RequestId?: string;
|
|
3542
2840
|
}
|
|
3543
2841
|
/**
|
|
3544
2842
|
* 子网信息
|
|
@@ -3748,9 +3046,9 @@ export interface CreateAndDeployCloudBaseProjectRequest {
|
|
|
3748
3046
|
RepoUrl?: string;
|
|
3749
3047
|
}
|
|
3750
3048
|
/**
|
|
3751
|
-
*
|
|
3049
|
+
* ModifyCloudBaseRunServerVersion请求参数结构体
|
|
3752
3050
|
*/
|
|
3753
|
-
export interface
|
|
3051
|
+
export interface ModifyCloudBaseRunServerVersionRequest {
|
|
3754
3052
|
/**
|
|
3755
3053
|
* 环境ID
|
|
3756
3054
|
*/
|
|
@@ -3763,6 +3061,42 @@ export interface DescribeCloudBaseRunVersionRequest {
|
|
|
3763
3061
|
* 版本名称
|
|
3764
3062
|
*/
|
|
3765
3063
|
VersionName: string;
|
|
3064
|
+
/**
|
|
3065
|
+
* 环境变量
|
|
3066
|
+
*/
|
|
3067
|
+
EnvParams?: string;
|
|
3068
|
+
/**
|
|
3069
|
+
* 最小副本数
|
|
3070
|
+
*/
|
|
3071
|
+
MinNum?: string;
|
|
3072
|
+
/**
|
|
3073
|
+
* 最大副本数
|
|
3074
|
+
*/
|
|
3075
|
+
MaxNum?: string;
|
|
3076
|
+
/**
|
|
3077
|
+
* 端口
|
|
3078
|
+
*/
|
|
3079
|
+
ContainerPort?: string;
|
|
3080
|
+
/**
|
|
3081
|
+
* 备注
|
|
3082
|
+
*/
|
|
3083
|
+
Remark?: string;
|
|
3084
|
+
/**
|
|
3085
|
+
* 日志采集路径
|
|
3086
|
+
*/
|
|
3087
|
+
CustomLogs?: string;
|
|
3088
|
+
/**
|
|
3089
|
+
* 是否重设备注
|
|
3090
|
+
*/
|
|
3091
|
+
IsResetRemark?: boolean;
|
|
3092
|
+
/**
|
|
3093
|
+
* 修改基础信息
|
|
3094
|
+
*/
|
|
3095
|
+
BasicModify?: boolean;
|
|
3096
|
+
/**
|
|
3097
|
+
* 操作备注
|
|
3098
|
+
*/
|
|
3099
|
+
OperatorRemark?: string;
|
|
3766
3100
|
}
|
|
3767
3101
|
/**
|
|
3768
3102
|
* EstablishWxGatewayRoute请求参数结构体
|
|
@@ -3811,24 +3145,6 @@ export interface UnfreezeCloudBaseRunServersResponse {
|
|
|
3811
3145
|
*/
|
|
3812
3146
|
RequestId?: string;
|
|
3813
3147
|
}
|
|
3814
|
-
/**
|
|
3815
|
-
* DescribeCloudBaseRunConfForGateWay返回参数结构体
|
|
3816
|
-
*/
|
|
3817
|
-
export interface DescribeCloudBaseRunConfForGateWayResponse {
|
|
3818
|
-
/**
|
|
3819
|
-
* 最近更新时间
|
|
3820
|
-
*/
|
|
3821
|
-
LastUpTime?: string;
|
|
3822
|
-
/**
|
|
3823
|
-
* 配置信息
|
|
3824
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3825
|
-
*/
|
|
3826
|
-
Data?: Array<CloudBaseRunForGatewayConf>;
|
|
3827
|
-
/**
|
|
3828
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3829
|
-
*/
|
|
3830
|
-
RequestId?: string;
|
|
3831
|
-
}
|
|
3832
3148
|
/**
|
|
3833
3149
|
* DescribeCbrServerVersion请求参数结构体
|
|
3834
3150
|
*/
|
|
@@ -3914,23 +3230,6 @@ export interface ExtensionFile {
|
|
|
3914
3230
|
*/
|
|
3915
3231
|
FileName: string;
|
|
3916
3232
|
}
|
|
3917
|
-
/**
|
|
3918
|
-
* TurnOffStandaloneGateway请求参数结构体
|
|
3919
|
-
*/
|
|
3920
|
-
export interface TurnOffStandaloneGatewayRequest {
|
|
3921
|
-
/**
|
|
3922
|
-
* 环境ID
|
|
3923
|
-
*/
|
|
3924
|
-
EnvId: string;
|
|
3925
|
-
/**
|
|
3926
|
-
* 网关名称
|
|
3927
|
-
*/
|
|
3928
|
-
GatewayName: string;
|
|
3929
|
-
/**
|
|
3930
|
-
* 服务名称列表
|
|
3931
|
-
*/
|
|
3932
|
-
ServiceNameList: Array<string>;
|
|
3933
|
-
}
|
|
3934
3233
|
/**
|
|
3935
3234
|
* DeleteGatewayVersion返回参数结构体
|
|
3936
3235
|
*/
|
|
@@ -4065,23 +3364,6 @@ export interface CloudBaseRunServerVersionItem {
|
|
|
4065
3364
|
*/
|
|
4066
3365
|
Architecture?: string;
|
|
4067
3366
|
}
|
|
4068
|
-
/**
|
|
4069
|
-
* 终端用户平台统计信息
|
|
4070
|
-
*/
|
|
4071
|
-
export interface PlatformStatistic {
|
|
4072
|
-
/**
|
|
4073
|
-
* 终端用户从属平台
|
|
4074
|
-
*/
|
|
4075
|
-
Platform?: string;
|
|
4076
|
-
/**
|
|
4077
|
-
* 平台终端用户数
|
|
4078
|
-
*/
|
|
4079
|
-
Count?: number;
|
|
4080
|
-
/**
|
|
4081
|
-
* 更新时间
|
|
4082
|
-
*/
|
|
4083
|
-
UpdateTime?: string;
|
|
4084
|
-
}
|
|
4085
3367
|
/**
|
|
4086
3368
|
* DeleteCloudBaseProjectLatestVersion请求参数结构体
|
|
4087
3369
|
*/
|
|
@@ -4134,42 +3416,21 @@ export interface DescribeWxGatewaysResponse {
|
|
|
4134
3416
|
RequestId?: string;
|
|
4135
3417
|
}
|
|
4136
3418
|
/**
|
|
4137
|
-
*
|
|
4138
|
-
*/
|
|
4139
|
-
export interface DescribeDownloadFileResponse {
|
|
4140
|
-
/**
|
|
4141
|
-
* 文件路径,该字段已废弃
|
|
4142
|
-
*/
|
|
4143
|
-
FilePath?: string;
|
|
4144
|
-
/**
|
|
4145
|
-
* 加密key,用于计算下载加密文件的header。参考SSE-C https://cloud.tencent.com/document/product/436/7728#sse-c
|
|
4146
|
-
*/
|
|
4147
|
-
CustomKey?: string;
|
|
4148
|
-
/**
|
|
4149
|
-
* 下载链接
|
|
4150
|
-
*/
|
|
4151
|
-
DownloadUrl?: string;
|
|
4152
|
-
/**
|
|
4153
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4154
|
-
*/
|
|
4155
|
-
RequestId?: string;
|
|
4156
|
-
}
|
|
4157
|
-
/**
|
|
4158
|
-
* 小租户网关套餐配置
|
|
3419
|
+
* DescribeGatewayVersions请求参数结构体
|
|
4159
3420
|
*/
|
|
4160
|
-
export interface
|
|
3421
|
+
export interface DescribeGatewayVersionsRequest {
|
|
4161
3422
|
/**
|
|
4162
|
-
*
|
|
3423
|
+
* 环境id
|
|
4163
3424
|
*/
|
|
4164
|
-
|
|
3425
|
+
EnvId: string;
|
|
4165
3426
|
/**
|
|
4166
|
-
*
|
|
3427
|
+
* 网关id
|
|
4167
3428
|
*/
|
|
4168
|
-
|
|
3429
|
+
GatewayId: string;
|
|
4169
3430
|
/**
|
|
4170
|
-
*
|
|
3431
|
+
* 版本名
|
|
4171
3432
|
*/
|
|
4172
|
-
|
|
3433
|
+
VersionName?: string;
|
|
4173
3434
|
}
|
|
4174
3435
|
/**
|
|
4175
3436
|
* nfs挂载资源
|
|
@@ -4209,19 +3470,6 @@ export interface DescribeSmsQuotasResponse {
|
|
|
4209
3470
|
*/
|
|
4210
3471
|
RequestId?: string;
|
|
4211
3472
|
}
|
|
4212
|
-
/**
|
|
4213
|
-
* DescribeWxCloudBaseRunEnvs请求参数结构体
|
|
4214
|
-
*/
|
|
4215
|
-
export interface DescribeWxCloudBaseRunEnvsRequest {
|
|
4216
|
-
/**
|
|
4217
|
-
* wx应用Id
|
|
4218
|
-
*/
|
|
4219
|
-
WxAppId?: string;
|
|
4220
|
-
/**
|
|
4221
|
-
* 是否查询全地域
|
|
4222
|
-
*/
|
|
4223
|
-
AllRegions?: boolean;
|
|
4224
|
-
}
|
|
4225
3473
|
/**
|
|
4226
3474
|
* 主机路径挂载参数
|
|
4227
3475
|
*/
|
|
@@ -4329,13 +3577,45 @@ export interface CloudBaseRunImageSecretInfo {
|
|
|
4329
3577
|
Email?: string;
|
|
4330
3578
|
}
|
|
4331
3579
|
/**
|
|
4332
|
-
*
|
|
3580
|
+
* DescribeCloudBaseRunServer返回参数结构体
|
|
4333
3581
|
*/
|
|
4334
|
-
export interface
|
|
3582
|
+
export interface DescribeCloudBaseRunServerResponse {
|
|
4335
3583
|
/**
|
|
4336
|
-
*
|
|
3584
|
+
* 个数
|
|
4337
3585
|
*/
|
|
4338
|
-
|
|
3586
|
+
TotalCount?: number;
|
|
3587
|
+
/**
|
|
3588
|
+
* 版本列表
|
|
3589
|
+
*/
|
|
3590
|
+
VersionItems?: Array<CloudBaseRunServerVersionItem>;
|
|
3591
|
+
/**
|
|
3592
|
+
* 服务名称
|
|
3593
|
+
*/
|
|
3594
|
+
ServerName?: string;
|
|
3595
|
+
/**
|
|
3596
|
+
* 是否对于外网开放
|
|
3597
|
+
*/
|
|
3598
|
+
IsPublic?: boolean;
|
|
3599
|
+
/**
|
|
3600
|
+
* 镜像仓库
|
|
3601
|
+
*/
|
|
3602
|
+
ImageRepo?: string;
|
|
3603
|
+
/**
|
|
3604
|
+
* 流量配置的类型(FLOW,URL_PARAMS)
|
|
3605
|
+
*/
|
|
3606
|
+
TrafficType?: string;
|
|
3607
|
+
/**
|
|
3608
|
+
* 服务创建类型,默认为空,一键部署为oneclick
|
|
3609
|
+
*/
|
|
3610
|
+
SourceType?: string;
|
|
3611
|
+
/**
|
|
3612
|
+
* 服务标签, function: 托管函数
|
|
3613
|
+
*/
|
|
3614
|
+
Tag?: string;
|
|
3615
|
+
/**
|
|
3616
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3617
|
+
*/
|
|
3618
|
+
RequestId?: string;
|
|
4339
3619
|
}
|
|
4340
3620
|
/**
|
|
4341
3621
|
* ModifyEnv返回参数结构体
|
|
@@ -4479,19 +3759,6 @@ export interface DescribeCbrServerVersionResponse {
|
|
|
4479
3759
|
*/
|
|
4480
3760
|
RequestId?: string;
|
|
4481
3761
|
}
|
|
4482
|
-
/**
|
|
4483
|
-
* CreateStandaloneGateway返回参数结构体
|
|
4484
|
-
*/
|
|
4485
|
-
export interface CreateStandaloneGatewayResponse {
|
|
4486
|
-
/**
|
|
4487
|
-
* 网关名称
|
|
4488
|
-
*/
|
|
4489
|
-
GatewayName: string;
|
|
4490
|
-
/**
|
|
4491
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4492
|
-
*/
|
|
4493
|
-
RequestId?: string;
|
|
4494
|
-
}
|
|
4495
3762
|
/**
|
|
4496
3763
|
* DescribeQuotaData请求参数结构体
|
|
4497
3764
|
*/
|
|
@@ -4709,31 +3976,6 @@ export interface FreequotaInfo {
|
|
|
4709
3976
|
*/
|
|
4710
3977
|
FreeQuotaType?: string;
|
|
4711
3978
|
}
|
|
4712
|
-
/**
|
|
4713
|
-
* pod信息
|
|
4714
|
-
*/
|
|
4715
|
-
export interface CloudBaseRunVersionPod {
|
|
4716
|
-
/**
|
|
4717
|
-
* webshell链接
|
|
4718
|
-
*/
|
|
4719
|
-
Webshell?: string;
|
|
4720
|
-
/**
|
|
4721
|
-
* pod name
|
|
4722
|
-
*/
|
|
4723
|
-
PodId?: string;
|
|
4724
|
-
/**
|
|
4725
|
-
* pod ip
|
|
4726
|
-
*/
|
|
4727
|
-
PodIp?: string;
|
|
4728
|
-
/**
|
|
4729
|
-
* 状态
|
|
4730
|
-
*/
|
|
4731
|
-
Status?: string;
|
|
4732
|
-
/**
|
|
4733
|
-
* 创建时间
|
|
4734
|
-
*/
|
|
4735
|
-
CreateTime?: string;
|
|
4736
|
-
}
|
|
4737
3979
|
/**
|
|
4738
3980
|
* DescribeUserActivityInfo返回参数结构体
|
|
4739
3981
|
*/
|
|
@@ -4793,10 +4035,18 @@ export interface ActivityRecordItem {
|
|
|
4793
4035
|
* 用户uin
|
|
4794
4036
|
*/
|
|
4795
4037
|
Uin?: string;
|
|
4038
|
+
/**
|
|
4039
|
+
* 环境ID
|
|
4040
|
+
*/
|
|
4041
|
+
EnvId?: string;
|
|
4796
4042
|
/**
|
|
4797
4043
|
* 活动id
|
|
4798
4044
|
*/
|
|
4799
4045
|
ActivityId?: number;
|
|
4046
|
+
/**
|
|
4047
|
+
* 活动名称(唯一英文标识)
|
|
4048
|
+
*/
|
|
4049
|
+
ActivityName?: string;
|
|
4800
4050
|
/**
|
|
4801
4051
|
* 自定义状态码
|
|
4802
4052
|
*/
|
|
@@ -4810,9 +4060,13 @@ export interface ActivityRecordItem {
|
|
|
4810
4060
|
*/
|
|
4811
4061
|
SubStatusInt?: number;
|
|
4812
4062
|
/**
|
|
4813
|
-
*
|
|
4063
|
+
* 是否已删除
|
|
4814
4064
|
*/
|
|
4815
4065
|
IsDeleted?: boolean;
|
|
4066
|
+
/**
|
|
4067
|
+
* 活动参与时间
|
|
4068
|
+
*/
|
|
4069
|
+
CreateTime?: string;
|
|
4816
4070
|
}
|
|
4817
4071
|
/**
|
|
4818
4072
|
* 合法域名
|
|
@@ -4880,35 +4134,6 @@ export interface DescribeCloudBaseProjectLatestVersionListRequest {
|
|
|
4880
4134
|
*/
|
|
4881
4135
|
CiId?: string;
|
|
4882
4136
|
}
|
|
4883
|
-
/**
|
|
4884
|
-
* 云日志服务相关信息
|
|
4885
|
-
*/
|
|
4886
|
-
export interface LogServiceInfo {
|
|
4887
|
-
/**
|
|
4888
|
-
* log名
|
|
4889
|
-
*/
|
|
4890
|
-
LogsetName?: string;
|
|
4891
|
-
/**
|
|
4892
|
-
* log-id
|
|
4893
|
-
*/
|
|
4894
|
-
LogsetId?: string;
|
|
4895
|
-
/**
|
|
4896
|
-
* topic名
|
|
4897
|
-
*/
|
|
4898
|
-
TopicName?: string;
|
|
4899
|
-
/**
|
|
4900
|
-
* topic-id
|
|
4901
|
-
*/
|
|
4902
|
-
TopicId?: string;
|
|
4903
|
-
/**
|
|
4904
|
-
* cls日志所属地域
|
|
4905
|
-
*/
|
|
4906
|
-
Region?: string;
|
|
4907
|
-
/**
|
|
4908
|
-
* topic保存时长 默认7天
|
|
4909
|
-
*/
|
|
4910
|
-
Period?: number;
|
|
4911
|
-
}
|
|
4912
4137
|
/**
|
|
4913
4138
|
* 安全网关版本路由信息限额配置
|
|
4914
4139
|
*/
|
|
@@ -4922,23 +4147,6 @@ export interface FrequencyLimitConfig {
|
|
|
4922
4147
|
*/
|
|
4923
4148
|
LimitConfig?: string;
|
|
4924
4149
|
}
|
|
4925
|
-
/**
|
|
4926
|
-
* DescribeEndUsers返回参数结构体
|
|
4927
|
-
*/
|
|
4928
|
-
export interface DescribeEndUsersResponse {
|
|
4929
|
-
/**
|
|
4930
|
-
* 用户总数
|
|
4931
|
-
*/
|
|
4932
|
-
Total?: number;
|
|
4933
|
-
/**
|
|
4934
|
-
* 用户列表
|
|
4935
|
-
*/
|
|
4936
|
-
Users?: Array<EndUserInfo>;
|
|
4937
|
-
/**
|
|
4938
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4939
|
-
*/
|
|
4940
|
-
RequestId?: string;
|
|
4941
|
-
}
|
|
4942
4150
|
/**
|
|
4943
4151
|
* DescribeHostingDomainTask返回参数结构体
|
|
4944
4152
|
*/
|
|
@@ -5033,24 +4241,7 @@ export interface EnvBillingInfoItem {
|
|
|
5033
4241
|
EnvActivated?: string;
|
|
5034
4242
|
}
|
|
5035
4243
|
/**
|
|
5036
|
-
*
|
|
5037
|
-
*/
|
|
5038
|
-
export interface DescribeEndUserStatisticResponse {
|
|
5039
|
-
/**
|
|
5040
|
-
* 终端用户各平台统计
|
|
5041
|
-
*/
|
|
5042
|
-
PlatformStatistics?: Array<PlatformStatistic>;
|
|
5043
|
-
/**
|
|
5044
|
-
* 终端用户总数
|
|
5045
|
-
*/
|
|
5046
|
-
TotalCount?: number;
|
|
5047
|
-
/**
|
|
5048
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5049
|
-
*/
|
|
5050
|
-
RequestId?: string;
|
|
5051
|
-
}
|
|
5052
|
-
/**
|
|
5053
|
-
* 安全网关路由
|
|
4244
|
+
* 安全网关路由
|
|
5054
4245
|
*/
|
|
5055
4246
|
export interface WxGatewayRountItem {
|
|
5056
4247
|
/**
|
|
@@ -5122,15 +4313,6 @@ export interface WxGatewayRountItem {
|
|
|
5122
4313
|
*/
|
|
5123
4314
|
CustomHeader?: CustomHeader;
|
|
5124
4315
|
}
|
|
5125
|
-
/**
|
|
5126
|
-
* DescribeSmsQuotas请求参数结构体
|
|
5127
|
-
*/
|
|
5128
|
-
export interface DescribeSmsQuotasRequest {
|
|
5129
|
-
/**
|
|
5130
|
-
* 环境ID
|
|
5131
|
-
*/
|
|
5132
|
-
EnvId: string;
|
|
5133
|
-
}
|
|
5134
4316
|
/**
|
|
5135
4317
|
* DescribeCloudBaseRunVersion返回参数结构体
|
|
5136
4318
|
*/
|
|
@@ -5359,65 +4541,7 @@ export interface CloudBaseCodeRepoDetail {
|
|
|
5359
4541
|
/**
|
|
5360
4542
|
* CheckTcbService请求参数结构体
|
|
5361
4543
|
*/
|
|
5362
|
-
export
|
|
5363
|
-
/**
|
|
5364
|
-
* DescribeCloudBaseRunVersionRsByCondition请求参数结构体
|
|
5365
|
-
*/
|
|
5366
|
-
export interface DescribeCloudBaseRunVersionRsByConditionRequest {
|
|
5367
|
-
/**
|
|
5368
|
-
* 环境ID;EnvId和ClusterId不能同时为空
|
|
5369
|
-
*/
|
|
5370
|
-
EnvId?: string;
|
|
5371
|
-
/**
|
|
5372
|
-
* 集群ID;EnvId和ClusterId不能同时为空
|
|
5373
|
-
*/
|
|
5374
|
-
ClusterId?: string;
|
|
5375
|
-
/**
|
|
5376
|
-
* 过滤网关服务开关
|
|
5377
|
-
*/
|
|
5378
|
-
FilterGwSwitch?: boolean;
|
|
5379
|
-
}
|
|
5380
|
-
/**
|
|
5381
|
-
* DescribeCloudBaseRunServer返回参数结构体
|
|
5382
|
-
*/
|
|
5383
|
-
export interface DescribeCloudBaseRunServerResponse {
|
|
5384
|
-
/**
|
|
5385
|
-
* 个数
|
|
5386
|
-
*/
|
|
5387
|
-
TotalCount?: number;
|
|
5388
|
-
/**
|
|
5389
|
-
* 版本列表
|
|
5390
|
-
*/
|
|
5391
|
-
VersionItems?: Array<CloudBaseRunServerVersionItem>;
|
|
5392
|
-
/**
|
|
5393
|
-
* 服务名称
|
|
5394
|
-
*/
|
|
5395
|
-
ServerName?: string;
|
|
5396
|
-
/**
|
|
5397
|
-
* 是否对于外网开放
|
|
5398
|
-
*/
|
|
5399
|
-
IsPublic?: boolean;
|
|
5400
|
-
/**
|
|
5401
|
-
* 镜像仓库
|
|
5402
|
-
*/
|
|
5403
|
-
ImageRepo?: string;
|
|
5404
|
-
/**
|
|
5405
|
-
* 流量配置的类型(FLOW,URL_PARAMS)
|
|
5406
|
-
*/
|
|
5407
|
-
TrafficType?: string;
|
|
5408
|
-
/**
|
|
5409
|
-
* 服务创建类型,默认为空,一键部署为oneclick
|
|
5410
|
-
*/
|
|
5411
|
-
SourceType?: string;
|
|
5412
|
-
/**
|
|
5413
|
-
* 服务标签, function: 托管函数
|
|
5414
|
-
*/
|
|
5415
|
-
Tag?: string;
|
|
5416
|
-
/**
|
|
5417
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5418
|
-
*/
|
|
5419
|
-
RequestId?: string;
|
|
5420
|
-
}
|
|
4544
|
+
export type CheckTcbServiceRequest = null;
|
|
5421
4545
|
/**
|
|
5422
4546
|
* DescribeUserActivityInfo请求参数结构体
|
|
5423
4547
|
*/
|
|
@@ -5465,39 +4589,6 @@ export interface DescribeCloudBaseRunVersionSnapshotResponse {
|
|
|
5465
4589
|
*/
|
|
5466
4590
|
RequestId?: string;
|
|
5467
4591
|
}
|
|
5468
|
-
/**
|
|
5469
|
-
* DescribeCloudBaseRunPodList请求参数结构体
|
|
5470
|
-
*/
|
|
5471
|
-
export interface DescribeCloudBaseRunPodListRequest {
|
|
5472
|
-
/**
|
|
5473
|
-
* 环境id
|
|
5474
|
-
*/
|
|
5475
|
-
EnvId: string;
|
|
5476
|
-
/**
|
|
5477
|
-
* 服务名
|
|
5478
|
-
*/
|
|
5479
|
-
ServerName: string;
|
|
5480
|
-
/**
|
|
5481
|
-
* 版本名
|
|
5482
|
-
*/
|
|
5483
|
-
VersionName: string;
|
|
5484
|
-
/**
|
|
5485
|
-
* 分页限制
|
|
5486
|
-
*/
|
|
5487
|
-
Limit?: number;
|
|
5488
|
-
/**
|
|
5489
|
-
* 分页偏移量
|
|
5490
|
-
*/
|
|
5491
|
-
Offset?: number;
|
|
5492
|
-
/**
|
|
5493
|
-
* 容器状态
|
|
5494
|
-
*/
|
|
5495
|
-
Status?: string;
|
|
5496
|
-
/**
|
|
5497
|
-
* 容器名
|
|
5498
|
-
*/
|
|
5499
|
-
PodName?: string;
|
|
5500
|
-
}
|
|
5501
4592
|
/**
|
|
5502
4593
|
* CreateCloudBaseRunResource请求参数结构体
|
|
5503
4594
|
*/
|
|
@@ -5515,15 +4606,6 @@ export interface CreateCloudBaseRunResourceRequest {
|
|
|
5515
4606
|
*/
|
|
5516
4607
|
SubnetIds?: Array<string>;
|
|
5517
4608
|
}
|
|
5518
|
-
/**
|
|
5519
|
-
* ModifyEndUser返回参数结构体
|
|
5520
|
-
*/
|
|
5521
|
-
export interface ModifyEndUserResponse {
|
|
5522
|
-
/**
|
|
5523
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5524
|
-
*/
|
|
5525
|
-
RequestId?: string;
|
|
5526
|
-
}
|
|
5527
4609
|
/**
|
|
5528
4610
|
* DescribeAuthDomains请求参数结构体
|
|
5529
4611
|
*/
|
|
@@ -5584,63 +4666,6 @@ export interface CloudRunServiceVolume {
|
|
|
5584
4666
|
*/
|
|
5585
4667
|
HostPath?: CloudBaseRunServiceVolumeHostPath;
|
|
5586
4668
|
}
|
|
5587
|
-
/**
|
|
5588
|
-
* 独立网关云托管服务配置信息
|
|
5589
|
-
*/
|
|
5590
|
-
export interface CloudBaseRunForGatewayConf {
|
|
5591
|
-
/**
|
|
5592
|
-
* 是否缩容到0
|
|
5593
|
-
*/
|
|
5594
|
-
IsZero: boolean;
|
|
5595
|
-
/**
|
|
5596
|
-
* 按百分比灰度的权重
|
|
5597
|
-
*/
|
|
5598
|
-
Weight: number;
|
|
5599
|
-
/**
|
|
5600
|
-
* 按请求/header参数的灰度Key
|
|
5601
|
-
*/
|
|
5602
|
-
GrayKey: string;
|
|
5603
|
-
/**
|
|
5604
|
-
* 按请求/header参数的灰度Value
|
|
5605
|
-
*/
|
|
5606
|
-
GrayValue: string;
|
|
5607
|
-
/**
|
|
5608
|
-
* 是否为默认版本(按请求/header参数)
|
|
5609
|
-
*/
|
|
5610
|
-
IsDefault: boolean;
|
|
5611
|
-
/**
|
|
5612
|
-
* 访问权限,对应二进制分多段,vpc内网|公网|oa
|
|
5613
|
-
*/
|
|
5614
|
-
AccessType: number;
|
|
5615
|
-
/**
|
|
5616
|
-
* 访问的URL(域名+路径)列表
|
|
5617
|
-
*/
|
|
5618
|
-
URLs: Array<string>;
|
|
5619
|
-
/**
|
|
5620
|
-
* 环境ID
|
|
5621
|
-
*/
|
|
5622
|
-
EnvId?: string;
|
|
5623
|
-
/**
|
|
5624
|
-
* 服务名称
|
|
5625
|
-
*/
|
|
5626
|
-
ServerName?: string;
|
|
5627
|
-
/**
|
|
5628
|
-
* 版本名称
|
|
5629
|
-
*/
|
|
5630
|
-
VersionName?: string;
|
|
5631
|
-
/**
|
|
5632
|
-
* 灰度类型:FLOW(权重), URL_PARAMS/HEAD_PARAMS
|
|
5633
|
-
*/
|
|
5634
|
-
GrayType?: string;
|
|
5635
|
-
/**
|
|
5636
|
-
* CLB的IP:Port
|
|
5637
|
-
*/
|
|
5638
|
-
LbAddr?: string;
|
|
5639
|
-
/**
|
|
5640
|
-
* 0:http访问服务配置信息, 1: 服务域名
|
|
5641
|
-
*/
|
|
5642
|
-
ConfigType?: number;
|
|
5643
|
-
}
|
|
5644
4669
|
/**
|
|
5645
4670
|
* 网关信息
|
|
5646
4671
|
*/
|
|
@@ -6022,19 +5047,6 @@ export interface DescribeExtensionUploadInfoResponse {
|
|
|
6022
5047
|
*/
|
|
6023
5048
|
RequestId?: string;
|
|
6024
5049
|
}
|
|
6025
|
-
/**
|
|
6026
|
-
* TurnOnStandaloneGateway返回参数结构体
|
|
6027
|
-
*/
|
|
6028
|
-
export interface TurnOnStandaloneGatewayResponse {
|
|
6029
|
-
/**
|
|
6030
|
-
* 小租户网关开启状态
|
|
6031
|
-
*/
|
|
6032
|
-
Status: string;
|
|
6033
|
-
/**
|
|
6034
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6035
|
-
*/
|
|
6036
|
-
RequestId?: string;
|
|
6037
|
-
}
|
|
6038
5050
|
/**
|
|
6039
5051
|
* ModifyEnv请求参数结构体
|
|
6040
5052
|
*/
|
|
@@ -6105,38 +5117,6 @@ export interface DescribePostpayPackageFreeQuotasResponse {
|
|
|
6105
5117
|
*/
|
|
6106
5118
|
RequestId?: string;
|
|
6107
5119
|
}
|
|
6108
|
-
/**
|
|
6109
|
-
* 一键部署步骤信息
|
|
6110
|
-
*/
|
|
6111
|
-
export interface OneClickTaskStepInfo {
|
|
6112
|
-
/**
|
|
6113
|
-
* 未启动:"todo"
|
|
6114
|
-
运行中:"running"
|
|
6115
|
-
失败:"failed"
|
|
6116
|
-
成功结束:"finished"
|
|
6117
|
-
*/
|
|
6118
|
-
Status?: string;
|
|
6119
|
-
/**
|
|
6120
|
-
* 开始时间
|
|
6121
|
-
*/
|
|
6122
|
-
StartTime?: string;
|
|
6123
|
-
/**
|
|
6124
|
-
* 结束时间
|
|
6125
|
-
*/
|
|
6126
|
-
EndTime?: string;
|
|
6127
|
-
/**
|
|
6128
|
-
* 耗时:秒
|
|
6129
|
-
*/
|
|
6130
|
-
CostTime?: number;
|
|
6131
|
-
/**
|
|
6132
|
-
* 失败原因
|
|
6133
|
-
*/
|
|
6134
|
-
FailReason?: string;
|
|
6135
|
-
/**
|
|
6136
|
-
* 步骤名
|
|
6137
|
-
*/
|
|
6138
|
-
Name?: string;
|
|
6139
|
-
}
|
|
6140
5120
|
/**
|
|
6141
5121
|
* DescribeExtraPkgBillingInfo返回参数结构体
|
|
6142
5122
|
*/
|
|
@@ -6167,198 +5147,3 @@ export interface CloudBaseCodeRepoName {
|
|
|
6167
5147
|
*/
|
|
6168
5148
|
FullName?: string;
|
|
6169
5149
|
}
|
|
6170
|
-
/**
|
|
6171
|
-
* ModifyCloudBaseRunServerVersion请求参数结构体
|
|
6172
|
-
*/
|
|
6173
|
-
export interface ModifyCloudBaseRunServerVersionRequest {
|
|
6174
|
-
/**
|
|
6175
|
-
* 环境ID
|
|
6176
|
-
*/
|
|
6177
|
-
EnvId: string;
|
|
6178
|
-
/**
|
|
6179
|
-
* 服务名称
|
|
6180
|
-
*/
|
|
6181
|
-
ServerName: string;
|
|
6182
|
-
/**
|
|
6183
|
-
* 版本名称
|
|
6184
|
-
*/
|
|
6185
|
-
VersionName: string;
|
|
6186
|
-
/**
|
|
6187
|
-
* 环境变量
|
|
6188
|
-
*/
|
|
6189
|
-
EnvParams?: string;
|
|
6190
|
-
/**
|
|
6191
|
-
* 最小副本数
|
|
6192
|
-
*/
|
|
6193
|
-
MinNum?: string;
|
|
6194
|
-
/**
|
|
6195
|
-
* 最大副本数
|
|
6196
|
-
*/
|
|
6197
|
-
MaxNum?: string;
|
|
6198
|
-
/**
|
|
6199
|
-
* 端口
|
|
6200
|
-
*/
|
|
6201
|
-
ContainerPort?: string;
|
|
6202
|
-
/**
|
|
6203
|
-
* 备注
|
|
6204
|
-
*/
|
|
6205
|
-
Remark?: string;
|
|
6206
|
-
/**
|
|
6207
|
-
* 日志采集路径
|
|
6208
|
-
*/
|
|
6209
|
-
CustomLogs?: string;
|
|
6210
|
-
/**
|
|
6211
|
-
* 是否重设备注
|
|
6212
|
-
*/
|
|
6213
|
-
IsResetRemark?: boolean;
|
|
6214
|
-
/**
|
|
6215
|
-
* 修改基础信息
|
|
6216
|
-
*/
|
|
6217
|
-
BasicModify?: boolean;
|
|
6218
|
-
/**
|
|
6219
|
-
* 操作备注
|
|
6220
|
-
*/
|
|
6221
|
-
OperatorRemark?: string;
|
|
6222
|
-
}
|
|
6223
|
-
/**
|
|
6224
|
-
* RollUpdateCloudBaseRunServerVersion请求参数结构体
|
|
6225
|
-
*/
|
|
6226
|
-
export interface RollUpdateCloudBaseRunServerVersionRequest {
|
|
6227
|
-
/**
|
|
6228
|
-
* 环境ID
|
|
6229
|
-
*/
|
|
6230
|
-
EnvId: string;
|
|
6231
|
-
/**
|
|
6232
|
-
* 要替换的版本名称,可以为latest
|
|
6233
|
-
*/
|
|
6234
|
-
VersionName: string;
|
|
6235
|
-
/**
|
|
6236
|
-
* 枚举(package/repository/image)
|
|
6237
|
-
*/
|
|
6238
|
-
UploadType?: string;
|
|
6239
|
-
/**
|
|
6240
|
-
* repository的类型(coding/gitlab/github)
|
|
6241
|
-
*/
|
|
6242
|
-
RepositoryType?: string;
|
|
6243
|
-
/**
|
|
6244
|
-
* 流量占比
|
|
6245
|
-
*/
|
|
6246
|
-
FlowRatio?: number;
|
|
6247
|
-
/**
|
|
6248
|
-
* dockerfile地址
|
|
6249
|
-
*/
|
|
6250
|
-
DockerfilePath?: string;
|
|
6251
|
-
/**
|
|
6252
|
-
* 构建目录
|
|
6253
|
-
*/
|
|
6254
|
-
BuildDir?: string;
|
|
6255
|
-
/**
|
|
6256
|
-
* Cpu的大小,单位:核
|
|
6257
|
-
*/
|
|
6258
|
-
Cpu?: string;
|
|
6259
|
-
/**
|
|
6260
|
-
* Mem的大小,单位:G
|
|
6261
|
-
*/
|
|
6262
|
-
Mem?: string;
|
|
6263
|
-
/**
|
|
6264
|
-
* 最小副本数,最小值:0
|
|
6265
|
-
*/
|
|
6266
|
-
MinNum?: string;
|
|
6267
|
-
/**
|
|
6268
|
-
* 最大副本数
|
|
6269
|
-
*/
|
|
6270
|
-
MaxNum?: string;
|
|
6271
|
-
/**
|
|
6272
|
-
* 策略类型
|
|
6273
|
-
cpu/mem
|
|
6274
|
-
*/
|
|
6275
|
-
PolicyType?: string;
|
|
6276
|
-
/**
|
|
6277
|
-
* 策略阈值
|
|
6278
|
-
*/
|
|
6279
|
-
PolicyThreshold?: string;
|
|
6280
|
-
/**
|
|
6281
|
-
* 环境变量
|
|
6282
|
-
*/
|
|
6283
|
-
EnvParams?: string;
|
|
6284
|
-
/**
|
|
6285
|
-
* 容器端口
|
|
6286
|
-
*/
|
|
6287
|
-
ContainerPort?: number;
|
|
6288
|
-
/**
|
|
6289
|
-
* 服务名称
|
|
6290
|
-
*/
|
|
6291
|
-
ServerName?: string;
|
|
6292
|
-
/**
|
|
6293
|
-
* repository地址
|
|
6294
|
-
*/
|
|
6295
|
-
Repository?: string;
|
|
6296
|
-
/**
|
|
6297
|
-
* 分支
|
|
6298
|
-
*/
|
|
6299
|
-
Branch?: string;
|
|
6300
|
-
/**
|
|
6301
|
-
* 版本备注
|
|
6302
|
-
*/
|
|
6303
|
-
VersionRemark?: string;
|
|
6304
|
-
/**
|
|
6305
|
-
* 代码包名字
|
|
6306
|
-
*/
|
|
6307
|
-
PackageName?: string;
|
|
6308
|
-
/**
|
|
6309
|
-
* 代码包版本
|
|
6310
|
-
*/
|
|
6311
|
-
PackageVersion?: string;
|
|
6312
|
-
/**
|
|
6313
|
-
* Image的详情
|
|
6314
|
-
*/
|
|
6315
|
-
ImageInfo?: CloudBaseRunImageInfo;
|
|
6316
|
-
/**
|
|
6317
|
-
* Github等拉取代码的详情
|
|
6318
|
-
*/
|
|
6319
|
-
CodeDetail?: CloudBaseCodeRepoDetail;
|
|
6320
|
-
/**
|
|
6321
|
-
* 是否回放流量
|
|
6322
|
-
*/
|
|
6323
|
-
IsRebuild?: boolean;
|
|
6324
|
-
/**
|
|
6325
|
-
* 延迟多长时间开始健康检查(单位s)
|
|
6326
|
-
*/
|
|
6327
|
-
InitialDelaySeconds?: number;
|
|
6328
|
-
/**
|
|
6329
|
-
* cfs挂载信息
|
|
6330
|
-
*/
|
|
6331
|
-
MountVolumeInfo?: Array<CloudBaseRunVolumeMount>;
|
|
6332
|
-
/**
|
|
6333
|
-
* 是否回滚
|
|
6334
|
-
*/
|
|
6335
|
-
Rollback?: boolean;
|
|
6336
|
-
/**
|
|
6337
|
-
* 版本历史名
|
|
6338
|
-
*/
|
|
6339
|
-
SnapshotName?: string;
|
|
6340
|
-
/**
|
|
6341
|
-
* 自定义采集路径
|
|
6342
|
-
*/
|
|
6343
|
-
CustomLogs?: string;
|
|
6344
|
-
/**
|
|
6345
|
-
* 是否启用统一域名
|
|
6346
|
-
*/
|
|
6347
|
-
EnableUnion?: boolean;
|
|
6348
|
-
/**
|
|
6349
|
-
* 操作备注
|
|
6350
|
-
*/
|
|
6351
|
-
OperatorRemark?: string;
|
|
6352
|
-
/**
|
|
6353
|
-
* 服务路径(只会第一次生效)
|
|
6354
|
-
*/
|
|
6355
|
-
ServerPath?: string;
|
|
6356
|
-
/**
|
|
6357
|
-
* 是否更新Cls
|
|
6358
|
-
*/
|
|
6359
|
-
IsUpdateCls?: boolean;
|
|
6360
|
-
/**
|
|
6361
|
-
* 自动扩缩容策略组
|
|
6362
|
-
*/
|
|
6363
|
-
PolicyDetail?: Array<HpaPolicy>;
|
|
6364
|
-
}
|