tencentcloud-sdk-nodejs-tcb 4.1.108 → 4.1.157
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 +145 -178
- 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 +154 -198
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +227 -293
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +137 -645
|
@@ -197,9 +197,34 @@ export interface CbrPackageInfo {
|
|
|
197
197
|
PackageVersion?: string;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
|
-
*
|
|
200
|
+
* 后付费计费详情
|
|
201
201
|
*/
|
|
202
|
-
export
|
|
202
|
+
export interface PostPaidEnvDeductInfo {
|
|
203
|
+
/**
|
|
204
|
+
* 资源方
|
|
205
|
+
*/
|
|
206
|
+
ResourceType?: string;
|
|
207
|
+
/**
|
|
208
|
+
* 指标名
|
|
209
|
+
*/
|
|
210
|
+
MetricName?: string;
|
|
211
|
+
/**
|
|
212
|
+
* 按量计费详情
|
|
213
|
+
*/
|
|
214
|
+
ResQuota?: number;
|
|
215
|
+
/**
|
|
216
|
+
* 资源包抵扣详情
|
|
217
|
+
*/
|
|
218
|
+
PkgQuota?: number;
|
|
219
|
+
/**
|
|
220
|
+
* 免费额度抵扣详情
|
|
221
|
+
*/
|
|
222
|
+
FreeQuota?: number;
|
|
223
|
+
/**
|
|
224
|
+
* 环境id
|
|
225
|
+
*/
|
|
226
|
+
EnvId?: string;
|
|
227
|
+
}
|
|
203
228
|
/**
|
|
204
229
|
* DescribeEnvDealRegion返回参数结构体
|
|
205
230
|
*/
|
|
@@ -281,59 +306,6 @@ export interface ModifyClsTopicResponse {
|
|
|
281
306
|
*/
|
|
282
307
|
RequestId?: string;
|
|
283
308
|
}
|
|
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
309
|
/**
|
|
338
310
|
* EditAuthConfig返回参数结构体
|
|
339
311
|
*/
|
|
@@ -397,36 +369,6 @@ export interface CommonServiceAPIResponse {
|
|
|
397
369
|
*/
|
|
398
370
|
RequestId?: string;
|
|
399
371
|
}
|
|
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
372
|
/**
|
|
431
373
|
* DescribeGraphData返回参数结构体
|
|
432
374
|
*/
|
|
@@ -474,20 +416,9 @@ export interface DescribePostpayPackageFreeQuotasRequest {
|
|
|
474
416
|
FreeQuotaType?: string;
|
|
475
417
|
}
|
|
476
418
|
/**
|
|
477
|
-
*
|
|
419
|
+
* DescribeEnvLimit请求参数结构体
|
|
478
420
|
*/
|
|
479
|
-
export
|
|
480
|
-
/**
|
|
481
|
-
* 环境id
|
|
482
|
-
*/
|
|
483
|
-
EnvId: string;
|
|
484
|
-
/**
|
|
485
|
-
* 终端用户来源
|
|
486
|
-
<li> qcloud </li>
|
|
487
|
-
<li>miniapp</li>
|
|
488
|
-
*/
|
|
489
|
-
Source?: string;
|
|
490
|
-
}
|
|
421
|
+
export type DescribeEnvLimitRequest = null;
|
|
491
422
|
/**
|
|
492
423
|
* DescribeCloudBaseBuildService返回参数结构体
|
|
493
424
|
*/
|
|
@@ -525,27 +456,6 @@ export interface DescribeCloudBaseBuildServiceResponse {
|
|
|
525
456
|
*/
|
|
526
457
|
RequestId?: string;
|
|
527
458
|
}
|
|
528
|
-
/**
|
|
529
|
-
* DescribeEndUsers请求参数结构体
|
|
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
459
|
/**
|
|
550
460
|
* DescribeCloudBaseRunPodList返回参数结构体
|
|
551
461
|
*/
|
|
@@ -634,23 +544,6 @@ export interface LogResObject {
|
|
|
634
544
|
*/
|
|
635
545
|
AnalysisRecords?: Array<string>;
|
|
636
546
|
}
|
|
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
547
|
/**
|
|
655
548
|
* CloudRunServiceSimpleVersionSnapshot 信息
|
|
656
549
|
*/
|
|
@@ -807,23 +700,6 @@ export interface DescribeSpecialCostItemsRequest {
|
|
|
807
700
|
*/
|
|
808
701
|
EndTime?: string;
|
|
809
702
|
}
|
|
810
|
-
/**
|
|
811
|
-
* TurnOnStandaloneGateway请求参数结构体
|
|
812
|
-
*/
|
|
813
|
-
export interface TurnOnStandaloneGatewayRequest {
|
|
814
|
-
/**
|
|
815
|
-
* 环境ID
|
|
816
|
-
*/
|
|
817
|
-
EnvId: string;
|
|
818
|
-
/**
|
|
819
|
-
* 网关名称
|
|
820
|
-
*/
|
|
821
|
-
GatewayName: string;
|
|
822
|
-
/**
|
|
823
|
-
* 服务名称列表
|
|
824
|
-
*/
|
|
825
|
-
ServiceNameList: Array<string>;
|
|
826
|
-
}
|
|
827
703
|
/**
|
|
828
704
|
* CreatePostpayPackage请求参数结构体
|
|
829
705
|
*/
|
|
@@ -896,25 +772,6 @@ export interface DescribeWxCloudBaseRunSubNetsRequest {
|
|
|
896
772
|
*/
|
|
897
773
|
Limit?: number;
|
|
898
774
|
}
|
|
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
775
|
/**
|
|
919
776
|
* DescribeCurveData返回参数结构体
|
|
920
777
|
*/
|
|
@@ -1118,23 +975,6 @@ export interface ModifyClsTopicRequest {
|
|
|
1118
975
|
*/
|
|
1119
976
|
Period?: number;
|
|
1120
977
|
}
|
|
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
978
|
/**
|
|
1139
979
|
* DescribeWxCloudBaseRunEnvs返回参数结构体
|
|
1140
980
|
*/
|
|
@@ -1243,17 +1083,21 @@ export interface CloudBaseRunVolumeMount {
|
|
|
1243
1083
|
MountPropagation?: string;
|
|
1244
1084
|
}
|
|
1245
1085
|
/**
|
|
1246
|
-
*
|
|
1086
|
+
* CreatePostpayPackage返回参数结构体
|
|
1247
1087
|
*/
|
|
1248
|
-
export interface
|
|
1088
|
+
export interface CreatePostpayPackageResponse {
|
|
1249
1089
|
/**
|
|
1250
|
-
*
|
|
1090
|
+
* 后付费订单号
|
|
1251
1091
|
*/
|
|
1252
|
-
|
|
1092
|
+
TranId?: string;
|
|
1253
1093
|
/**
|
|
1254
|
-
*
|
|
1094
|
+
* 环境ID
|
|
1255
1095
|
*/
|
|
1256
|
-
|
|
1096
|
+
EnvId?: string;
|
|
1097
|
+
/**
|
|
1098
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1099
|
+
*/
|
|
1100
|
+
RequestId?: string;
|
|
1257
1101
|
}
|
|
1258
1102
|
/**
|
|
1259
1103
|
* DescribePostpayFreeQuotas请求参数结构体
|
|
@@ -1323,17 +1167,25 @@ export interface CloudBaseRunImageInfo {
|
|
|
1323
1167
|
ImageUrl: string;
|
|
1324
1168
|
}
|
|
1325
1169
|
/**
|
|
1326
|
-
*
|
|
1170
|
+
* ModifyDatabaseACL请求参数结构体
|
|
1327
1171
|
*/
|
|
1328
|
-
export interface
|
|
1172
|
+
export interface ModifyDatabaseACLRequest {
|
|
1329
1173
|
/**
|
|
1330
|
-
*
|
|
1174
|
+
* 环境ID
|
|
1331
1175
|
*/
|
|
1332
|
-
|
|
1176
|
+
EnvId: string;
|
|
1333
1177
|
/**
|
|
1334
|
-
*
|
|
1178
|
+
* 集合名称
|
|
1335
1179
|
*/
|
|
1336
|
-
|
|
1180
|
+
CollectionName: string;
|
|
1181
|
+
/**
|
|
1182
|
+
* 权限标签。包含以下取值:
|
|
1183
|
+
<li> READONLY:所有用户可读,仅创建者和管理员可写</li>
|
|
1184
|
+
<li> PRIVATE:仅创建者及管理员可读写</li>
|
|
1185
|
+
<li> ADMINWRITE:所有用户可读,仅管理员可写</li>
|
|
1186
|
+
<li> ADMINONLY:仅管理员可读写</li>
|
|
1187
|
+
*/
|
|
1188
|
+
AclTag: string;
|
|
1337
1189
|
}
|
|
1338
1190
|
/**
|
|
1339
1191
|
* DescribeCloudBaseRunServerVersion返回参数结构体
|
|
@@ -1503,67 +1355,6 @@ export interface DescribeCloudBaseRunServerVersionResponse {
|
|
|
1503
1355
|
*/
|
|
1504
1356
|
RequestId?: string;
|
|
1505
1357
|
}
|
|
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
1358
|
/**
|
|
1568
1359
|
* DescribeGatewayVersions返回参数结构体
|
|
1569
1360
|
*/
|
|
@@ -1603,17 +1394,13 @@ export interface DescribeGatewayVersionsRequest {
|
|
|
1603
1394
|
VersionName?: string;
|
|
1604
1395
|
}
|
|
1605
1396
|
/**
|
|
1606
|
-
*
|
|
1397
|
+
* DescribeSmsQuotas请求参数结构体
|
|
1607
1398
|
*/
|
|
1608
|
-
export interface
|
|
1399
|
+
export interface DescribeSmsQuotasRequest {
|
|
1609
1400
|
/**
|
|
1610
1401
|
* 环境ID
|
|
1611
1402
|
*/
|
|
1612
1403
|
EnvId: string;
|
|
1613
|
-
/**
|
|
1614
|
-
* 用户列表,每一项都是uuid
|
|
1615
|
-
*/
|
|
1616
|
-
UserList: Array<string>;
|
|
1617
1404
|
}
|
|
1618
1405
|
/**
|
|
1619
1406
|
* DescribeHostingDomainTask请求参数结构体
|
|
@@ -2077,27 +1864,6 @@ export interface CreateAuthDomainResponse {
|
|
|
2077
1864
|
*/
|
|
2078
1865
|
RequestId?: string;
|
|
2079
1866
|
}
|
|
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
1867
|
/**
|
|
2102
1868
|
* DescribeEnvs请求参数结构体
|
|
2103
1869
|
*/
|
|
@@ -2250,40 +2016,6 @@ export interface CloudBaseCapabilities {
|
|
|
2250
2016
|
*/
|
|
2251
2017
|
Drop?: Array<string>;
|
|
2252
2018
|
}
|
|
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
2019
|
/**
|
|
2288
2020
|
* DescribeExtensionUploadInfo请求参数结构体
|
|
2289
2021
|
*/
|
|
@@ -2328,23 +2060,6 @@ export interface CreateCloudBaseRunResourceResponse {
|
|
|
2328
2060
|
*/
|
|
2329
2061
|
RequestId?: string;
|
|
2330
2062
|
}
|
|
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
2063
|
/**
|
|
2349
2064
|
* CLS日志单条信息
|
|
2350
2065
|
*/
|
|
@@ -2388,9 +2103,41 @@ export interface DestroyStaticStoreResponse {
|
|
|
2388
2103
|
RequestId?: string;
|
|
2389
2104
|
}
|
|
2390
2105
|
/**
|
|
2391
|
-
*
|
|
2106
|
+
* DescribeCloudBaseRunServer返回参数结构体
|
|
2392
2107
|
*/
|
|
2393
|
-
export interface
|
|
2108
|
+
export interface DescribeCloudBaseRunServerResponse {
|
|
2109
|
+
/**
|
|
2110
|
+
* 个数
|
|
2111
|
+
*/
|
|
2112
|
+
TotalCount?: number;
|
|
2113
|
+
/**
|
|
2114
|
+
* 版本列表
|
|
2115
|
+
*/
|
|
2116
|
+
VersionItems?: Array<CloudBaseRunServerVersionItem>;
|
|
2117
|
+
/**
|
|
2118
|
+
* 服务名称
|
|
2119
|
+
*/
|
|
2120
|
+
ServerName?: string;
|
|
2121
|
+
/**
|
|
2122
|
+
* 是否对于外网开放
|
|
2123
|
+
*/
|
|
2124
|
+
IsPublic?: boolean;
|
|
2125
|
+
/**
|
|
2126
|
+
* 镜像仓库
|
|
2127
|
+
*/
|
|
2128
|
+
ImageRepo?: string;
|
|
2129
|
+
/**
|
|
2130
|
+
* 流量配置的类型(FLOW,URL_PARAMS)
|
|
2131
|
+
*/
|
|
2132
|
+
TrafficType?: string;
|
|
2133
|
+
/**
|
|
2134
|
+
* 服务创建类型,默认为空,一键部署为oneclick
|
|
2135
|
+
*/
|
|
2136
|
+
SourceType?: string;
|
|
2137
|
+
/**
|
|
2138
|
+
* 服务标签, function: 托管函数
|
|
2139
|
+
*/
|
|
2140
|
+
Tag?: string;
|
|
2394
2141
|
/**
|
|
2395
2142
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2396
2143
|
*/
|
|
@@ -2434,38 +2181,9 @@ export interface CloudBaseEsInfo {
|
|
|
2434
2181
|
*/
|
|
2435
2182
|
Account?: string;
|
|
2436
2183
|
/**
|
|
2437
|
-
* 密码
|
|
2438
|
-
*/
|
|
2439
|
-
Password?: string;
|
|
2440
|
-
}
|
|
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
|
|
2184
|
+
* 密码
|
|
2467
2185
|
*/
|
|
2468
|
-
|
|
2186
|
+
Password?: string;
|
|
2469
2187
|
}
|
|
2470
2188
|
/**
|
|
2471
2189
|
* ModifyCloudBaseRunServerFlowConf返回参数结构体
|
|
@@ -2806,19 +2524,6 @@ export interface DescribeCloudBaseRunOneClickTaskExternalResponse {
|
|
|
2806
2524
|
*/
|
|
2807
2525
|
RequestId?: string;
|
|
2808
2526
|
}
|
|
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
2527
|
/**
|
|
2823
2528
|
* DescribeEnvs返回参数结构体
|
|
2824
2529
|
*/
|
|
@@ -3148,27 +2853,6 @@ export interface CreateCloudBaseRunServerVersionRequest {
|
|
|
3148
2853
|
*/
|
|
3149
2854
|
PolicyDetail?: Array<HpaPolicy>;
|
|
3150
2855
|
}
|
|
3151
|
-
/**
|
|
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
2856
|
/**
|
|
3173
2857
|
* DescribeCloudBaseRunServerDomainName请求参数结构体
|
|
3174
2858
|
*/
|
|
@@ -3200,21 +2884,25 @@ export interface DescribeCloudBaseRunAllVpcsRequest {
|
|
|
3200
2884
|
EnvId: string;
|
|
3201
2885
|
}
|
|
3202
2886
|
/**
|
|
3203
|
-
*
|
|
2887
|
+
* 仓库信息
|
|
3204
2888
|
*/
|
|
3205
|
-
export interface
|
|
2889
|
+
export interface CbrRepoInfo {
|
|
3206
2890
|
/**
|
|
3207
|
-
*
|
|
2891
|
+
* 仓库名称
|
|
3208
2892
|
*/
|
|
3209
|
-
|
|
2893
|
+
Repo?: string;
|
|
3210
2894
|
/**
|
|
3211
|
-
*
|
|
2895
|
+
* 仓库平台
|
|
3212
2896
|
*/
|
|
3213
|
-
|
|
2897
|
+
RepoType?: string;
|
|
3214
2898
|
/**
|
|
3215
|
-
*
|
|
2899
|
+
* 仓库语言
|
|
3216
2900
|
*/
|
|
3217
|
-
|
|
2901
|
+
RepoLanguage?: string;
|
|
2902
|
+
/**
|
|
2903
|
+
* 分支名称
|
|
2904
|
+
*/
|
|
2905
|
+
Branch?: string;
|
|
3218
2906
|
}
|
|
3219
2907
|
/**
|
|
3220
2908
|
* DescribeBaasPackageList返回参数结构体
|
|
@@ -3264,21 +2952,21 @@ export interface DeleteWxGatewayRouteResponse {
|
|
|
3264
2952
|
RequestId?: string;
|
|
3265
2953
|
}
|
|
3266
2954
|
/**
|
|
3267
|
-
*
|
|
2955
|
+
* KV参数的优先级
|
|
3268
2956
|
*/
|
|
3269
|
-
export interface
|
|
2957
|
+
export interface CloudBaseRunKVPriority {
|
|
3270
2958
|
/**
|
|
3271
|
-
*
|
|
2959
|
+
* 参数的Key
|
|
3272
2960
|
*/
|
|
3273
|
-
|
|
2961
|
+
Key?: string;
|
|
3274
2962
|
/**
|
|
3275
|
-
*
|
|
2963
|
+
* 参数的Value
|
|
3276
2964
|
*/
|
|
3277
|
-
|
|
2965
|
+
Value?: string;
|
|
3278
2966
|
/**
|
|
3279
|
-
*
|
|
2967
|
+
* 优先级
|
|
3280
2968
|
*/
|
|
3281
|
-
|
|
2969
|
+
Priority?: number;
|
|
3282
2970
|
}
|
|
3283
2971
|
/**
|
|
3284
2972
|
* UnfreezeCloudBaseRunServers请求参数结构体
|
|
@@ -3383,15 +3071,6 @@ export interface EstablishCloudBaseRunServerRequest {
|
|
|
3383
3071
|
*/
|
|
3384
3072
|
ServerPath?: string;
|
|
3385
3073
|
}
|
|
3386
|
-
/**
|
|
3387
|
-
* ReinstateEnv返回参数结构体
|
|
3388
|
-
*/
|
|
3389
|
-
export interface ReinstateEnvResponse {
|
|
3390
|
-
/**
|
|
3391
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3392
|
-
*/
|
|
3393
|
-
RequestId?: string;
|
|
3394
|
-
}
|
|
3395
3074
|
/**
|
|
3396
3075
|
* 对标 EKS VolumeMount
|
|
3397
3076
|
*/
|
|
@@ -3430,35 +3109,6 @@ export interface DescribeSpecialCostItemsResponse {
|
|
|
3430
3109
|
*/
|
|
3431
3110
|
RequestId?: string;
|
|
3432
3111
|
}
|
|
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
3112
|
/**
|
|
3463
3113
|
* DescribeWxGatewayRoutes请求参数结构体
|
|
3464
3114
|
*/
|
|
@@ -3506,21 +3156,21 @@ export interface DescribeWxGatewaysRequest {
|
|
|
3506
3156
|
Offset?: number;
|
|
3507
3157
|
}
|
|
3508
3158
|
/**
|
|
3509
|
-
*
|
|
3159
|
+
* DescribeCloudBaseProjectVersionList返回参数结构体
|
|
3510
3160
|
*/
|
|
3511
|
-
export interface
|
|
3161
|
+
export interface DescribeCloudBaseProjectVersionListResponse {
|
|
3512
3162
|
/**
|
|
3513
|
-
*
|
|
3163
|
+
* 版本列表
|
|
3514
3164
|
*/
|
|
3515
|
-
|
|
3165
|
+
ProjectVersions?: Array<CloudBaseProjectVersion>;
|
|
3516
3166
|
/**
|
|
3517
|
-
*
|
|
3167
|
+
* 总个数
|
|
3518
3168
|
*/
|
|
3519
|
-
|
|
3169
|
+
TotalCount?: number;
|
|
3520
3170
|
/**
|
|
3521
|
-
*
|
|
3171
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3522
3172
|
*/
|
|
3523
|
-
|
|
3173
|
+
RequestId?: string;
|
|
3524
3174
|
}
|
|
3525
3175
|
/**
|
|
3526
3176
|
* DescribeDownloadFile请求参数结构体
|
|
@@ -3532,13 +3182,13 @@ export interface DescribeDownloadFileRequest {
|
|
|
3532
3182
|
CodeUri: string;
|
|
3533
3183
|
}
|
|
3534
3184
|
/**
|
|
3535
|
-
*
|
|
3185
|
+
* ReinstateEnv返回参数结构体
|
|
3536
3186
|
*/
|
|
3537
|
-
export interface
|
|
3187
|
+
export interface ReinstateEnvResponse {
|
|
3538
3188
|
/**
|
|
3539
|
-
*
|
|
3189
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3540
3190
|
*/
|
|
3541
|
-
|
|
3191
|
+
RequestId?: string;
|
|
3542
3192
|
}
|
|
3543
3193
|
/**
|
|
3544
3194
|
* 子网信息
|
|
@@ -3914,23 +3564,6 @@ export interface ExtensionFile {
|
|
|
3914
3564
|
*/
|
|
3915
3565
|
FileName: string;
|
|
3916
3566
|
}
|
|
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
3567
|
/**
|
|
3935
3568
|
* DeleteGatewayVersion返回参数结构体
|
|
3936
3569
|
*/
|
|
@@ -4065,23 +3698,6 @@ export interface CloudBaseRunServerVersionItem {
|
|
|
4065
3698
|
*/
|
|
4066
3699
|
Architecture?: string;
|
|
4067
3700
|
}
|
|
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
3701
|
/**
|
|
4086
3702
|
* DeleteCloudBaseProjectLatestVersion请求参数结构体
|
|
4087
3703
|
*/
|
|
@@ -4154,23 +3770,6 @@ export interface DescribeDownloadFileResponse {
|
|
|
4154
3770
|
*/
|
|
4155
3771
|
RequestId?: string;
|
|
4156
3772
|
}
|
|
4157
|
-
/**
|
|
4158
|
-
* 小租户网关套餐配置
|
|
4159
|
-
*/
|
|
4160
|
-
export interface StandaloneGatewayPackageInfo {
|
|
4161
|
-
/**
|
|
4162
|
-
* CPU核心数
|
|
4163
|
-
*/
|
|
4164
|
-
CPU: number;
|
|
4165
|
-
/**
|
|
4166
|
-
* 内存大小,单位MB
|
|
4167
|
-
*/
|
|
4168
|
-
Mem: number;
|
|
4169
|
-
/**
|
|
4170
|
-
* 套餐包版本名称
|
|
4171
|
-
*/
|
|
4172
|
-
PackageVersion: string;
|
|
4173
|
-
}
|
|
4174
3773
|
/**
|
|
4175
3774
|
* nfs挂载资源
|
|
4176
3775
|
*/
|
|
@@ -4479,19 +4078,6 @@ export interface DescribeCbrServerVersionResponse {
|
|
|
4479
4078
|
*/
|
|
4480
4079
|
RequestId?: string;
|
|
4481
4080
|
}
|
|
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
4081
|
/**
|
|
4496
4082
|
* DescribeQuotaData请求参数结构体
|
|
4497
4083
|
*/
|
|
@@ -4793,10 +4379,18 @@ export interface ActivityRecordItem {
|
|
|
4793
4379
|
* 用户uin
|
|
4794
4380
|
*/
|
|
4795
4381
|
Uin?: string;
|
|
4382
|
+
/**
|
|
4383
|
+
* 环境ID
|
|
4384
|
+
*/
|
|
4385
|
+
EnvId?: string;
|
|
4796
4386
|
/**
|
|
4797
4387
|
* 活动id
|
|
4798
4388
|
*/
|
|
4799
4389
|
ActivityId?: number;
|
|
4390
|
+
/**
|
|
4391
|
+
* 活动名称(唯一英文标识)
|
|
4392
|
+
*/
|
|
4393
|
+
ActivityName?: string;
|
|
4800
4394
|
/**
|
|
4801
4395
|
* 自定义状态码
|
|
4802
4396
|
*/
|
|
@@ -4810,9 +4404,13 @@ export interface ActivityRecordItem {
|
|
|
4810
4404
|
*/
|
|
4811
4405
|
SubStatusInt?: number;
|
|
4812
4406
|
/**
|
|
4813
|
-
*
|
|
4407
|
+
* 是否已删除
|
|
4814
4408
|
*/
|
|
4815
4409
|
IsDeleted?: boolean;
|
|
4410
|
+
/**
|
|
4411
|
+
* 活动参与时间
|
|
4412
|
+
*/
|
|
4413
|
+
CreateTime?: string;
|
|
4816
4414
|
}
|
|
4817
4415
|
/**
|
|
4818
4416
|
* 合法域名
|
|
@@ -4922,23 +4520,6 @@ export interface FrequencyLimitConfig {
|
|
|
4922
4520
|
*/
|
|
4923
4521
|
LimitConfig?: string;
|
|
4924
4522
|
}
|
|
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
4523
|
/**
|
|
4943
4524
|
* DescribeHostingDomainTask返回参数结构体
|
|
4944
4525
|
*/
|
|
@@ -5032,23 +4613,6 @@ export interface EnvBillingInfoItem {
|
|
|
5032
4613
|
*/
|
|
5033
4614
|
EnvActivated?: string;
|
|
5034
4615
|
}
|
|
5035
|
-
/**
|
|
5036
|
-
* DescribeEndUserStatistic返回参数结构体
|
|
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
4616
|
/**
|
|
5053
4617
|
* 安全网关路由
|
|
5054
4618
|
*/
|
|
@@ -5122,15 +4686,6 @@ export interface WxGatewayRountItem {
|
|
|
5122
4686
|
*/
|
|
5123
4687
|
CustomHeader?: CustomHeader;
|
|
5124
4688
|
}
|
|
5125
|
-
/**
|
|
5126
|
-
* DescribeSmsQuotas请求参数结构体
|
|
5127
|
-
*/
|
|
5128
|
-
export interface DescribeSmsQuotasRequest {
|
|
5129
|
-
/**
|
|
5130
|
-
* 环境ID
|
|
5131
|
-
*/
|
|
5132
|
-
EnvId: string;
|
|
5133
|
-
}
|
|
5134
4689
|
/**
|
|
5135
4690
|
* DescribeCloudBaseRunVersion返回参数结构体
|
|
5136
4691
|
*/
|
|
@@ -5359,7 +4914,7 @@ export interface CloudBaseCodeRepoDetail {
|
|
|
5359
4914
|
/**
|
|
5360
4915
|
* CheckTcbService请求参数结构体
|
|
5361
4916
|
*/
|
|
5362
|
-
export
|
|
4917
|
+
export type CheckTcbServiceRequest = null;
|
|
5363
4918
|
/**
|
|
5364
4919
|
* DescribeCloudBaseRunVersionRsByCondition请求参数结构体
|
|
5365
4920
|
*/
|
|
@@ -5377,47 +4932,6 @@ export interface DescribeCloudBaseRunVersionRsByConditionRequest {
|
|
|
5377
4932
|
*/
|
|
5378
4933
|
FilterGwSwitch?: boolean;
|
|
5379
4934
|
}
|
|
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
|
-
}
|
|
5421
4935
|
/**
|
|
5422
4936
|
* DescribeUserActivityInfo请求参数结构体
|
|
5423
4937
|
*/
|
|
@@ -5515,15 +5029,6 @@ export interface CreateCloudBaseRunResourceRequest {
|
|
|
5515
5029
|
*/
|
|
5516
5030
|
SubnetIds?: Array<string>;
|
|
5517
5031
|
}
|
|
5518
|
-
/**
|
|
5519
|
-
* ModifyEndUser返回参数结构体
|
|
5520
|
-
*/
|
|
5521
|
-
export interface ModifyEndUserResponse {
|
|
5522
|
-
/**
|
|
5523
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5524
|
-
*/
|
|
5525
|
-
RequestId?: string;
|
|
5526
|
-
}
|
|
5527
5032
|
/**
|
|
5528
5033
|
* DescribeAuthDomains请求参数结构体
|
|
5529
5034
|
*/
|
|
@@ -6022,19 +5527,6 @@ export interface DescribeExtensionUploadInfoResponse {
|
|
|
6022
5527
|
*/
|
|
6023
5528
|
RequestId?: string;
|
|
6024
5529
|
}
|
|
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
5530
|
/**
|
|
6039
5531
|
* ModifyEnv请求参数结构体
|
|
6040
5532
|
*/
|