tencentcloud-sdk-nodejs-tcb 4.0.630 → 4.0.632
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +538 -0
- package/SERVICE_CHANGELOG.md +629 -57
- package/package.json +1 -1
- package/products.md +23 -23
- package/src/services/tcb/v20180608/tcb_client.ts +587 -479
- package/src/services/tcb/v20180608/tcb_models.ts +951 -102
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +197 -162
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +290 -239
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +937 -113
|
@@ -188,17 +188,19 @@ export interface DescribeCloudBaseRunServerVersionRequest {
|
|
|
188
188
|
VersionName: string;
|
|
189
189
|
}
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* 代码包信息
|
|
192
192
|
*/
|
|
193
|
-
export interface
|
|
193
|
+
export interface CbrPackageInfo {
|
|
194
194
|
/**
|
|
195
|
-
*
|
|
195
|
+
* 代码包名称
|
|
196
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
196
197
|
*/
|
|
197
|
-
|
|
198
|
+
PackageName?: string;
|
|
198
199
|
/**
|
|
199
|
-
*
|
|
200
|
+
* 代码包版本
|
|
201
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
200
202
|
*/
|
|
201
|
-
|
|
203
|
+
PackageVersion?: string;
|
|
202
204
|
}
|
|
203
205
|
/**
|
|
204
206
|
* DescribeEnvLimit请求参数结构体
|
|
@@ -434,6 +436,39 @@ export interface DescribeStandaloneGatewayPackageRequest {
|
|
|
434
436
|
*/
|
|
435
437
|
PackageVersion?: string;
|
|
436
438
|
}
|
|
439
|
+
/**
|
|
440
|
+
* DescribeGraphData返回参数结构体
|
|
441
|
+
*/
|
|
442
|
+
export interface DescribeGraphDataResponse {
|
|
443
|
+
/**
|
|
444
|
+
* 开始时间, 会根据数据的统计周期进行取整.
|
|
445
|
+
*/
|
|
446
|
+
StartTime?: string;
|
|
447
|
+
/**
|
|
448
|
+
* 结束时间, 会根据数据的统计周期进行取整.
|
|
449
|
+
*/
|
|
450
|
+
EndTime?: string;
|
|
451
|
+
/**
|
|
452
|
+
* 指标名
|
|
453
|
+
*/
|
|
454
|
+
MetricName?: string;
|
|
455
|
+
/**
|
|
456
|
+
* 统计周期(单位秒), 当时间区间为1天内, 统计周期为5分钟; 当时间区间选择为1天以上, 15天以下, 统计周期为1小时; 当时间区间选择为15天以上, 180天以下, 统计周期为1天.
|
|
457
|
+
*/
|
|
458
|
+
Period?: number;
|
|
459
|
+
/**
|
|
460
|
+
* 有效的监控数据, 每个有效监控数据的上报时间可以从时间数组中的对应位置上获取到.
|
|
461
|
+
*/
|
|
462
|
+
Values?: Array<number>;
|
|
463
|
+
/**
|
|
464
|
+
* 时间数据, 标识监控数据Values中的点是哪个时间段上报的.
|
|
465
|
+
*/
|
|
466
|
+
Time?: Array<number>;
|
|
467
|
+
/**
|
|
468
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
469
|
+
*/
|
|
470
|
+
RequestId?: string;
|
|
471
|
+
}
|
|
437
472
|
/**
|
|
438
473
|
* DescribePostpayPackageFreeQuotas请求参数结构体
|
|
439
474
|
*/
|
|
@@ -553,6 +588,27 @@ export interface DescribeCloudBaseRunServerDomainNameResponse {
|
|
|
553
588
|
*/
|
|
554
589
|
RequestId?: string;
|
|
555
590
|
}
|
|
591
|
+
/**
|
|
592
|
+
* 封禁配置
|
|
593
|
+
*/
|
|
594
|
+
export interface BanConfig {
|
|
595
|
+
/**
|
|
596
|
+
* ip白名单,支持ipv4、ipv6,支持CIDR
|
|
597
|
+
*/
|
|
598
|
+
IpWhiteList?: Array<string>;
|
|
599
|
+
/**
|
|
600
|
+
* ip黑名单,支持ipv4、ipv6,支持CIDR
|
|
601
|
+
*/
|
|
602
|
+
IpBlackList?: Array<string>;
|
|
603
|
+
/**
|
|
604
|
+
* 地域白名单(国家英文名)
|
|
605
|
+
*/
|
|
606
|
+
CountryWhiteList?: Array<string>;
|
|
607
|
+
/**
|
|
608
|
+
* 地域黑名单(国家英文名)
|
|
609
|
+
*/
|
|
610
|
+
CountryBlackList?: Array<string>;
|
|
611
|
+
}
|
|
556
612
|
/**
|
|
557
613
|
* CLS日志结果
|
|
558
614
|
*/
|
|
@@ -791,7 +847,7 @@ export interface CreatePostpayPackageRequest {
|
|
|
791
847
|
*/
|
|
792
848
|
Source?: string;
|
|
793
849
|
/**
|
|
794
|
-
* 用户享有的免费额度级别,目前只能为“basic
|
|
850
|
+
* 用户享有的免费额度级别,目前只能为“basic”,不传该字段或该字段为空,表示不享受免费额度。
|
|
795
851
|
*/
|
|
796
852
|
FreeQuota?: string;
|
|
797
853
|
/**
|
|
@@ -857,7 +913,7 @@ export interface ModifyEndUserRequest {
|
|
|
857
913
|
*/
|
|
858
914
|
UUId: string;
|
|
859
915
|
/**
|
|
860
|
-
*
|
|
916
|
+
* 账号的状态
|
|
861
917
|
<li>ENABLE</li>
|
|
862
918
|
<li>DISABLE</li>
|
|
863
919
|
*/
|
|
@@ -977,12 +1033,57 @@ export interface DescribeCloudBaseRunOperationTypesRequest {
|
|
|
977
1033
|
*/
|
|
978
1034
|
ServerName?: string;
|
|
979
1035
|
}
|
|
1036
|
+
/**
|
|
1037
|
+
* 网关版本详情
|
|
1038
|
+
*/
|
|
1039
|
+
export interface GatewayVersionItem {
|
|
1040
|
+
/**
|
|
1041
|
+
* 版本名
|
|
1042
|
+
*/
|
|
1043
|
+
VersionName: string;
|
|
1044
|
+
/**
|
|
1045
|
+
* 版本流量权重
|
|
1046
|
+
*/
|
|
1047
|
+
Weight: number;
|
|
1048
|
+
/**
|
|
1049
|
+
* 创建状态
|
|
1050
|
+
*/
|
|
1051
|
+
Status?: string;
|
|
1052
|
+
/**
|
|
1053
|
+
* 创建时间
|
|
1054
|
+
*/
|
|
1055
|
+
CreatedTime?: string;
|
|
1056
|
+
/**
|
|
1057
|
+
* 更新时间
|
|
1058
|
+
*/
|
|
1059
|
+
UpdatedTime?: string;
|
|
1060
|
+
/**
|
|
1061
|
+
* 构建ID
|
|
1062
|
+
*/
|
|
1063
|
+
BuildId?: number;
|
|
1064
|
+
/**
|
|
1065
|
+
* 备注
|
|
1066
|
+
*/
|
|
1067
|
+
Remark?: string;
|
|
1068
|
+
/**
|
|
1069
|
+
* 优先级
|
|
1070
|
+
*/
|
|
1071
|
+
Priority?: number;
|
|
1072
|
+
/**
|
|
1073
|
+
* 是否默认版本
|
|
1074
|
+
*/
|
|
1075
|
+
IsDefault?: boolean;
|
|
1076
|
+
/**
|
|
1077
|
+
* 网关版本自定义配置
|
|
1078
|
+
*/
|
|
1079
|
+
CustomConfig?: WxGatewayCustomConfig;
|
|
1080
|
+
}
|
|
980
1081
|
/**
|
|
981
1082
|
* DescribeAuthDomains返回参数结构体
|
|
982
1083
|
*/
|
|
983
1084
|
export interface DescribeAuthDomainsResponse {
|
|
984
1085
|
/**
|
|
985
|
-
*
|
|
1086
|
+
* 安全域名列表
|
|
986
1087
|
*/
|
|
987
1088
|
Domains?: Array<AuthDomain>;
|
|
988
1089
|
/**
|
|
@@ -990,6 +1091,15 @@ export interface DescribeAuthDomainsResponse {
|
|
|
990
1091
|
*/
|
|
991
1092
|
RequestId?: string;
|
|
992
1093
|
}
|
|
1094
|
+
/**
|
|
1095
|
+
* ReinstateEnv请求参数结构体
|
|
1096
|
+
*/
|
|
1097
|
+
export interface ReinstateEnvRequest {
|
|
1098
|
+
/**
|
|
1099
|
+
* 环境ID
|
|
1100
|
+
*/
|
|
1101
|
+
EnvId: string;
|
|
1102
|
+
}
|
|
993
1103
|
/**
|
|
994
1104
|
* DescribeCloudBaseRunOneClickTaskExternal请求参数结构体
|
|
995
1105
|
*/
|
|
@@ -1460,6 +1570,44 @@ export interface EndUserInfo {
|
|
|
1460
1570
|
*/
|
|
1461
1571
|
UserName: string;
|
|
1462
1572
|
}
|
|
1573
|
+
/**
|
|
1574
|
+
* DescribeGatewayVersions返回参数结构体
|
|
1575
|
+
*/
|
|
1576
|
+
export interface DescribeGatewayVersionsResponse {
|
|
1577
|
+
/**
|
|
1578
|
+
* 网关id
|
|
1579
|
+
*/
|
|
1580
|
+
GatewayId?: string;
|
|
1581
|
+
/**
|
|
1582
|
+
* 版本总数
|
|
1583
|
+
*/
|
|
1584
|
+
TotalCount?: number;
|
|
1585
|
+
/**
|
|
1586
|
+
* 版本信息详情
|
|
1587
|
+
*/
|
|
1588
|
+
GatewayVersionItems?: Array<GatewayVersionItem>;
|
|
1589
|
+
/**
|
|
1590
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1591
|
+
*/
|
|
1592
|
+
RequestId?: string;
|
|
1593
|
+
}
|
|
1594
|
+
/**
|
|
1595
|
+
* DescribeGatewayVersions请求参数结构体
|
|
1596
|
+
*/
|
|
1597
|
+
export interface DescribeGatewayVersionsRequest {
|
|
1598
|
+
/**
|
|
1599
|
+
* 环境id
|
|
1600
|
+
*/
|
|
1601
|
+
EnvId: string;
|
|
1602
|
+
/**
|
|
1603
|
+
* 网关id
|
|
1604
|
+
*/
|
|
1605
|
+
GatewayId: string;
|
|
1606
|
+
/**
|
|
1607
|
+
* 版本名
|
|
1608
|
+
*/
|
|
1609
|
+
VersionName?: string;
|
|
1610
|
+
}
|
|
1463
1611
|
/**
|
|
1464
1612
|
* DeleteEndUser请求参数结构体
|
|
1465
1613
|
*/
|
|
@@ -1548,6 +1696,23 @@ export interface BaasPackageInfo {
|
|
|
1548
1696
|
*/
|
|
1549
1697
|
IsExternal: boolean;
|
|
1550
1698
|
}
|
|
1699
|
+
/**
|
|
1700
|
+
* ModifyGatewayVersionTraffic请求参数结构体
|
|
1701
|
+
*/
|
|
1702
|
+
export interface ModifyGatewayVersionTrafficRequest {
|
|
1703
|
+
/**
|
|
1704
|
+
* 环境id
|
|
1705
|
+
*/
|
|
1706
|
+
EnvId: string;
|
|
1707
|
+
/**
|
|
1708
|
+
* 网关id
|
|
1709
|
+
*/
|
|
1710
|
+
GatewayId: string;
|
|
1711
|
+
/**
|
|
1712
|
+
* 网关版本流量比例信息
|
|
1713
|
+
*/
|
|
1714
|
+
VersionsWeight: Array<GatewayVersionItem>;
|
|
1715
|
+
}
|
|
1551
1716
|
/**
|
|
1552
1717
|
* DescribeQuotaData返回参数结构体
|
|
1553
1718
|
*/
|
|
@@ -1646,34 +1811,37 @@ export interface KVPair {
|
|
|
1646
1811
|
Value: string;
|
|
1647
1812
|
}
|
|
1648
1813
|
/**
|
|
1649
|
-
*
|
|
1814
|
+
* DeleteGatewayVersion请求参数结构体
|
|
1650
1815
|
*/
|
|
1651
|
-
export interface
|
|
1816
|
+
export interface DeleteGatewayVersionRequest {
|
|
1652
1817
|
/**
|
|
1653
|
-
*
|
|
1654
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1818
|
+
* 环境id
|
|
1655
1819
|
*/
|
|
1656
|
-
|
|
1820
|
+
EnvId: string;
|
|
1657
1821
|
/**
|
|
1658
|
-
*
|
|
1659
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1822
|
+
* 网关id
|
|
1660
1823
|
*/
|
|
1661
|
-
|
|
1824
|
+
GatewayId: string;
|
|
1662
1825
|
/**
|
|
1663
|
-
*
|
|
1664
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1826
|
+
* 版本名
|
|
1665
1827
|
*/
|
|
1666
|
-
|
|
1828
|
+
VersionName: string;
|
|
1667
1829
|
/**
|
|
1668
|
-
*
|
|
1669
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1830
|
+
* 是否删除服务
|
|
1670
1831
|
*/
|
|
1671
|
-
|
|
1832
|
+
IsDeleteServer?: boolean;
|
|
1672
1833
|
/**
|
|
1673
|
-
*
|
|
1674
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1834
|
+
* 是否删除镜像
|
|
1675
1835
|
*/
|
|
1676
|
-
|
|
1836
|
+
IsDeleteImage?: boolean;
|
|
1837
|
+
/**
|
|
1838
|
+
* 是否强制删除
|
|
1839
|
+
*/
|
|
1840
|
+
IsForce?: boolean;
|
|
1841
|
+
/**
|
|
1842
|
+
* 操作记录
|
|
1843
|
+
*/
|
|
1844
|
+
OperatorRemark?: string;
|
|
1677
1845
|
}
|
|
1678
1846
|
/**
|
|
1679
1847
|
* 函数的信息
|
|
@@ -1891,6 +2059,68 @@ export interface DescribeGatewayCurveDataRequest {
|
|
|
1891
2059
|
*/
|
|
1892
2060
|
GatewayRoute?: string;
|
|
1893
2061
|
}
|
|
2062
|
+
/**
|
|
2063
|
+
* DescribeGraphData请求参数结构体
|
|
2064
|
+
*/
|
|
2065
|
+
export interface DescribeGraphDataRequest {
|
|
2066
|
+
/**
|
|
2067
|
+
* 环境ID
|
|
2068
|
+
*/
|
|
2069
|
+
EnvId: string;
|
|
2070
|
+
/**
|
|
2071
|
+
* 指标名:
|
|
2072
|
+
StorageRead: 存储读请求次数
|
|
2073
|
+
StorageWrite: 存储写请求次数
|
|
2074
|
+
StorageCdnOriginFlux: CDN回源流量, 单位字节
|
|
2075
|
+
CDNFlux: CDN回源流量, 单位字节
|
|
2076
|
+
FunctionInvocation: 云函数调用次数
|
|
2077
|
+
FunctionGBs: 云函数资源使用量, 单位Mb*Ms
|
|
2078
|
+
FunctionFlux: 云函数流量, 单位千字节(KB)
|
|
2079
|
+
FunctionError: 云函数调用错误次数
|
|
2080
|
+
FunctionDuration: 云函数运行时间, 单位毫秒
|
|
2081
|
+
DbRead: 数据库读请求数
|
|
2082
|
+
DbWrite: 数据库写请求数
|
|
2083
|
+
DbCostTime10ms: 数据库耗时在10ms~50ms请求数
|
|
2084
|
+
DbCostTime50ms: 数据库耗时在50ms~100ms请求数
|
|
2085
|
+
DbCostTime100ms: 数据库耗时在100ms以上请求数
|
|
2086
|
+
TkeCpuRatio: 容器CPU占用率
|
|
2087
|
+
TkeMemRatio: 容器内存占用率
|
|
2088
|
+
TkeCpuUsed: 容器CPU使用量
|
|
2089
|
+
TkeMemUsed: 容器内存使用量
|
|
2090
|
+
TkeInvokeNum: 调用量
|
|
2091
|
+
FunctionConcurrentExecutions: 云函数并发执行个数
|
|
2092
|
+
FunctionIdleProvisioned: 云函数预置并发闲置量
|
|
2093
|
+
FunctionConcurrencyMemoryMB: 云函数并发执行内存量
|
|
2094
|
+
FunctionThrottle: 云函数受限次数
|
|
2095
|
+
FunctionProvisionedConcurrency: 云函数预置并发
|
|
2096
|
+
*/
|
|
2097
|
+
MetricName: string;
|
|
2098
|
+
/**
|
|
2099
|
+
* 开始时间,如2018-08-24 10:50:00, 开始时间需要早于结束时间至少五分钟(原因是因为目前统计粒度最小是5分钟).
|
|
2100
|
+
*/
|
|
2101
|
+
StartTime: string;
|
|
2102
|
+
/**
|
|
2103
|
+
* 结束时间,如2018-08-24 10:50:00, 结束时间需要晚于开始时间至少五分钟(原因是因为目前统计粒度最小是5分钟)..
|
|
2104
|
+
*/
|
|
2105
|
+
EndTime: string;
|
|
2106
|
+
/**
|
|
2107
|
+
* 资源ID, 目前仅对云函数、容器托管相关的指标有意义。云函数(FunctionInvocation, FunctionGBs, FunctionFlux, FunctionError, FunctionDuration)、容器托管(服务名称), 如果想查询某个云函数的指标则在ResourceId中传入函数名; 如果只想查询整个namespace的指标, 则留空或不传.如果想查询数据库某个集合相关信息,传入集合名称
|
|
2108
|
+
*/
|
|
2109
|
+
ResourceID?: string;
|
|
2110
|
+
}
|
|
2111
|
+
/**
|
|
2112
|
+
* DescribeBillingInfo返回参数结构体
|
|
2113
|
+
*/
|
|
2114
|
+
export interface DescribeBillingInfoResponse {
|
|
2115
|
+
/**
|
|
2116
|
+
* 环境计费信息列表
|
|
2117
|
+
*/
|
|
2118
|
+
EnvBillingInfoList?: Array<EnvBillingInfoItem>;
|
|
2119
|
+
/**
|
|
2120
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2121
|
+
*/
|
|
2122
|
+
RequestId?: string;
|
|
2123
|
+
}
|
|
1894
2124
|
/**
|
|
1895
2125
|
* CreateAuthDomain返回参数结构体
|
|
1896
2126
|
*/
|
|
@@ -2065,6 +2295,31 @@ export interface CloudBaseCapabilities {
|
|
|
2065
2295
|
*/
|
|
2066
2296
|
Drop?: Array<string>;
|
|
2067
2297
|
}
|
|
2298
|
+
/**
|
|
2299
|
+
* 仓库信息
|
|
2300
|
+
*/
|
|
2301
|
+
export interface CbrRepoInfo {
|
|
2302
|
+
/**
|
|
2303
|
+
* 仓库名称
|
|
2304
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2305
|
+
*/
|
|
2306
|
+
Repo?: string;
|
|
2307
|
+
/**
|
|
2308
|
+
* 仓库平台
|
|
2309
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2310
|
+
*/
|
|
2311
|
+
RepoType?: string;
|
|
2312
|
+
/**
|
|
2313
|
+
* 仓库语言
|
|
2314
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2315
|
+
*/
|
|
2316
|
+
RepoLanguage?: string;
|
|
2317
|
+
/**
|
|
2318
|
+
* 分支名称
|
|
2319
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2320
|
+
*/
|
|
2321
|
+
Branch?: string;
|
|
2322
|
+
}
|
|
2068
2323
|
/**
|
|
2069
2324
|
* DescribeEndUserLoginStatistic返回参数结构体
|
|
2070
2325
|
*/
|
|
@@ -2089,18 +2344,13 @@ export interface DescribeExtensionUploadInfoRequest {
|
|
|
2089
2344
|
ExtensionFiles: Array<ExtensionFile>;
|
|
2090
2345
|
}
|
|
2091
2346
|
/**
|
|
2092
|
-
*
|
|
2347
|
+
* DescribeBillingInfo请求参数结构体
|
|
2093
2348
|
*/
|
|
2094
|
-
export interface
|
|
2095
|
-
/**
|
|
2096
|
-
* 指标抵扣详情列表
|
|
2097
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2098
|
-
*/
|
|
2099
|
-
PostPaidEnvDeductInfoList: Array<PostPaidEnvDeductInfo>;
|
|
2349
|
+
export interface DescribeBillingInfoRequest {
|
|
2100
2350
|
/**
|
|
2101
|
-
*
|
|
2351
|
+
* 环境ID
|
|
2102
2352
|
*/
|
|
2103
|
-
|
|
2353
|
+
EnvId?: string;
|
|
2104
2354
|
}
|
|
2105
2355
|
/**
|
|
2106
2356
|
* 扩缩容策略
|
|
@@ -2383,117 +2633,127 @@ export interface EnvInfo {
|
|
|
2383
2633
|
/**
|
|
2384
2634
|
* 账户下该环境唯一标识
|
|
2385
2635
|
*/
|
|
2386
|
-
EnvId
|
|
2636
|
+
EnvId?: string;
|
|
2387
2637
|
/**
|
|
2388
2638
|
* 环境来源。包含以下取值:
|
|
2389
2639
|
<li>miniapp:微信小程序</li>
|
|
2390
2640
|
<li>qcloud :腾讯云</li>
|
|
2391
2641
|
*/
|
|
2392
|
-
Source
|
|
2642
|
+
Source?: string;
|
|
2393
2643
|
/**
|
|
2394
2644
|
* 环境别名,要以a-z开头,不能包含 a-zA-z0-9- 以外的字符
|
|
2395
2645
|
*/
|
|
2396
|
-
Alias
|
|
2646
|
+
Alias?: string;
|
|
2397
2647
|
/**
|
|
2398
2648
|
* 创建时间
|
|
2399
2649
|
*/
|
|
2400
|
-
CreateTime
|
|
2650
|
+
CreateTime?: string;
|
|
2401
2651
|
/**
|
|
2402
2652
|
* 最后修改时间
|
|
2403
2653
|
*/
|
|
2404
|
-
UpdateTime
|
|
2654
|
+
UpdateTime?: string;
|
|
2405
2655
|
/**
|
|
2406
2656
|
* 环境状态。包含以下取值:
|
|
2407
2657
|
<li>NORMAL:正常可用</li>
|
|
2408
2658
|
<li>UNAVAILABLE:服务不可用,可能是尚未初始化或者初始化过程中</li>
|
|
2409
2659
|
*/
|
|
2410
|
-
Status
|
|
2660
|
+
Status?: string;
|
|
2411
2661
|
/**
|
|
2412
2662
|
* 数据库列表
|
|
2413
2663
|
*/
|
|
2414
|
-
Databases
|
|
2664
|
+
Databases?: Array<DatabasesInfo>;
|
|
2415
2665
|
/**
|
|
2416
2666
|
* 存储列表
|
|
2417
2667
|
*/
|
|
2418
|
-
Storages
|
|
2668
|
+
Storages?: Array<StorageInfo>;
|
|
2419
2669
|
/**
|
|
2420
2670
|
* 函数列表
|
|
2421
2671
|
*/
|
|
2422
|
-
Functions
|
|
2672
|
+
Functions?: Array<FunctionInfo>;
|
|
2423
2673
|
/**
|
|
2424
2674
|
* tcb产品套餐ID,参考DescribePackages接口的返回值。
|
|
2425
2675
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2426
2676
|
*/
|
|
2427
|
-
PackageId
|
|
2677
|
+
PackageId?: string;
|
|
2428
2678
|
/**
|
|
2429
2679
|
* 套餐中文名称,参考DescribePackages接口的返回值。
|
|
2430
2680
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2431
2681
|
*/
|
|
2432
|
-
PackageName
|
|
2682
|
+
PackageName?: string;
|
|
2433
2683
|
/**
|
|
2434
2684
|
* 云日志服务列表
|
|
2435
2685
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2436
2686
|
*/
|
|
2437
|
-
LogServices
|
|
2687
|
+
LogServices?: Array<LogServiceInfo>;
|
|
2438
2688
|
/**
|
|
2439
2689
|
* 静态资源信息
|
|
2440
2690
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2441
2691
|
*/
|
|
2442
|
-
StaticStorages
|
|
2692
|
+
StaticStorages?: Array<StaticStorageInfo>;
|
|
2443
2693
|
/**
|
|
2444
2694
|
* 是否到期自动降为免费版
|
|
2445
2695
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2446
2696
|
*/
|
|
2447
|
-
IsAutoDegrade
|
|
2697
|
+
IsAutoDegrade?: boolean;
|
|
2448
2698
|
/**
|
|
2449
2699
|
* 环境渠道
|
|
2450
2700
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2451
2701
|
*/
|
|
2452
|
-
EnvChannel
|
|
2702
|
+
EnvChannel?: string;
|
|
2453
2703
|
/**
|
|
2454
2704
|
* 支付方式。包含以下取值:
|
|
2455
2705
|
<li> prepayment:预付费</li>
|
|
2456
2706
|
<li> postpaid:后付费</li>
|
|
2457
2707
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2458
2708
|
*/
|
|
2459
|
-
PayMode
|
|
2709
|
+
PayMode?: string;
|
|
2460
2710
|
/**
|
|
2461
2711
|
* 是否为默认环境
|
|
2462
2712
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2463
2713
|
*/
|
|
2464
|
-
IsDefault
|
|
2714
|
+
IsDefault?: boolean;
|
|
2465
2715
|
/**
|
|
2466
2716
|
* 环境所属地域
|
|
2467
2717
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2468
2718
|
*/
|
|
2469
|
-
Region
|
|
2719
|
+
Region?: string;
|
|
2470
2720
|
/**
|
|
2471
2721
|
* 环境标签列表
|
|
2472
2722
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2473
2723
|
*/
|
|
2474
|
-
Tags
|
|
2724
|
+
Tags?: Array<Tag>;
|
|
2475
2725
|
/**
|
|
2476
2726
|
* 自定义日志服务
|
|
2477
2727
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2478
2728
|
*/
|
|
2479
|
-
CustomLogServices
|
|
2729
|
+
CustomLogServices?: Array<ClsInfo>;
|
|
2480
2730
|
/**
|
|
2481
2731
|
* 环境类型:baas, run, hoting, weda
|
|
2482
2732
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2483
2733
|
*/
|
|
2484
|
-
EnvType
|
|
2734
|
+
EnvType?: string;
|
|
2485
2735
|
/**
|
|
2486
2736
|
* 是否是dau新套餐
|
|
2487
2737
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2488
2738
|
*/
|
|
2489
|
-
IsDauPackage
|
|
2739
|
+
IsDauPackage?: boolean;
|
|
2490
2740
|
/**
|
|
2491
2741
|
* 套餐类型:空\baas\tcbr
|
|
2492
2742
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2493
2743
|
*/
|
|
2494
|
-
PackageType
|
|
2495
|
-
|
|
2496
|
-
|
|
2744
|
+
PackageType?: string;
|
|
2745
|
+
/**
|
|
2746
|
+
* 架构类型
|
|
2747
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2748
|
+
*/
|
|
2749
|
+
ArchitectureType?: string;
|
|
2750
|
+
/**
|
|
2751
|
+
* 回收标志,默认为空
|
|
2752
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2753
|
+
*/
|
|
2754
|
+
Recycle?: string;
|
|
2755
|
+
}
|
|
2756
|
+
/**
|
|
2497
2757
|
* DestroyEnv请求参数结构体
|
|
2498
2758
|
*/
|
|
2499
2759
|
export interface DestroyEnvRequest {
|
|
@@ -2710,6 +2970,20 @@ export interface CreateAuthDomainRequest {
|
|
|
2710
2970
|
*/
|
|
2711
2971
|
Domains: Array<string>;
|
|
2712
2972
|
}
|
|
2973
|
+
/**
|
|
2974
|
+
* DescribeEnvPostpaidDeduct返回参数结构体
|
|
2975
|
+
*/
|
|
2976
|
+
export interface DescribeEnvPostpaidDeductResponse {
|
|
2977
|
+
/**
|
|
2978
|
+
* 指标抵扣详情列表
|
|
2979
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2980
|
+
*/
|
|
2981
|
+
PostPaidEnvDeductInfoList: Array<PostPaidEnvDeductInfo>;
|
|
2982
|
+
/**
|
|
2983
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2984
|
+
*/
|
|
2985
|
+
RequestId?: string;
|
|
2986
|
+
}
|
|
2713
2987
|
/**
|
|
2714
2988
|
* CreateHostingDomain返回参数结构体
|
|
2715
2989
|
*/
|
|
@@ -3116,24 +3390,23 @@ export interface DeleteWxGatewayRouteResponse {
|
|
|
3116
3390
|
RequestId?: string;
|
|
3117
3391
|
}
|
|
3118
3392
|
/**
|
|
3119
|
-
*
|
|
3393
|
+
* DescribeCloudBaseProjectVersionList返回参数结构体
|
|
3120
3394
|
*/
|
|
3121
|
-
export interface
|
|
3395
|
+
export interface DescribeCloudBaseProjectVersionListResponse {
|
|
3122
3396
|
/**
|
|
3123
|
-
*
|
|
3397
|
+
* 版本列表
|
|
3124
3398
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3125
3399
|
*/
|
|
3126
|
-
|
|
3400
|
+
ProjectVersions: Array<CloudBaseProjectVersion>;
|
|
3127
3401
|
/**
|
|
3128
|
-
*
|
|
3402
|
+
* 总个数
|
|
3129
3403
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3130
3404
|
*/
|
|
3131
|
-
|
|
3405
|
+
TotalCount: number;
|
|
3132
3406
|
/**
|
|
3133
|
-
*
|
|
3134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3407
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3135
3408
|
*/
|
|
3136
|
-
|
|
3409
|
+
RequestId?: string;
|
|
3137
3410
|
}
|
|
3138
3411
|
/**
|
|
3139
3412
|
* UnfreezeCloudBaseRunServers请求参数结构体
|
|
@@ -3148,6 +3421,35 @@ export interface UnfreezeCloudBaseRunServersRequest {
|
|
|
3148
3421
|
*/
|
|
3149
3422
|
ServerNameList: Array<string>;
|
|
3150
3423
|
}
|
|
3424
|
+
/**
|
|
3425
|
+
* 安全网关自定义日志配置
|
|
3426
|
+
*/
|
|
3427
|
+
export interface CustomLogConfig {
|
|
3428
|
+
/**
|
|
3429
|
+
* 是否需要请求体
|
|
3430
|
+
*/
|
|
3431
|
+
NeedReqBodyLog?: boolean;
|
|
3432
|
+
/**
|
|
3433
|
+
* 是否需要请求头
|
|
3434
|
+
*/
|
|
3435
|
+
NeedReqHeaderLog?: boolean;
|
|
3436
|
+
/**
|
|
3437
|
+
* 是否需要回包体
|
|
3438
|
+
*/
|
|
3439
|
+
NeedRspBodyLog?: boolean;
|
|
3440
|
+
/**
|
|
3441
|
+
* 是否需要回包头部信息
|
|
3442
|
+
*/
|
|
3443
|
+
NeedRspHeaderLog?: boolean;
|
|
3444
|
+
/**
|
|
3445
|
+
* cls set信息
|
|
3446
|
+
*/
|
|
3447
|
+
LogSetId?: string;
|
|
3448
|
+
/**
|
|
3449
|
+
* cls topicId
|
|
3450
|
+
*/
|
|
3451
|
+
LogTopicId?: string;
|
|
3452
|
+
}
|
|
3151
3453
|
/**
|
|
3152
3454
|
* EstablishCloudBaseRunServer请求参数结构体
|
|
3153
3455
|
*/
|
|
@@ -3287,23 +3589,66 @@ export interface CreateStandaloneGatewayRequest {
|
|
|
3287
3589
|
PackageVersion: string;
|
|
3288
3590
|
}
|
|
3289
3591
|
/**
|
|
3290
|
-
*
|
|
3592
|
+
* DescribeWxGatewayRoutes请求参数结构体
|
|
3291
3593
|
*/
|
|
3292
|
-
export interface
|
|
3594
|
+
export interface DescribeWxGatewayRoutesRequest {
|
|
3293
3595
|
/**
|
|
3294
|
-
*
|
|
3596
|
+
* 环境ID
|
|
3597
|
+
*/
|
|
3598
|
+
EnvId: string;
|
|
3599
|
+
/**
|
|
3600
|
+
* 网关名称
|
|
3601
|
+
*/
|
|
3602
|
+
GatewayId: string;
|
|
3603
|
+
/**
|
|
3604
|
+
* 网关路由名称
|
|
3605
|
+
*/
|
|
3606
|
+
GatewayRouteName?: string;
|
|
3607
|
+
/**
|
|
3608
|
+
* 网关版本名
|
|
3609
|
+
*/
|
|
3610
|
+
GatewayVersion?: string;
|
|
3611
|
+
}
|
|
3612
|
+
/**
|
|
3613
|
+
* DescribeWxGateways请求参数结构体
|
|
3614
|
+
*/
|
|
3615
|
+
export interface DescribeWxGatewaysRequest {
|
|
3616
|
+
/**
|
|
3617
|
+
* 环境ID
|
|
3618
|
+
*/
|
|
3619
|
+
EnvId: string;
|
|
3620
|
+
/**
|
|
3621
|
+
* 服务名称,精确匹配
|
|
3622
|
+
*/
|
|
3623
|
+
GatewayName?: string;
|
|
3624
|
+
/**
|
|
3625
|
+
* 分页参数
|
|
3626
|
+
*/
|
|
3627
|
+
Limit?: number;
|
|
3628
|
+
/**
|
|
3629
|
+
* 分页参数
|
|
3630
|
+
*/
|
|
3631
|
+
Offset?: number;
|
|
3632
|
+
}
|
|
3633
|
+
/**
|
|
3634
|
+
* KV参数的优先级
|
|
3635
|
+
*/
|
|
3636
|
+
export interface CloudBaseRunKVPriority {
|
|
3637
|
+
/**
|
|
3638
|
+
* 参数的Key
|
|
3295
3639
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3296
3640
|
*/
|
|
3297
|
-
|
|
3641
|
+
Key: string;
|
|
3298
3642
|
/**
|
|
3299
|
-
*
|
|
3643
|
+
* 参数的Value
|
|
3300
3644
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3301
3645
|
*/
|
|
3302
|
-
|
|
3646
|
+
Value: string;
|
|
3303
3647
|
/**
|
|
3304
|
-
*
|
|
3648
|
+
* 优先级
|
|
3649
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3305
3650
|
*/
|
|
3306
|
-
|
|
3651
|
+
Priority: number;
|
|
3307
3652
|
}
|
|
3308
3653
|
/**
|
|
3309
3654
|
* DescribeDownloadFile请求参数结构体
|
|
@@ -3640,6 +3985,42 @@ export interface DescribeCloudBaseRunConfForGateWayResponse {
|
|
|
3640
3985
|
*/
|
|
3641
3986
|
RequestId?: string;
|
|
3642
3987
|
}
|
|
3988
|
+
/**
|
|
3989
|
+
* DescribeCbrServerVersion请求参数结构体
|
|
3990
|
+
*/
|
|
3991
|
+
export interface DescribeCbrServerVersionRequest {
|
|
3992
|
+
/**
|
|
3993
|
+
* 环境ID
|
|
3994
|
+
*/
|
|
3995
|
+
EnvId: string;
|
|
3996
|
+
/**
|
|
3997
|
+
* 服务名称
|
|
3998
|
+
*/
|
|
3999
|
+
ServerName: string;
|
|
4000
|
+
/**
|
|
4001
|
+
* 版本名称
|
|
4002
|
+
*/
|
|
4003
|
+
VersionName: string;
|
|
4004
|
+
}
|
|
4005
|
+
/**
|
|
4006
|
+
* DescribeWxGatewayRoutes返回参数结构体
|
|
4007
|
+
*/
|
|
4008
|
+
export interface DescribeWxGatewayRoutesResponse {
|
|
4009
|
+
/**
|
|
4010
|
+
* 返回的服务个数
|
|
4011
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4012
|
+
*/
|
|
4013
|
+
TotalCount: number;
|
|
4014
|
+
/**
|
|
4015
|
+
* 返回的服务列表
|
|
4016
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4017
|
+
*/
|
|
4018
|
+
WxGatewayRouteSet: Array<WxGatewayRountItem>;
|
|
4019
|
+
/**
|
|
4020
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4021
|
+
*/
|
|
4022
|
+
RequestId?: string;
|
|
4023
|
+
}
|
|
3643
4024
|
/**
|
|
3644
4025
|
* 数据库资源信息
|
|
3645
4026
|
*/
|
|
@@ -3713,13 +4094,17 @@ export interface TurnOffStandaloneGatewayRequest {
|
|
|
3713
4094
|
ServiceNameList: Array<string>;
|
|
3714
4095
|
}
|
|
3715
4096
|
/**
|
|
3716
|
-
*
|
|
4097
|
+
* DeleteGatewayVersion返回参数结构体
|
|
3717
4098
|
*/
|
|
3718
|
-
export interface
|
|
4099
|
+
export interface DeleteGatewayVersionResponse {
|
|
3719
4100
|
/**
|
|
3720
|
-
*
|
|
4101
|
+
* 删除结果
|
|
3721
4102
|
*/
|
|
3722
|
-
|
|
4103
|
+
Result?: string;
|
|
4104
|
+
/**
|
|
4105
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4106
|
+
*/
|
|
4107
|
+
RequestId?: string;
|
|
3723
4108
|
}
|
|
3724
4109
|
/**
|
|
3725
4110
|
* EstablishWxGatewayRoute返回参数结构体
|
|
@@ -3743,6 +4128,36 @@ export interface DescribeDatabaseACLRequest {
|
|
|
3743
4128
|
*/
|
|
3744
4129
|
CollectionName: string;
|
|
3745
4130
|
}
|
|
4131
|
+
/**
|
|
4132
|
+
* 短信免费量
|
|
4133
|
+
*/
|
|
4134
|
+
export interface SmsFreeQuota {
|
|
4135
|
+
/**
|
|
4136
|
+
* 免费量总条数
|
|
4137
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4138
|
+
*/
|
|
4139
|
+
FreeQuota: number;
|
|
4140
|
+
/**
|
|
4141
|
+
* 共计已使用总条数
|
|
4142
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4143
|
+
*/
|
|
4144
|
+
TotalUsedQuota: number;
|
|
4145
|
+
/**
|
|
4146
|
+
* 免费周期起点,0000-00-00 00:00:00 形式
|
|
4147
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4148
|
+
*/
|
|
4149
|
+
CycleStart: string;
|
|
4150
|
+
/**
|
|
4151
|
+
* 免费周期终点,0000-00-00 00:00:00 形式
|
|
4152
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4153
|
+
*/
|
|
4154
|
+
CycleEnd: string;
|
|
4155
|
+
/**
|
|
4156
|
+
* 今天已使用总条数
|
|
4157
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4158
|
+
*/
|
|
4159
|
+
TodayUsedQuota: number;
|
|
4160
|
+
}
|
|
3746
4161
|
/**
|
|
3747
4162
|
* CreateCloudBaseRunServerVersion返回参数结构体
|
|
3748
4163
|
*/
|
|
@@ -3916,6 +4331,49 @@ export interface DescribeCloudBaseProjectLatestVersionListResponse {
|
|
|
3916
4331
|
*/
|
|
3917
4332
|
RequestId?: string;
|
|
3918
4333
|
}
|
|
4334
|
+
/**
|
|
4335
|
+
* DescribeWxGateways返回参数结构体
|
|
4336
|
+
*/
|
|
4337
|
+
export interface DescribeWxGatewaysResponse {
|
|
4338
|
+
/**
|
|
4339
|
+
* 返回的服务列表
|
|
4340
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4341
|
+
*/
|
|
4342
|
+
Gateways: Array<GatewayItem>;
|
|
4343
|
+
/**
|
|
4344
|
+
* 网关总数
|
|
4345
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4346
|
+
*/
|
|
4347
|
+
TotalCount: number;
|
|
4348
|
+
/**
|
|
4349
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4350
|
+
*/
|
|
4351
|
+
RequestId?: string;
|
|
4352
|
+
}
|
|
4353
|
+
/**
|
|
4354
|
+
* DescribeDownloadFile返回参数结构体
|
|
4355
|
+
*/
|
|
4356
|
+
export interface DescribeDownloadFileResponse {
|
|
4357
|
+
/**
|
|
4358
|
+
* 文件路径,该字段已废弃
|
|
4359
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4360
|
+
*/
|
|
4361
|
+
FilePath: string;
|
|
4362
|
+
/**
|
|
4363
|
+
* 加密key,用于计算下载加密文件的header。参考SSE-C https://cloud.tencent.com/document/product/436/7728#sse-c
|
|
4364
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4365
|
+
*/
|
|
4366
|
+
CustomKey: string;
|
|
4367
|
+
/**
|
|
4368
|
+
* 下载链接
|
|
4369
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4370
|
+
*/
|
|
4371
|
+
DownloadUrl: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4374
|
+
*/
|
|
4375
|
+
RequestId?: string;
|
|
4376
|
+
}
|
|
3919
4377
|
/**
|
|
3920
4378
|
* 小租户网关套餐配置
|
|
3921
4379
|
*/
|
|
@@ -4066,54 +4524,187 @@ export interface ModifyEnvResponse {
|
|
|
4066
4524
|
RequestId?: string;
|
|
4067
4525
|
}
|
|
4068
4526
|
/**
|
|
4069
|
-
*
|
|
4527
|
+
* DescribeCbrServerVersion返回参数结构体
|
|
4070
4528
|
*/
|
|
4071
|
-
export interface
|
|
4529
|
+
export interface DescribeCbrServerVersionResponse {
|
|
4072
4530
|
/**
|
|
4073
|
-
*
|
|
4531
|
+
* 版本名称
|
|
4532
|
+
*/
|
|
4533
|
+
VersionName?: string;
|
|
4534
|
+
/**
|
|
4535
|
+
* 备注
|
|
4074
4536
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4075
4537
|
*/
|
|
4076
|
-
|
|
4538
|
+
Remark?: string;
|
|
4077
4539
|
/**
|
|
4078
|
-
*
|
|
4540
|
+
* Dockefile的路径
|
|
4079
4541
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4080
4542
|
*/
|
|
4081
|
-
|
|
4543
|
+
DockerfilePath?: string;
|
|
4082
4544
|
/**
|
|
4083
|
-
*
|
|
4545
|
+
* DockerBuild的目录
|
|
4084
4546
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4085
4547
|
*/
|
|
4086
|
-
|
|
4548
|
+
BuildDir?: string;
|
|
4087
4549
|
/**
|
|
4088
|
-
*
|
|
4550
|
+
* Cpu大小
|
|
4089
4551
|
*/
|
|
4090
|
-
|
|
4091
|
-
}
|
|
4092
|
-
/**
|
|
4093
|
-
* CreateStandaloneGateway返回参数结构体
|
|
4094
|
-
*/
|
|
4095
|
-
export interface CreateStandaloneGatewayResponse {
|
|
4552
|
+
Cpu?: number;
|
|
4096
4553
|
/**
|
|
4097
|
-
*
|
|
4554
|
+
* Mem大小
|
|
4098
4555
|
*/
|
|
4099
|
-
|
|
4556
|
+
Mem?: number;
|
|
4100
4557
|
/**
|
|
4101
|
-
*
|
|
4558
|
+
* 副本最小值
|
|
4102
4559
|
*/
|
|
4103
|
-
|
|
4104
|
-
}
|
|
4105
|
-
/**
|
|
4106
|
-
* DescribeQuotaData请求参数结构体
|
|
4107
|
-
*/
|
|
4108
|
-
export interface DescribeQuotaDataRequest {
|
|
4560
|
+
MinNum?: number;
|
|
4109
4561
|
/**
|
|
4110
|
-
*
|
|
4562
|
+
* 副本最大值
|
|
4111
4563
|
*/
|
|
4112
|
-
|
|
4564
|
+
MaxNum?: number;
|
|
4113
4565
|
/**
|
|
4114
|
-
*
|
|
4115
|
-
|
|
4116
|
-
|
|
4566
|
+
* 环境变量
|
|
4567
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4568
|
+
*/
|
|
4569
|
+
EnvParams?: string;
|
|
4570
|
+
/**
|
|
4571
|
+
* 创建时间
|
|
4572
|
+
*/
|
|
4573
|
+
CreatedTime?: string;
|
|
4574
|
+
/**
|
|
4575
|
+
* 更新时间
|
|
4576
|
+
*/
|
|
4577
|
+
UpdatedTime?: string;
|
|
4578
|
+
/**
|
|
4579
|
+
* 版本的IP
|
|
4580
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4581
|
+
*/
|
|
4582
|
+
VersionIP?: string;
|
|
4583
|
+
/**
|
|
4584
|
+
* 版本的端口号
|
|
4585
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4586
|
+
*/
|
|
4587
|
+
VersionPort?: number;
|
|
4588
|
+
/**
|
|
4589
|
+
* 版本状态
|
|
4590
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4591
|
+
*/
|
|
4592
|
+
Status?: string;
|
|
4593
|
+
/**
|
|
4594
|
+
* 枚举(package/repository/image)
|
|
4595
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4596
|
+
*/
|
|
4597
|
+
UploadType?: string;
|
|
4598
|
+
/**
|
|
4599
|
+
* 服务名字
|
|
4600
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4601
|
+
*/
|
|
4602
|
+
ServerName?: string;
|
|
4603
|
+
/**
|
|
4604
|
+
* 是否对于外网开放
|
|
4605
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4606
|
+
*/
|
|
4607
|
+
IsPublic?: boolean;
|
|
4608
|
+
/**
|
|
4609
|
+
* vpc id
|
|
4610
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4611
|
+
*/
|
|
4612
|
+
VpcId?: string;
|
|
4613
|
+
/**
|
|
4614
|
+
* 子网实例id
|
|
4615
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4616
|
+
*/
|
|
4617
|
+
SubnetIds?: Array<string>;
|
|
4618
|
+
/**
|
|
4619
|
+
* 日志采集路径
|
|
4620
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4621
|
+
*/
|
|
4622
|
+
CustomLogs?: string;
|
|
4623
|
+
/**
|
|
4624
|
+
* 监听端口
|
|
4625
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4626
|
+
*/
|
|
4627
|
+
ContainerPort?: number;
|
|
4628
|
+
/**
|
|
4629
|
+
* 延迟多长时间开始健康检查(单位s)
|
|
4630
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4631
|
+
*/
|
|
4632
|
+
InitialDelaySeconds?: number;
|
|
4633
|
+
/**
|
|
4634
|
+
* 镜像地址
|
|
4635
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4636
|
+
*/
|
|
4637
|
+
ImageUrl?: string;
|
|
4638
|
+
/**
|
|
4639
|
+
* 是否有Dockerfile:0-default has, 1-has, 2-has not
|
|
4640
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4641
|
+
*/
|
|
4642
|
+
HasDockerfile?: number;
|
|
4643
|
+
/**
|
|
4644
|
+
* 基础镜像
|
|
4645
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4646
|
+
*/
|
|
4647
|
+
BaseImage?: string;
|
|
4648
|
+
/**
|
|
4649
|
+
* 容器启动入口命令
|
|
4650
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4651
|
+
*/
|
|
4652
|
+
EntryPoint?: string;
|
|
4653
|
+
/**
|
|
4654
|
+
* 自动扩缩容策略组
|
|
4655
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4656
|
+
*/
|
|
4657
|
+
PolicyDetail?: Array<HpaPolicy>;
|
|
4658
|
+
/**
|
|
4659
|
+
* Tke集群信息
|
|
4660
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4661
|
+
*/
|
|
4662
|
+
TkeClusterInfo?: TkeClusterInfo;
|
|
4663
|
+
/**
|
|
4664
|
+
* 版本工作负载类型;deployment/deamonset
|
|
4665
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4666
|
+
*/
|
|
4667
|
+
TkeWorkloadType?: string;
|
|
4668
|
+
/**
|
|
4669
|
+
* 代码包信息
|
|
4670
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4671
|
+
*/
|
|
4672
|
+
PackageInfo?: CbrPackageInfo;
|
|
4673
|
+
/**
|
|
4674
|
+
* 仓库信息
|
|
4675
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4676
|
+
*/
|
|
4677
|
+
RepoInfo?: CbrRepoInfo;
|
|
4678
|
+
/**
|
|
4679
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4680
|
+
*/
|
|
4681
|
+
RequestId?: string;
|
|
4682
|
+
}
|
|
4683
|
+
/**
|
|
4684
|
+
* CreateStandaloneGateway返回参数结构体
|
|
4685
|
+
*/
|
|
4686
|
+
export interface CreateStandaloneGatewayResponse {
|
|
4687
|
+
/**
|
|
4688
|
+
* 网关名称
|
|
4689
|
+
*/
|
|
4690
|
+
GatewayName: string;
|
|
4691
|
+
/**
|
|
4692
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4693
|
+
*/
|
|
4694
|
+
RequestId?: string;
|
|
4695
|
+
}
|
|
4696
|
+
/**
|
|
4697
|
+
* DescribeQuotaData请求参数结构体
|
|
4698
|
+
*/
|
|
4699
|
+
export interface DescribeQuotaDataRequest {
|
|
4700
|
+
/**
|
|
4701
|
+
* 环境ID
|
|
4702
|
+
*/
|
|
4703
|
+
EnvId: string;
|
|
4704
|
+
/**
|
|
4705
|
+
* <li> 指标名: </li>
|
|
4706
|
+
<li> StorageSizepkg: 当月存储空间容量, 单位MB </li>
|
|
4707
|
+
<li> StorageReadpkg: 当月存储读请求次数 </li>
|
|
4117
4708
|
<li> StorageWritepkg: 当月存储写请求次数 </li>
|
|
4118
4709
|
<li> StorageCdnOriginFluxpkg: 当月CDN回源流量, 单位字节 </li>
|
|
4119
4710
|
<li> StorageCdnOriginFluxpkgDay: 当日CDN回源流量, 单位字节 </li>
|
|
@@ -4365,6 +4956,15 @@ export interface DescribePostpayFreeQuotasResponse {
|
|
|
4365
4956
|
*/
|
|
4366
4957
|
RequestId?: string;
|
|
4367
4958
|
}
|
|
4959
|
+
/**
|
|
4960
|
+
* ModifyGatewayVersionTraffic返回参数结构体
|
|
4961
|
+
*/
|
|
4962
|
+
export interface ModifyGatewayVersionTrafficResponse {
|
|
4963
|
+
/**
|
|
4964
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4965
|
+
*/
|
|
4966
|
+
RequestId?: string;
|
|
4967
|
+
}
|
|
4368
4968
|
/**
|
|
4369
4969
|
* 活动详情
|
|
4370
4970
|
*/
|
|
@@ -4496,6 +5096,19 @@ export interface LogServiceInfo {
|
|
|
4496
5096
|
*/
|
|
4497
5097
|
Period: number;
|
|
4498
5098
|
}
|
|
5099
|
+
/**
|
|
5100
|
+
* 安全网关版本路由信息限额配置
|
|
5101
|
+
*/
|
|
5102
|
+
export interface FrequencyLimitConfig {
|
|
5103
|
+
/**
|
|
5104
|
+
* 限额对象 "ConnectionsLimit" 或 "QPSLimit"
|
|
5105
|
+
*/
|
|
5106
|
+
LimitObject?: string;
|
|
5107
|
+
/**
|
|
5108
|
+
* 限额配置
|
|
5109
|
+
*/
|
|
5110
|
+
LimitConfig?: string;
|
|
5111
|
+
}
|
|
4499
5112
|
/**
|
|
4500
5113
|
* DescribeEndUsers返回参数结构体
|
|
4501
5114
|
*/
|
|
@@ -4621,6 +5234,75 @@ export interface DescribeEndUserStatisticResponse {
|
|
|
4621
5234
|
*/
|
|
4622
5235
|
RequestId?: string;
|
|
4623
5236
|
}
|
|
5237
|
+
/**
|
|
5238
|
+
* 安全网关路由
|
|
5239
|
+
*/
|
|
5240
|
+
export interface WxGatewayRountItem {
|
|
5241
|
+
/**
|
|
5242
|
+
* 安全网关路由名称
|
|
5243
|
+
*/
|
|
5244
|
+
GatewayRouteName: string;
|
|
5245
|
+
/**
|
|
5246
|
+
* 安全网关路由协议
|
|
5247
|
+
*/
|
|
5248
|
+
GatewayRouteProtocol: string;
|
|
5249
|
+
/**
|
|
5250
|
+
* 安全网关路由地址
|
|
5251
|
+
*/
|
|
5252
|
+
GatewayRouteAddr: string;
|
|
5253
|
+
/**
|
|
5254
|
+
* 安全网关路由描述
|
|
5255
|
+
*/
|
|
5256
|
+
GatewayRouteDesc: string;
|
|
5257
|
+
/**
|
|
5258
|
+
* 安全网关后端集群id,如果是外网服务,该id与GatewayRountName相同
|
|
5259
|
+
*/
|
|
5260
|
+
GatewayRouteClusterId: string;
|
|
5261
|
+
/**
|
|
5262
|
+
* 安全网关创建时间
|
|
5263
|
+
*/
|
|
5264
|
+
GatewayRouteCreateTime: string;
|
|
5265
|
+
/**
|
|
5266
|
+
* 安全网关路由限制
|
|
5267
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5268
|
+
*/
|
|
5269
|
+
FrequencyLimitConfig: Array<FrequencyLimitConfig>;
|
|
5270
|
+
/**
|
|
5271
|
+
* ip代表绑定后端ip。cbr代表云托管服务
|
|
5272
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5273
|
+
*/
|
|
5274
|
+
GatewayRouteServerType: string;
|
|
5275
|
+
/**
|
|
5276
|
+
* 服务名
|
|
5277
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5278
|
+
*/
|
|
5279
|
+
GatewayRouteServerName: string;
|
|
5280
|
+
/**
|
|
5281
|
+
* ip
|
|
5282
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5283
|
+
*/
|
|
5284
|
+
GatewayRewriteHost: string;
|
|
5285
|
+
/**
|
|
5286
|
+
* 网关版本
|
|
5287
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5288
|
+
*/
|
|
5289
|
+
GatewayVersion: string;
|
|
5290
|
+
/**
|
|
5291
|
+
* 请求路径
|
|
5292
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5293
|
+
*/
|
|
5294
|
+
GatewayRoutePath: string;
|
|
5295
|
+
/**
|
|
5296
|
+
* 请求模式
|
|
5297
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5298
|
+
*/
|
|
5299
|
+
GatewayRouteMethod: string;
|
|
5300
|
+
/**
|
|
5301
|
+
* 4层端口
|
|
5302
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5303
|
+
*/
|
|
5304
|
+
GatewayRoutePort: number;
|
|
5305
|
+
}
|
|
4624
5306
|
/**
|
|
4625
5307
|
* DescribeSmsQuotas请求参数结构体
|
|
4626
5308
|
*/
|
|
@@ -5040,20 +5722,20 @@ export interface DescribeAuthDomainsRequest {
|
|
|
5040
5722
|
*/
|
|
5041
5723
|
export interface FreezeCloudBaseRunServersResponse {
|
|
5042
5724
|
/**
|
|
5043
|
-
*
|
|
5725
|
+
* 批量状态
|
|
5044
5726
|
成功:succ
|
|
5045
5727
|
失败:fail
|
|
5046
5728
|
部分:partial(部分成功、部分失败)
|
|
5047
5729
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5048
5730
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5049
5731
|
*/
|
|
5050
|
-
Result
|
|
5732
|
+
Result?: string;
|
|
5051
5733
|
/**
|
|
5052
5734
|
* 冻结失败服务列表
|
|
5053
5735
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5054
5736
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5055
5737
|
*/
|
|
5056
|
-
FailServerList
|
|
5738
|
+
FailServerList?: Array<string>;
|
|
5057
5739
|
/**
|
|
5058
5740
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5059
5741
|
*/
|
|
@@ -5151,6 +5833,110 @@ export interface CloudBaseRunForGatewayConf {
|
|
|
5151
5833
|
*/
|
|
5152
5834
|
ConfigType?: number;
|
|
5153
5835
|
}
|
|
5836
|
+
/**
|
|
5837
|
+
* 网关信息
|
|
5838
|
+
*/
|
|
5839
|
+
export interface GatewayItem {
|
|
5840
|
+
/**
|
|
5841
|
+
* 用户uin
|
|
5842
|
+
*/
|
|
5843
|
+
Uin: string;
|
|
5844
|
+
/**
|
|
5845
|
+
* 用户appid
|
|
5846
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5847
|
+
*/
|
|
5848
|
+
AppId: number;
|
|
5849
|
+
/**
|
|
5850
|
+
* 环境id
|
|
5851
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5852
|
+
*/
|
|
5853
|
+
EnvId: string;
|
|
5854
|
+
/**
|
|
5855
|
+
* Gateway唯一id
|
|
5856
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5857
|
+
*/
|
|
5858
|
+
GatewayId: string;
|
|
5859
|
+
/**
|
|
5860
|
+
* Gateway名称
|
|
5861
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5862
|
+
*/
|
|
5863
|
+
GatewayName: string;
|
|
5864
|
+
/**
|
|
5865
|
+
* Gateway类型
|
|
5866
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5867
|
+
*/
|
|
5868
|
+
GatewayType: string;
|
|
5869
|
+
/**
|
|
5870
|
+
* Gateway描述
|
|
5871
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5872
|
+
*/
|
|
5873
|
+
GatewayDesc: string;
|
|
5874
|
+
/**
|
|
5875
|
+
* 套餐版本
|
|
5876
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5877
|
+
*/
|
|
5878
|
+
PackageVersion: string;
|
|
5879
|
+
/**
|
|
5880
|
+
* 套餐唯一id
|
|
5881
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5882
|
+
*/
|
|
5883
|
+
PackageId: number;
|
|
5884
|
+
/**
|
|
5885
|
+
* vpc唯一id
|
|
5886
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5887
|
+
*/
|
|
5888
|
+
VpcId: string;
|
|
5889
|
+
/**
|
|
5890
|
+
* 子网id
|
|
5891
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5892
|
+
*/
|
|
5893
|
+
SubnetIds: Array<string>;
|
|
5894
|
+
/**
|
|
5895
|
+
* 网关状态
|
|
5896
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5897
|
+
*/
|
|
5898
|
+
Status: string;
|
|
5899
|
+
/**
|
|
5900
|
+
* l5地址
|
|
5901
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5902
|
+
*/
|
|
5903
|
+
L5Addr: string;
|
|
5904
|
+
/**
|
|
5905
|
+
* 地域
|
|
5906
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5907
|
+
*/
|
|
5908
|
+
Region: string;
|
|
5909
|
+
/**
|
|
5910
|
+
* 隔离时间
|
|
5911
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5912
|
+
*/
|
|
5913
|
+
IsolateTime: string;
|
|
5914
|
+
/**
|
|
5915
|
+
* 到期时间
|
|
5916
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5917
|
+
*/
|
|
5918
|
+
ExpireTime: string;
|
|
5919
|
+
/**
|
|
5920
|
+
* 创建时间
|
|
5921
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5922
|
+
*/
|
|
5923
|
+
CreateTime: string;
|
|
5924
|
+
/**
|
|
5925
|
+
* 变更时间
|
|
5926
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5927
|
+
*/
|
|
5928
|
+
UpdateTime: string;
|
|
5929
|
+
/**
|
|
5930
|
+
* 允许未登录访问
|
|
5931
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5932
|
+
*/
|
|
5933
|
+
AllowUncertified: number;
|
|
5934
|
+
/**
|
|
5935
|
+
* 网关版本限额
|
|
5936
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5937
|
+
*/
|
|
5938
|
+
VersionNumLimit?: number;
|
|
5939
|
+
}
|
|
5154
5940
|
/**
|
|
5155
5941
|
* 扩展文件信息
|
|
5156
5942
|
*/
|
|
@@ -5172,6 +5958,31 @@ export interface ExtensionFileInfo {
|
|
|
5172
5958
|
*/
|
|
5173
5959
|
MaxSize: number;
|
|
5174
5960
|
}
|
|
5961
|
+
/**
|
|
5962
|
+
* 安全网关自定义配置
|
|
5963
|
+
*/
|
|
5964
|
+
export interface WxGatewayCustomConfig {
|
|
5965
|
+
/**
|
|
5966
|
+
* 是否开启x-real-ip
|
|
5967
|
+
*/
|
|
5968
|
+
IsOpenXRealIp?: boolean;
|
|
5969
|
+
/**
|
|
5970
|
+
* 封禁配置
|
|
5971
|
+
*/
|
|
5972
|
+
BanConfig?: BanConfig;
|
|
5973
|
+
/**
|
|
5974
|
+
* 获取源ip方式,PPV1(Proxy Protocol V1)、PPV2(Proxy Protocol V2)、TOA(tcp option address)
|
|
5975
|
+
*/
|
|
5976
|
+
SourceIpType?: string;
|
|
5977
|
+
/**
|
|
5978
|
+
* 日志信息
|
|
5979
|
+
*/
|
|
5980
|
+
LogConfig?: CustomLogConfig;
|
|
5981
|
+
/**
|
|
5982
|
+
* 是否开启http1.0
|
|
5983
|
+
*/
|
|
5984
|
+
IsAcceptHttpOne?: boolean;
|
|
5985
|
+
}
|
|
5175
5986
|
/**
|
|
5176
5987
|
* Key-Value类型,模拟的 object 类型
|
|
5177
5988
|
*/
|
|
@@ -5386,6 +6197,19 @@ export interface DescribeExtensionUploadInfoResponse {
|
|
|
5386
6197
|
*/
|
|
5387
6198
|
RequestId?: string;
|
|
5388
6199
|
}
|
|
6200
|
+
/**
|
|
6201
|
+
* TurnOnStandaloneGateway返回参数结构体
|
|
6202
|
+
*/
|
|
6203
|
+
export interface TurnOnStandaloneGatewayResponse {
|
|
6204
|
+
/**
|
|
6205
|
+
* 小租户网关开启状态
|
|
6206
|
+
*/
|
|
6207
|
+
Status: string;
|
|
6208
|
+
/**
|
|
6209
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6210
|
+
*/
|
|
6211
|
+
RequestId?: string;
|
|
6212
|
+
}
|
|
5389
6213
|
/**
|
|
5390
6214
|
* ModifyEnv请求参数结构体
|
|
5391
6215
|
*/
|