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
|
@@ -211,17 +211,19 @@ export interface DescribeCloudBaseRunServerVersionRequest {
|
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
/**
|
|
214
|
-
*
|
|
214
|
+
* 代码包信息
|
|
215
215
|
*/
|
|
216
|
-
export interface
|
|
216
|
+
export interface CbrPackageInfo {
|
|
217
217
|
/**
|
|
218
|
-
*
|
|
218
|
+
* 代码包名称
|
|
219
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
219
220
|
*/
|
|
220
|
-
|
|
221
|
+
PackageName?: string
|
|
221
222
|
/**
|
|
222
|
-
*
|
|
223
|
+
* 代码包版本
|
|
224
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
223
225
|
*/
|
|
224
|
-
|
|
226
|
+
PackageVersion?: string
|
|
225
227
|
}
|
|
226
228
|
|
|
227
229
|
/**
|
|
@@ -469,6 +471,40 @@ export interface DescribeStandaloneGatewayPackageRequest {
|
|
|
469
471
|
PackageVersion?: string
|
|
470
472
|
}
|
|
471
473
|
|
|
474
|
+
/**
|
|
475
|
+
* DescribeGraphData返回参数结构体
|
|
476
|
+
*/
|
|
477
|
+
export interface DescribeGraphDataResponse {
|
|
478
|
+
/**
|
|
479
|
+
* 开始时间, 会根据数据的统计周期进行取整.
|
|
480
|
+
*/
|
|
481
|
+
StartTime?: string
|
|
482
|
+
/**
|
|
483
|
+
* 结束时间, 会根据数据的统计周期进行取整.
|
|
484
|
+
*/
|
|
485
|
+
EndTime?: string
|
|
486
|
+
/**
|
|
487
|
+
* 指标名
|
|
488
|
+
*/
|
|
489
|
+
MetricName?: string
|
|
490
|
+
/**
|
|
491
|
+
* 统计周期(单位秒), 当时间区间为1天内, 统计周期为5分钟; 当时间区间选择为1天以上, 15天以下, 统计周期为1小时; 当时间区间选择为15天以上, 180天以下, 统计周期为1天.
|
|
492
|
+
*/
|
|
493
|
+
Period?: number
|
|
494
|
+
/**
|
|
495
|
+
* 有效的监控数据, 每个有效监控数据的上报时间可以从时间数组中的对应位置上获取到.
|
|
496
|
+
*/
|
|
497
|
+
Values?: Array<number>
|
|
498
|
+
/**
|
|
499
|
+
* 时间数据, 标识监控数据Values中的点是哪个时间段上报的.
|
|
500
|
+
*/
|
|
501
|
+
Time?: Array<number>
|
|
502
|
+
/**
|
|
503
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
504
|
+
*/
|
|
505
|
+
RequestId?: string
|
|
506
|
+
}
|
|
507
|
+
|
|
472
508
|
/**
|
|
473
509
|
* DescribePostpayPackageFreeQuotas请求参数结构体
|
|
474
510
|
*/
|
|
@@ -594,6 +630,28 @@ export interface DescribeCloudBaseRunServerDomainNameResponse {
|
|
|
594
630
|
RequestId?: string
|
|
595
631
|
}
|
|
596
632
|
|
|
633
|
+
/**
|
|
634
|
+
* 封禁配置
|
|
635
|
+
*/
|
|
636
|
+
export interface BanConfig {
|
|
637
|
+
/**
|
|
638
|
+
* ip白名单,支持ipv4、ipv6,支持CIDR
|
|
639
|
+
*/
|
|
640
|
+
IpWhiteList?: Array<string>
|
|
641
|
+
/**
|
|
642
|
+
* ip黑名单,支持ipv4、ipv6,支持CIDR
|
|
643
|
+
*/
|
|
644
|
+
IpBlackList?: Array<string>
|
|
645
|
+
/**
|
|
646
|
+
* 地域白名单(国家英文名)
|
|
647
|
+
*/
|
|
648
|
+
CountryWhiteList?: Array<string>
|
|
649
|
+
/**
|
|
650
|
+
* 地域黑名单(国家英文名)
|
|
651
|
+
*/
|
|
652
|
+
CountryBlackList?: Array<string>
|
|
653
|
+
}
|
|
654
|
+
|
|
597
655
|
/**
|
|
598
656
|
* CLS日志结果
|
|
599
657
|
*/
|
|
@@ -838,7 +896,7 @@ export interface CreatePostpayPackageRequest {
|
|
|
838
896
|
*/
|
|
839
897
|
Source?: string
|
|
840
898
|
/**
|
|
841
|
-
* 用户享有的免费额度级别,目前只能为“basic
|
|
899
|
+
* 用户享有的免费额度级别,目前只能为“basic”,不传该字段或该字段为空,表示不享受免费额度。
|
|
842
900
|
*/
|
|
843
901
|
FreeQuota?: string
|
|
844
902
|
/**
|
|
@@ -906,7 +964,7 @@ export interface ModifyEndUserRequest {
|
|
|
906
964
|
*/
|
|
907
965
|
UUId: string
|
|
908
966
|
/**
|
|
909
|
-
*
|
|
967
|
+
* 账号的状态
|
|
910
968
|
<li>ENABLE</li>
|
|
911
969
|
<li>DISABLE</li>
|
|
912
970
|
*/
|
|
@@ -1031,12 +1089,58 @@ export interface DescribeCloudBaseRunOperationTypesRequest {
|
|
|
1031
1089
|
ServerName?: string
|
|
1032
1090
|
}
|
|
1033
1091
|
|
|
1092
|
+
/**
|
|
1093
|
+
* 网关版本详情
|
|
1094
|
+
*/
|
|
1095
|
+
export interface GatewayVersionItem {
|
|
1096
|
+
/**
|
|
1097
|
+
* 版本名
|
|
1098
|
+
*/
|
|
1099
|
+
VersionName: string
|
|
1100
|
+
/**
|
|
1101
|
+
* 版本流量权重
|
|
1102
|
+
*/
|
|
1103
|
+
Weight: number
|
|
1104
|
+
/**
|
|
1105
|
+
* 创建状态
|
|
1106
|
+
*/
|
|
1107
|
+
Status?: string
|
|
1108
|
+
/**
|
|
1109
|
+
* 创建时间
|
|
1110
|
+
*/
|
|
1111
|
+
CreatedTime?: string
|
|
1112
|
+
/**
|
|
1113
|
+
* 更新时间
|
|
1114
|
+
*/
|
|
1115
|
+
UpdatedTime?: string
|
|
1116
|
+
/**
|
|
1117
|
+
* 构建ID
|
|
1118
|
+
*/
|
|
1119
|
+
BuildId?: number
|
|
1120
|
+
/**
|
|
1121
|
+
* 备注
|
|
1122
|
+
*/
|
|
1123
|
+
Remark?: string
|
|
1124
|
+
/**
|
|
1125
|
+
* 优先级
|
|
1126
|
+
*/
|
|
1127
|
+
Priority?: number
|
|
1128
|
+
/**
|
|
1129
|
+
* 是否默认版本
|
|
1130
|
+
*/
|
|
1131
|
+
IsDefault?: boolean
|
|
1132
|
+
/**
|
|
1133
|
+
* 网关版本自定义配置
|
|
1134
|
+
*/
|
|
1135
|
+
CustomConfig?: WxGatewayCustomConfig
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1034
1138
|
/**
|
|
1035
1139
|
* DescribeAuthDomains返回参数结构体
|
|
1036
1140
|
*/
|
|
1037
1141
|
export interface DescribeAuthDomainsResponse {
|
|
1038
1142
|
/**
|
|
1039
|
-
*
|
|
1143
|
+
* 安全域名列表
|
|
1040
1144
|
*/
|
|
1041
1145
|
Domains?: Array<AuthDomain>
|
|
1042
1146
|
/**
|
|
@@ -1045,6 +1149,16 @@ export interface DescribeAuthDomainsResponse {
|
|
|
1045
1149
|
RequestId?: string
|
|
1046
1150
|
}
|
|
1047
1151
|
|
|
1152
|
+
/**
|
|
1153
|
+
* ReinstateEnv请求参数结构体
|
|
1154
|
+
*/
|
|
1155
|
+
export interface ReinstateEnvRequest {
|
|
1156
|
+
/**
|
|
1157
|
+
* 环境ID
|
|
1158
|
+
*/
|
|
1159
|
+
EnvId: string
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1048
1162
|
/**
|
|
1049
1163
|
* DescribeCloudBaseRunOneClickTaskExternal请求参数结构体
|
|
1050
1164
|
*/
|
|
@@ -1531,6 +1645,46 @@ export interface EndUserInfo {
|
|
|
1531
1645
|
UserName: string
|
|
1532
1646
|
}
|
|
1533
1647
|
|
|
1648
|
+
/**
|
|
1649
|
+
* DescribeGatewayVersions返回参数结构体
|
|
1650
|
+
*/
|
|
1651
|
+
export interface DescribeGatewayVersionsResponse {
|
|
1652
|
+
/**
|
|
1653
|
+
* 网关id
|
|
1654
|
+
*/
|
|
1655
|
+
GatewayId?: string
|
|
1656
|
+
/**
|
|
1657
|
+
* 版本总数
|
|
1658
|
+
*/
|
|
1659
|
+
TotalCount?: number
|
|
1660
|
+
/**
|
|
1661
|
+
* 版本信息详情
|
|
1662
|
+
*/
|
|
1663
|
+
GatewayVersionItems?: Array<GatewayVersionItem>
|
|
1664
|
+
/**
|
|
1665
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1666
|
+
*/
|
|
1667
|
+
RequestId?: string
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
/**
|
|
1671
|
+
* DescribeGatewayVersions请求参数结构体
|
|
1672
|
+
*/
|
|
1673
|
+
export interface DescribeGatewayVersionsRequest {
|
|
1674
|
+
/**
|
|
1675
|
+
* 环境id
|
|
1676
|
+
*/
|
|
1677
|
+
EnvId: string
|
|
1678
|
+
/**
|
|
1679
|
+
* 网关id
|
|
1680
|
+
*/
|
|
1681
|
+
GatewayId: string
|
|
1682
|
+
/**
|
|
1683
|
+
* 版本名
|
|
1684
|
+
*/
|
|
1685
|
+
VersionName?: string
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1534
1688
|
/**
|
|
1535
1689
|
* DeleteEndUser请求参数结构体
|
|
1536
1690
|
*/
|
|
@@ -1623,6 +1777,24 @@ export interface BaasPackageInfo {
|
|
|
1623
1777
|
IsExternal: boolean
|
|
1624
1778
|
}
|
|
1625
1779
|
|
|
1780
|
+
/**
|
|
1781
|
+
* ModifyGatewayVersionTraffic请求参数结构体
|
|
1782
|
+
*/
|
|
1783
|
+
export interface ModifyGatewayVersionTrafficRequest {
|
|
1784
|
+
/**
|
|
1785
|
+
* 环境id
|
|
1786
|
+
*/
|
|
1787
|
+
EnvId: string
|
|
1788
|
+
/**
|
|
1789
|
+
* 网关id
|
|
1790
|
+
*/
|
|
1791
|
+
GatewayId: string
|
|
1792
|
+
/**
|
|
1793
|
+
* 网关版本流量比例信息
|
|
1794
|
+
*/
|
|
1795
|
+
VersionsWeight: Array<GatewayVersionItem>
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1626
1798
|
/**
|
|
1627
1799
|
* DescribeQuotaData返回参数结构体
|
|
1628
1800
|
*/
|
|
@@ -1725,34 +1897,37 @@ export interface KVPair {
|
|
|
1725
1897
|
}
|
|
1726
1898
|
|
|
1727
1899
|
/**
|
|
1728
|
-
*
|
|
1900
|
+
* DeleteGatewayVersion请求参数结构体
|
|
1729
1901
|
*/
|
|
1730
|
-
export interface
|
|
1902
|
+
export interface DeleteGatewayVersionRequest {
|
|
1731
1903
|
/**
|
|
1732
|
-
*
|
|
1733
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1904
|
+
* 环境id
|
|
1734
1905
|
*/
|
|
1735
|
-
|
|
1906
|
+
EnvId: string
|
|
1736
1907
|
/**
|
|
1737
|
-
*
|
|
1738
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1908
|
+
* 网关id
|
|
1739
1909
|
*/
|
|
1740
|
-
|
|
1910
|
+
GatewayId: string
|
|
1741
1911
|
/**
|
|
1742
|
-
*
|
|
1743
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1912
|
+
* 版本名
|
|
1744
1913
|
*/
|
|
1745
|
-
|
|
1914
|
+
VersionName: string
|
|
1746
1915
|
/**
|
|
1747
|
-
*
|
|
1748
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1916
|
+
* 是否删除服务
|
|
1749
1917
|
*/
|
|
1750
|
-
|
|
1918
|
+
IsDeleteServer?: boolean
|
|
1751
1919
|
/**
|
|
1752
|
-
*
|
|
1753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1920
|
+
* 是否删除镜像
|
|
1754
1921
|
*/
|
|
1755
|
-
|
|
1922
|
+
IsDeleteImage?: boolean
|
|
1923
|
+
/**
|
|
1924
|
+
* 是否强制删除
|
|
1925
|
+
*/
|
|
1926
|
+
IsForce?: boolean
|
|
1927
|
+
/**
|
|
1928
|
+
* 操作记录
|
|
1929
|
+
*/
|
|
1930
|
+
OperatorRemark?: string
|
|
1756
1931
|
}
|
|
1757
1932
|
|
|
1758
1933
|
/**
|
|
@@ -1982,6 +2157,70 @@ export interface DescribeGatewayCurveDataRequest {
|
|
|
1982
2157
|
GatewayRoute?: string
|
|
1983
2158
|
}
|
|
1984
2159
|
|
|
2160
|
+
/**
|
|
2161
|
+
* DescribeGraphData请求参数结构体
|
|
2162
|
+
*/
|
|
2163
|
+
export interface DescribeGraphDataRequest {
|
|
2164
|
+
/**
|
|
2165
|
+
* 环境ID
|
|
2166
|
+
*/
|
|
2167
|
+
EnvId: string
|
|
2168
|
+
/**
|
|
2169
|
+
* 指标名:
|
|
2170
|
+
StorageRead: 存储读请求次数
|
|
2171
|
+
StorageWrite: 存储写请求次数
|
|
2172
|
+
StorageCdnOriginFlux: CDN回源流量, 单位字节
|
|
2173
|
+
CDNFlux: CDN回源流量, 单位字节
|
|
2174
|
+
FunctionInvocation: 云函数调用次数
|
|
2175
|
+
FunctionGBs: 云函数资源使用量, 单位Mb*Ms
|
|
2176
|
+
FunctionFlux: 云函数流量, 单位千字节(KB)
|
|
2177
|
+
FunctionError: 云函数调用错误次数
|
|
2178
|
+
FunctionDuration: 云函数运行时间, 单位毫秒
|
|
2179
|
+
DbRead: 数据库读请求数
|
|
2180
|
+
DbWrite: 数据库写请求数
|
|
2181
|
+
DbCostTime10ms: 数据库耗时在10ms~50ms请求数
|
|
2182
|
+
DbCostTime50ms: 数据库耗时在50ms~100ms请求数
|
|
2183
|
+
DbCostTime100ms: 数据库耗时在100ms以上请求数
|
|
2184
|
+
TkeCpuRatio: 容器CPU占用率
|
|
2185
|
+
TkeMemRatio: 容器内存占用率
|
|
2186
|
+
TkeCpuUsed: 容器CPU使用量
|
|
2187
|
+
TkeMemUsed: 容器内存使用量
|
|
2188
|
+
TkeInvokeNum: 调用量
|
|
2189
|
+
FunctionConcurrentExecutions: 云函数并发执行个数
|
|
2190
|
+
FunctionIdleProvisioned: 云函数预置并发闲置量
|
|
2191
|
+
FunctionConcurrencyMemoryMB: 云函数并发执行内存量
|
|
2192
|
+
FunctionThrottle: 云函数受限次数
|
|
2193
|
+
FunctionProvisionedConcurrency: 云函数预置并发
|
|
2194
|
+
*/
|
|
2195
|
+
MetricName: string
|
|
2196
|
+
/**
|
|
2197
|
+
* 开始时间,如2018-08-24 10:50:00, 开始时间需要早于结束时间至少五分钟(原因是因为目前统计粒度最小是5分钟).
|
|
2198
|
+
*/
|
|
2199
|
+
StartTime: string
|
|
2200
|
+
/**
|
|
2201
|
+
* 结束时间,如2018-08-24 10:50:00, 结束时间需要晚于开始时间至少五分钟(原因是因为目前统计粒度最小是5分钟)..
|
|
2202
|
+
*/
|
|
2203
|
+
EndTime: string
|
|
2204
|
+
/**
|
|
2205
|
+
* 资源ID, 目前仅对云函数、容器托管相关的指标有意义。云函数(FunctionInvocation, FunctionGBs, FunctionFlux, FunctionError, FunctionDuration)、容器托管(服务名称), 如果想查询某个云函数的指标则在ResourceId中传入函数名; 如果只想查询整个namespace的指标, 则留空或不传.如果想查询数据库某个集合相关信息,传入集合名称
|
|
2206
|
+
*/
|
|
2207
|
+
ResourceID?: string
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
/**
|
|
2211
|
+
* DescribeBillingInfo返回参数结构体
|
|
2212
|
+
*/
|
|
2213
|
+
export interface DescribeBillingInfoResponse {
|
|
2214
|
+
/**
|
|
2215
|
+
* 环境计费信息列表
|
|
2216
|
+
*/
|
|
2217
|
+
EnvBillingInfoList?: Array<EnvBillingInfoItem>
|
|
2218
|
+
/**
|
|
2219
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2220
|
+
*/
|
|
2221
|
+
RequestId?: string
|
|
2222
|
+
}
|
|
2223
|
+
|
|
1985
2224
|
/**
|
|
1986
2225
|
* CreateAuthDomain返回参数结构体
|
|
1987
2226
|
*/
|
|
@@ -2167,6 +2406,32 @@ export interface CloudBaseCapabilities {
|
|
|
2167
2406
|
Drop?: Array<string>
|
|
2168
2407
|
}
|
|
2169
2408
|
|
|
2409
|
+
/**
|
|
2410
|
+
* 仓库信息
|
|
2411
|
+
*/
|
|
2412
|
+
export interface CbrRepoInfo {
|
|
2413
|
+
/**
|
|
2414
|
+
* 仓库名称
|
|
2415
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2416
|
+
*/
|
|
2417
|
+
Repo?: string
|
|
2418
|
+
/**
|
|
2419
|
+
* 仓库平台
|
|
2420
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2421
|
+
*/
|
|
2422
|
+
RepoType?: string
|
|
2423
|
+
/**
|
|
2424
|
+
* 仓库语言
|
|
2425
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2426
|
+
*/
|
|
2427
|
+
RepoLanguage?: string
|
|
2428
|
+
/**
|
|
2429
|
+
* 分支名称
|
|
2430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2431
|
+
*/
|
|
2432
|
+
Branch?: string
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2170
2435
|
/**
|
|
2171
2436
|
* DescribeEndUserLoginStatistic返回参数结构体
|
|
2172
2437
|
*/
|
|
@@ -2193,18 +2458,13 @@ export interface DescribeExtensionUploadInfoRequest {
|
|
|
2193
2458
|
}
|
|
2194
2459
|
|
|
2195
2460
|
/**
|
|
2196
|
-
*
|
|
2461
|
+
* DescribeBillingInfo请求参数结构体
|
|
2197
2462
|
*/
|
|
2198
|
-
export interface
|
|
2199
|
-
/**
|
|
2200
|
-
* 指标抵扣详情列表
|
|
2201
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2202
|
-
*/
|
|
2203
|
-
PostPaidEnvDeductInfoList: Array<PostPaidEnvDeductInfo>
|
|
2463
|
+
export interface DescribeBillingInfoRequest {
|
|
2204
2464
|
/**
|
|
2205
|
-
*
|
|
2465
|
+
* 环境ID
|
|
2206
2466
|
*/
|
|
2207
|
-
|
|
2467
|
+
EnvId?: string
|
|
2208
2468
|
}
|
|
2209
2469
|
|
|
2210
2470
|
/**
|
|
@@ -2502,115 +2762,125 @@ export interface EnvInfo {
|
|
|
2502
2762
|
/**
|
|
2503
2763
|
* 账户下该环境唯一标识
|
|
2504
2764
|
*/
|
|
2505
|
-
EnvId
|
|
2765
|
+
EnvId?: string
|
|
2506
2766
|
/**
|
|
2507
2767
|
* 环境来源。包含以下取值:
|
|
2508
2768
|
<li>miniapp:微信小程序</li>
|
|
2509
2769
|
<li>qcloud :腾讯云</li>
|
|
2510
2770
|
*/
|
|
2511
|
-
Source
|
|
2771
|
+
Source?: string
|
|
2512
2772
|
/**
|
|
2513
2773
|
* 环境别名,要以a-z开头,不能包含 a-zA-z0-9- 以外的字符
|
|
2514
2774
|
*/
|
|
2515
|
-
Alias
|
|
2775
|
+
Alias?: string
|
|
2516
2776
|
/**
|
|
2517
2777
|
* 创建时间
|
|
2518
2778
|
*/
|
|
2519
|
-
CreateTime
|
|
2779
|
+
CreateTime?: string
|
|
2520
2780
|
/**
|
|
2521
2781
|
* 最后修改时间
|
|
2522
2782
|
*/
|
|
2523
|
-
UpdateTime
|
|
2783
|
+
UpdateTime?: string
|
|
2524
2784
|
/**
|
|
2525
2785
|
* 环境状态。包含以下取值:
|
|
2526
2786
|
<li>NORMAL:正常可用</li>
|
|
2527
2787
|
<li>UNAVAILABLE:服务不可用,可能是尚未初始化或者初始化过程中</li>
|
|
2528
2788
|
*/
|
|
2529
|
-
Status
|
|
2789
|
+
Status?: string
|
|
2530
2790
|
/**
|
|
2531
2791
|
* 数据库列表
|
|
2532
2792
|
*/
|
|
2533
|
-
Databases
|
|
2793
|
+
Databases?: Array<DatabasesInfo>
|
|
2534
2794
|
/**
|
|
2535
2795
|
* 存储列表
|
|
2536
2796
|
*/
|
|
2537
|
-
Storages
|
|
2797
|
+
Storages?: Array<StorageInfo>
|
|
2538
2798
|
/**
|
|
2539
2799
|
* 函数列表
|
|
2540
2800
|
*/
|
|
2541
|
-
Functions
|
|
2801
|
+
Functions?: Array<FunctionInfo>
|
|
2542
2802
|
/**
|
|
2543
2803
|
* tcb产品套餐ID,参考DescribePackages接口的返回值。
|
|
2544
2804
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2545
2805
|
*/
|
|
2546
|
-
PackageId
|
|
2806
|
+
PackageId?: string
|
|
2547
2807
|
/**
|
|
2548
2808
|
* 套餐中文名称,参考DescribePackages接口的返回值。
|
|
2549
2809
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2550
2810
|
*/
|
|
2551
|
-
PackageName
|
|
2811
|
+
PackageName?: string
|
|
2552
2812
|
/**
|
|
2553
2813
|
* 云日志服务列表
|
|
2554
2814
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2555
2815
|
*/
|
|
2556
|
-
LogServices
|
|
2816
|
+
LogServices?: Array<LogServiceInfo>
|
|
2557
2817
|
/**
|
|
2558
2818
|
* 静态资源信息
|
|
2559
2819
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2560
2820
|
*/
|
|
2561
|
-
StaticStorages
|
|
2821
|
+
StaticStorages?: Array<StaticStorageInfo>
|
|
2562
2822
|
/**
|
|
2563
2823
|
* 是否到期自动降为免费版
|
|
2564
2824
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2565
2825
|
*/
|
|
2566
|
-
IsAutoDegrade
|
|
2826
|
+
IsAutoDegrade?: boolean
|
|
2567
2827
|
/**
|
|
2568
2828
|
* 环境渠道
|
|
2569
2829
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2570
2830
|
*/
|
|
2571
|
-
EnvChannel
|
|
2831
|
+
EnvChannel?: string
|
|
2572
2832
|
/**
|
|
2573
2833
|
* 支付方式。包含以下取值:
|
|
2574
2834
|
<li> prepayment:预付费</li>
|
|
2575
2835
|
<li> postpaid:后付费</li>
|
|
2576
2836
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2577
2837
|
*/
|
|
2578
|
-
PayMode
|
|
2838
|
+
PayMode?: string
|
|
2579
2839
|
/**
|
|
2580
2840
|
* 是否为默认环境
|
|
2581
2841
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2582
2842
|
*/
|
|
2583
|
-
IsDefault
|
|
2843
|
+
IsDefault?: boolean
|
|
2584
2844
|
/**
|
|
2585
2845
|
* 环境所属地域
|
|
2586
2846
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2587
2847
|
*/
|
|
2588
|
-
Region
|
|
2848
|
+
Region?: string
|
|
2589
2849
|
/**
|
|
2590
2850
|
* 环境标签列表
|
|
2591
2851
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2592
2852
|
*/
|
|
2593
|
-
Tags
|
|
2853
|
+
Tags?: Array<Tag>
|
|
2594
2854
|
/**
|
|
2595
2855
|
* 自定义日志服务
|
|
2596
2856
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2597
2857
|
*/
|
|
2598
|
-
CustomLogServices
|
|
2858
|
+
CustomLogServices?: Array<ClsInfo>
|
|
2599
2859
|
/**
|
|
2600
2860
|
* 环境类型:baas, run, hoting, weda
|
|
2601
2861
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2602
2862
|
*/
|
|
2603
|
-
EnvType
|
|
2863
|
+
EnvType?: string
|
|
2604
2864
|
/**
|
|
2605
2865
|
* 是否是dau新套餐
|
|
2606
2866
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2607
2867
|
*/
|
|
2608
|
-
IsDauPackage
|
|
2868
|
+
IsDauPackage?: boolean
|
|
2609
2869
|
/**
|
|
2610
2870
|
* 套餐类型:空\baas\tcbr
|
|
2611
2871
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2612
2872
|
*/
|
|
2613
|
-
PackageType
|
|
2873
|
+
PackageType?: string
|
|
2874
|
+
/**
|
|
2875
|
+
* 架构类型
|
|
2876
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2877
|
+
*/
|
|
2878
|
+
ArchitectureType?: string
|
|
2879
|
+
/**
|
|
2880
|
+
* 回收标志,默认为空
|
|
2881
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2882
|
+
*/
|
|
2883
|
+
Recycle?: string
|
|
2614
2884
|
}
|
|
2615
2885
|
|
|
2616
2886
|
/**
|
|
@@ -2838,6 +3108,21 @@ export interface CreateAuthDomainRequest {
|
|
|
2838
3108
|
Domains: Array<string>
|
|
2839
3109
|
}
|
|
2840
3110
|
|
|
3111
|
+
/**
|
|
3112
|
+
* DescribeEnvPostpaidDeduct返回参数结构体
|
|
3113
|
+
*/
|
|
3114
|
+
export interface DescribeEnvPostpaidDeductResponse {
|
|
3115
|
+
/**
|
|
3116
|
+
* 指标抵扣详情列表
|
|
3117
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3118
|
+
*/
|
|
3119
|
+
PostPaidEnvDeductInfoList: Array<PostPaidEnvDeductInfo>
|
|
3120
|
+
/**
|
|
3121
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3122
|
+
*/
|
|
3123
|
+
RequestId?: string
|
|
3124
|
+
}
|
|
3125
|
+
|
|
2841
3126
|
/**
|
|
2842
3127
|
* CreateHostingDomain返回参数结构体
|
|
2843
3128
|
*/
|
|
@@ -3257,24 +3542,23 @@ export interface DeleteWxGatewayRouteResponse {
|
|
|
3257
3542
|
}
|
|
3258
3543
|
|
|
3259
3544
|
/**
|
|
3260
|
-
*
|
|
3545
|
+
* DescribeCloudBaseProjectVersionList返回参数结构体
|
|
3261
3546
|
*/
|
|
3262
|
-
export interface
|
|
3547
|
+
export interface DescribeCloudBaseProjectVersionListResponse {
|
|
3263
3548
|
/**
|
|
3264
|
-
*
|
|
3549
|
+
* 版本列表
|
|
3265
3550
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3266
3551
|
*/
|
|
3267
|
-
|
|
3552
|
+
ProjectVersions: Array<CloudBaseProjectVersion>
|
|
3268
3553
|
/**
|
|
3269
|
-
*
|
|
3554
|
+
* 总个数
|
|
3270
3555
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3271
3556
|
*/
|
|
3272
|
-
|
|
3557
|
+
TotalCount: number
|
|
3273
3558
|
/**
|
|
3274
|
-
*
|
|
3275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3559
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3276
3560
|
*/
|
|
3277
|
-
|
|
3561
|
+
RequestId?: string
|
|
3278
3562
|
}
|
|
3279
3563
|
|
|
3280
3564
|
/**
|
|
@@ -3291,6 +3575,36 @@ export interface UnfreezeCloudBaseRunServersRequest {
|
|
|
3291
3575
|
ServerNameList: Array<string>
|
|
3292
3576
|
}
|
|
3293
3577
|
|
|
3578
|
+
/**
|
|
3579
|
+
* 安全网关自定义日志配置
|
|
3580
|
+
*/
|
|
3581
|
+
export interface CustomLogConfig {
|
|
3582
|
+
/**
|
|
3583
|
+
* 是否需要请求体
|
|
3584
|
+
*/
|
|
3585
|
+
NeedReqBodyLog?: boolean
|
|
3586
|
+
/**
|
|
3587
|
+
* 是否需要请求头
|
|
3588
|
+
*/
|
|
3589
|
+
NeedReqHeaderLog?: boolean
|
|
3590
|
+
/**
|
|
3591
|
+
* 是否需要回包体
|
|
3592
|
+
*/
|
|
3593
|
+
NeedRspBodyLog?: boolean
|
|
3594
|
+
/**
|
|
3595
|
+
* 是否需要回包头部信息
|
|
3596
|
+
*/
|
|
3597
|
+
NeedRspHeaderLog?: boolean
|
|
3598
|
+
/**
|
|
3599
|
+
* cls set信息
|
|
3600
|
+
*/
|
|
3601
|
+
LogSetId?: string
|
|
3602
|
+
/**
|
|
3603
|
+
* cls topicId
|
|
3604
|
+
*/
|
|
3605
|
+
LogTopicId?: string
|
|
3606
|
+
}
|
|
3607
|
+
|
|
3294
3608
|
/**
|
|
3295
3609
|
* EstablishCloudBaseRunServer请求参数结构体
|
|
3296
3610
|
*/
|
|
@@ -3435,23 +3749,68 @@ export interface CreateStandaloneGatewayRequest {
|
|
|
3435
3749
|
}
|
|
3436
3750
|
|
|
3437
3751
|
/**
|
|
3438
|
-
*
|
|
3752
|
+
* DescribeWxGatewayRoutes请求参数结构体
|
|
3439
3753
|
*/
|
|
3440
|
-
export interface
|
|
3754
|
+
export interface DescribeWxGatewayRoutesRequest {
|
|
3441
3755
|
/**
|
|
3442
|
-
*
|
|
3756
|
+
* 环境ID
|
|
3757
|
+
*/
|
|
3758
|
+
EnvId: string
|
|
3759
|
+
/**
|
|
3760
|
+
* 网关名称
|
|
3761
|
+
*/
|
|
3762
|
+
GatewayId: string
|
|
3763
|
+
/**
|
|
3764
|
+
* 网关路由名称
|
|
3765
|
+
*/
|
|
3766
|
+
GatewayRouteName?: string
|
|
3767
|
+
/**
|
|
3768
|
+
* 网关版本名
|
|
3769
|
+
*/
|
|
3770
|
+
GatewayVersion?: string
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3773
|
+
/**
|
|
3774
|
+
* DescribeWxGateways请求参数结构体
|
|
3775
|
+
*/
|
|
3776
|
+
export interface DescribeWxGatewaysRequest {
|
|
3777
|
+
/**
|
|
3778
|
+
* 环境ID
|
|
3779
|
+
*/
|
|
3780
|
+
EnvId: string
|
|
3781
|
+
/**
|
|
3782
|
+
* 服务名称,精确匹配
|
|
3783
|
+
*/
|
|
3784
|
+
GatewayName?: string
|
|
3785
|
+
/**
|
|
3786
|
+
* 分页参数
|
|
3787
|
+
*/
|
|
3788
|
+
Limit?: number
|
|
3789
|
+
/**
|
|
3790
|
+
* 分页参数
|
|
3791
|
+
*/
|
|
3792
|
+
Offset?: number
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3795
|
+
/**
|
|
3796
|
+
* KV参数的优先级
|
|
3797
|
+
*/
|
|
3798
|
+
export interface CloudBaseRunKVPriority {
|
|
3799
|
+
/**
|
|
3800
|
+
* 参数的Key
|
|
3443
3801
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3444
3802
|
*/
|
|
3445
|
-
|
|
3803
|
+
Key: string
|
|
3446
3804
|
/**
|
|
3447
|
-
*
|
|
3805
|
+
* 参数的Value
|
|
3448
3806
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3449
3807
|
*/
|
|
3450
|
-
|
|
3808
|
+
Value: string
|
|
3451
3809
|
/**
|
|
3452
|
-
*
|
|
3810
|
+
* 优先级
|
|
3811
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3453
3812
|
*/
|
|
3454
|
-
|
|
3813
|
+
Priority: number
|
|
3455
3814
|
}
|
|
3456
3815
|
|
|
3457
3816
|
/**
|
|
@@ -3802,6 +4161,44 @@ export interface DescribeCloudBaseRunConfForGateWayResponse {
|
|
|
3802
4161
|
RequestId?: string
|
|
3803
4162
|
}
|
|
3804
4163
|
|
|
4164
|
+
/**
|
|
4165
|
+
* DescribeCbrServerVersion请求参数结构体
|
|
4166
|
+
*/
|
|
4167
|
+
export interface DescribeCbrServerVersionRequest {
|
|
4168
|
+
/**
|
|
4169
|
+
* 环境ID
|
|
4170
|
+
*/
|
|
4171
|
+
EnvId: string
|
|
4172
|
+
/**
|
|
4173
|
+
* 服务名称
|
|
4174
|
+
*/
|
|
4175
|
+
ServerName: string
|
|
4176
|
+
/**
|
|
4177
|
+
* 版本名称
|
|
4178
|
+
*/
|
|
4179
|
+
VersionName: string
|
|
4180
|
+
}
|
|
4181
|
+
|
|
4182
|
+
/**
|
|
4183
|
+
* DescribeWxGatewayRoutes返回参数结构体
|
|
4184
|
+
*/
|
|
4185
|
+
export interface DescribeWxGatewayRoutesResponse {
|
|
4186
|
+
/**
|
|
4187
|
+
* 返回的服务个数
|
|
4188
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4189
|
+
*/
|
|
4190
|
+
TotalCount: number
|
|
4191
|
+
/**
|
|
4192
|
+
* 返回的服务列表
|
|
4193
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4194
|
+
*/
|
|
4195
|
+
WxGatewayRouteSet: Array<WxGatewayRountItem>
|
|
4196
|
+
/**
|
|
4197
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4198
|
+
*/
|
|
4199
|
+
RequestId?: string
|
|
4200
|
+
}
|
|
4201
|
+
|
|
3805
4202
|
/**
|
|
3806
4203
|
* 数据库资源信息
|
|
3807
4204
|
*/
|
|
@@ -3879,13 +4276,17 @@ export interface TurnOffStandaloneGatewayRequest {
|
|
|
3879
4276
|
}
|
|
3880
4277
|
|
|
3881
4278
|
/**
|
|
3882
|
-
*
|
|
4279
|
+
* DeleteGatewayVersion返回参数结构体
|
|
3883
4280
|
*/
|
|
3884
|
-
export interface
|
|
4281
|
+
export interface DeleteGatewayVersionResponse {
|
|
3885
4282
|
/**
|
|
3886
|
-
*
|
|
4283
|
+
* 删除结果
|
|
3887
4284
|
*/
|
|
3888
|
-
|
|
4285
|
+
Result?: string
|
|
4286
|
+
/**
|
|
4287
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4288
|
+
*/
|
|
4289
|
+
RequestId?: string
|
|
3889
4290
|
}
|
|
3890
4291
|
|
|
3891
4292
|
/**
|
|
@@ -3912,6 +4313,37 @@ export interface DescribeDatabaseACLRequest {
|
|
|
3912
4313
|
CollectionName: string
|
|
3913
4314
|
}
|
|
3914
4315
|
|
|
4316
|
+
/**
|
|
4317
|
+
* 短信免费量
|
|
4318
|
+
*/
|
|
4319
|
+
export interface SmsFreeQuota {
|
|
4320
|
+
/**
|
|
4321
|
+
* 免费量总条数
|
|
4322
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4323
|
+
*/
|
|
4324
|
+
FreeQuota: number
|
|
4325
|
+
/**
|
|
4326
|
+
* 共计已使用总条数
|
|
4327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4328
|
+
*/
|
|
4329
|
+
TotalUsedQuota: number
|
|
4330
|
+
/**
|
|
4331
|
+
* 免费周期起点,0000-00-00 00:00:00 形式
|
|
4332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4333
|
+
*/
|
|
4334
|
+
CycleStart: string
|
|
4335
|
+
/**
|
|
4336
|
+
* 免费周期终点,0000-00-00 00:00:00 形式
|
|
4337
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4338
|
+
*/
|
|
4339
|
+
CycleEnd: string
|
|
4340
|
+
/**
|
|
4341
|
+
* 今天已使用总条数
|
|
4342
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4343
|
+
*/
|
|
4344
|
+
TodayUsedQuota: number
|
|
4345
|
+
}
|
|
4346
|
+
|
|
3915
4347
|
/**
|
|
3916
4348
|
* CreateCloudBaseRunServerVersion返回参数结构体
|
|
3917
4349
|
*/
|
|
@@ -4090,6 +4522,51 @@ export interface DescribeCloudBaseProjectLatestVersionListResponse {
|
|
|
4090
4522
|
RequestId?: string
|
|
4091
4523
|
}
|
|
4092
4524
|
|
|
4525
|
+
/**
|
|
4526
|
+
* DescribeWxGateways返回参数结构体
|
|
4527
|
+
*/
|
|
4528
|
+
export interface DescribeWxGatewaysResponse {
|
|
4529
|
+
/**
|
|
4530
|
+
* 返回的服务列表
|
|
4531
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4532
|
+
*/
|
|
4533
|
+
Gateways: Array<GatewayItem>
|
|
4534
|
+
/**
|
|
4535
|
+
* 网关总数
|
|
4536
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4537
|
+
*/
|
|
4538
|
+
TotalCount: number
|
|
4539
|
+
/**
|
|
4540
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4541
|
+
*/
|
|
4542
|
+
RequestId?: string
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
/**
|
|
4546
|
+
* DescribeDownloadFile返回参数结构体
|
|
4547
|
+
*/
|
|
4548
|
+
export interface DescribeDownloadFileResponse {
|
|
4549
|
+
/**
|
|
4550
|
+
* 文件路径,该字段已废弃
|
|
4551
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4552
|
+
*/
|
|
4553
|
+
FilePath: string
|
|
4554
|
+
/**
|
|
4555
|
+
* 加密key,用于计算下载加密文件的header。参考SSE-C https://cloud.tencent.com/document/product/436/7728#sse-c
|
|
4556
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4557
|
+
*/
|
|
4558
|
+
CustomKey: string
|
|
4559
|
+
/**
|
|
4560
|
+
* 下载链接
|
|
4561
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4562
|
+
*/
|
|
4563
|
+
DownloadUrl: string
|
|
4564
|
+
/**
|
|
4565
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4566
|
+
*/
|
|
4567
|
+
RequestId?: string
|
|
4568
|
+
}
|
|
4569
|
+
|
|
4093
4570
|
/**
|
|
4094
4571
|
* 小租户网关套餐配置
|
|
4095
4572
|
*/
|
|
@@ -4249,40 +4726,173 @@ export interface ModifyEnvResponse {
|
|
|
4249
4726
|
}
|
|
4250
4727
|
|
|
4251
4728
|
/**
|
|
4252
|
-
*
|
|
4729
|
+
* DescribeCbrServerVersion返回参数结构体
|
|
4253
4730
|
*/
|
|
4254
|
-
export interface
|
|
4731
|
+
export interface DescribeCbrServerVersionResponse {
|
|
4255
4732
|
/**
|
|
4256
|
-
*
|
|
4257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4733
|
+
* 版本名称
|
|
4258
4734
|
*/
|
|
4259
|
-
|
|
4735
|
+
VersionName?: string
|
|
4260
4736
|
/**
|
|
4261
|
-
*
|
|
4737
|
+
* 备注
|
|
4262
4738
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4263
4739
|
*/
|
|
4264
|
-
|
|
4740
|
+
Remark?: string
|
|
4265
4741
|
/**
|
|
4266
|
-
*
|
|
4742
|
+
* Dockefile的路径
|
|
4267
4743
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4268
4744
|
*/
|
|
4269
|
-
|
|
4745
|
+
DockerfilePath?: string
|
|
4270
4746
|
/**
|
|
4271
|
-
*
|
|
4747
|
+
* DockerBuild的目录
|
|
4748
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4272
4749
|
*/
|
|
4273
|
-
|
|
4274
|
-
}
|
|
4275
|
-
|
|
4276
|
-
/**
|
|
4277
|
-
* CreateStandaloneGateway返回参数结构体
|
|
4278
|
-
*/
|
|
4279
|
-
export interface CreateStandaloneGatewayResponse {
|
|
4750
|
+
BuildDir?: string
|
|
4280
4751
|
/**
|
|
4281
|
-
*
|
|
4752
|
+
* Cpu大小
|
|
4282
4753
|
*/
|
|
4283
|
-
|
|
4754
|
+
Cpu?: number
|
|
4284
4755
|
/**
|
|
4285
|
-
*
|
|
4756
|
+
* Mem大小
|
|
4757
|
+
*/
|
|
4758
|
+
Mem?: number
|
|
4759
|
+
/**
|
|
4760
|
+
* 副本最小值
|
|
4761
|
+
*/
|
|
4762
|
+
MinNum?: number
|
|
4763
|
+
/**
|
|
4764
|
+
* 副本最大值
|
|
4765
|
+
*/
|
|
4766
|
+
MaxNum?: number
|
|
4767
|
+
/**
|
|
4768
|
+
* 环境变量
|
|
4769
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4770
|
+
*/
|
|
4771
|
+
EnvParams?: string
|
|
4772
|
+
/**
|
|
4773
|
+
* 创建时间
|
|
4774
|
+
*/
|
|
4775
|
+
CreatedTime?: string
|
|
4776
|
+
/**
|
|
4777
|
+
* 更新时间
|
|
4778
|
+
*/
|
|
4779
|
+
UpdatedTime?: string
|
|
4780
|
+
/**
|
|
4781
|
+
* 版本的IP
|
|
4782
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4783
|
+
*/
|
|
4784
|
+
VersionIP?: string
|
|
4785
|
+
/**
|
|
4786
|
+
* 版本的端口号
|
|
4787
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4788
|
+
*/
|
|
4789
|
+
VersionPort?: number
|
|
4790
|
+
/**
|
|
4791
|
+
* 版本状态
|
|
4792
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4793
|
+
*/
|
|
4794
|
+
Status?: string
|
|
4795
|
+
/**
|
|
4796
|
+
* 枚举(package/repository/image)
|
|
4797
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4798
|
+
*/
|
|
4799
|
+
UploadType?: string
|
|
4800
|
+
/**
|
|
4801
|
+
* 服务名字
|
|
4802
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4803
|
+
*/
|
|
4804
|
+
ServerName?: string
|
|
4805
|
+
/**
|
|
4806
|
+
* 是否对于外网开放
|
|
4807
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4808
|
+
*/
|
|
4809
|
+
IsPublic?: boolean
|
|
4810
|
+
/**
|
|
4811
|
+
* vpc id
|
|
4812
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4813
|
+
*/
|
|
4814
|
+
VpcId?: string
|
|
4815
|
+
/**
|
|
4816
|
+
* 子网实例id
|
|
4817
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4818
|
+
*/
|
|
4819
|
+
SubnetIds?: Array<string>
|
|
4820
|
+
/**
|
|
4821
|
+
* 日志采集路径
|
|
4822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4823
|
+
*/
|
|
4824
|
+
CustomLogs?: string
|
|
4825
|
+
/**
|
|
4826
|
+
* 监听端口
|
|
4827
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4828
|
+
*/
|
|
4829
|
+
ContainerPort?: number
|
|
4830
|
+
/**
|
|
4831
|
+
* 延迟多长时间开始健康检查(单位s)
|
|
4832
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4833
|
+
*/
|
|
4834
|
+
InitialDelaySeconds?: number
|
|
4835
|
+
/**
|
|
4836
|
+
* 镜像地址
|
|
4837
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4838
|
+
*/
|
|
4839
|
+
ImageUrl?: string
|
|
4840
|
+
/**
|
|
4841
|
+
* 是否有Dockerfile:0-default has, 1-has, 2-has not
|
|
4842
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4843
|
+
*/
|
|
4844
|
+
HasDockerfile?: number
|
|
4845
|
+
/**
|
|
4846
|
+
* 基础镜像
|
|
4847
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4848
|
+
*/
|
|
4849
|
+
BaseImage?: string
|
|
4850
|
+
/**
|
|
4851
|
+
* 容器启动入口命令
|
|
4852
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4853
|
+
*/
|
|
4854
|
+
EntryPoint?: string
|
|
4855
|
+
/**
|
|
4856
|
+
* 自动扩缩容策略组
|
|
4857
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4858
|
+
*/
|
|
4859
|
+
PolicyDetail?: Array<HpaPolicy>
|
|
4860
|
+
/**
|
|
4861
|
+
* Tke集群信息
|
|
4862
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4863
|
+
*/
|
|
4864
|
+
TkeClusterInfo?: TkeClusterInfo
|
|
4865
|
+
/**
|
|
4866
|
+
* 版本工作负载类型;deployment/deamonset
|
|
4867
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4868
|
+
*/
|
|
4869
|
+
TkeWorkloadType?: string
|
|
4870
|
+
/**
|
|
4871
|
+
* 代码包信息
|
|
4872
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4873
|
+
*/
|
|
4874
|
+
PackageInfo?: CbrPackageInfo
|
|
4875
|
+
/**
|
|
4876
|
+
* 仓库信息
|
|
4877
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4878
|
+
*/
|
|
4879
|
+
RepoInfo?: CbrRepoInfo
|
|
4880
|
+
/**
|
|
4881
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4882
|
+
*/
|
|
4883
|
+
RequestId?: string
|
|
4884
|
+
}
|
|
4885
|
+
|
|
4886
|
+
/**
|
|
4887
|
+
* CreateStandaloneGateway返回参数结构体
|
|
4888
|
+
*/
|
|
4889
|
+
export interface CreateStandaloneGatewayResponse {
|
|
4890
|
+
/**
|
|
4891
|
+
* 网关名称
|
|
4892
|
+
*/
|
|
4893
|
+
GatewayName: string
|
|
4894
|
+
/**
|
|
4895
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4286
4896
|
*/
|
|
4287
4897
|
RequestId?: string
|
|
4288
4898
|
}
|
|
@@ -4560,6 +5170,16 @@ export interface DescribePostpayFreeQuotasResponse {
|
|
|
4560
5170
|
RequestId?: string
|
|
4561
5171
|
}
|
|
4562
5172
|
|
|
5173
|
+
/**
|
|
5174
|
+
* ModifyGatewayVersionTraffic返回参数结构体
|
|
5175
|
+
*/
|
|
5176
|
+
export interface ModifyGatewayVersionTrafficResponse {
|
|
5177
|
+
/**
|
|
5178
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5179
|
+
*/
|
|
5180
|
+
RequestId?: string
|
|
5181
|
+
}
|
|
5182
|
+
|
|
4563
5183
|
/**
|
|
4564
5184
|
* 活动详情
|
|
4565
5185
|
*/
|
|
@@ -4695,6 +5315,20 @@ export interface LogServiceInfo {
|
|
|
4695
5315
|
Period: number
|
|
4696
5316
|
}
|
|
4697
5317
|
|
|
5318
|
+
/**
|
|
5319
|
+
* 安全网关版本路由信息限额配置
|
|
5320
|
+
*/
|
|
5321
|
+
export interface FrequencyLimitConfig {
|
|
5322
|
+
/**
|
|
5323
|
+
* 限额对象 "ConnectionsLimit" 或 "QPSLimit"
|
|
5324
|
+
*/
|
|
5325
|
+
LimitObject?: string
|
|
5326
|
+
/**
|
|
5327
|
+
* 限额配置
|
|
5328
|
+
*/
|
|
5329
|
+
LimitConfig?: string
|
|
5330
|
+
}
|
|
5331
|
+
|
|
4698
5332
|
/**
|
|
4699
5333
|
* DescribeEndUsers返回参数结构体
|
|
4700
5334
|
*/
|
|
@@ -4824,6 +5458,76 @@ export interface DescribeEndUserStatisticResponse {
|
|
|
4824
5458
|
RequestId?: string
|
|
4825
5459
|
}
|
|
4826
5460
|
|
|
5461
|
+
/**
|
|
5462
|
+
* 安全网关路由
|
|
5463
|
+
*/
|
|
5464
|
+
export interface WxGatewayRountItem {
|
|
5465
|
+
/**
|
|
5466
|
+
* 安全网关路由名称
|
|
5467
|
+
*/
|
|
5468
|
+
GatewayRouteName: string
|
|
5469
|
+
/**
|
|
5470
|
+
* 安全网关路由协议
|
|
5471
|
+
*/
|
|
5472
|
+
GatewayRouteProtocol: string
|
|
5473
|
+
/**
|
|
5474
|
+
* 安全网关路由地址
|
|
5475
|
+
*/
|
|
5476
|
+
GatewayRouteAddr: string
|
|
5477
|
+
/**
|
|
5478
|
+
* 安全网关路由描述
|
|
5479
|
+
*/
|
|
5480
|
+
GatewayRouteDesc: string
|
|
5481
|
+
/**
|
|
5482
|
+
* 安全网关后端集群id,如果是外网服务,该id与GatewayRountName相同
|
|
5483
|
+
*/
|
|
5484
|
+
GatewayRouteClusterId: string
|
|
5485
|
+
/**
|
|
5486
|
+
* 安全网关创建时间
|
|
5487
|
+
*/
|
|
5488
|
+
GatewayRouteCreateTime: string
|
|
5489
|
+
/**
|
|
5490
|
+
* 安全网关路由限制
|
|
5491
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5492
|
+
*/
|
|
5493
|
+
FrequencyLimitConfig: Array<FrequencyLimitConfig>
|
|
5494
|
+
/**
|
|
5495
|
+
* ip代表绑定后端ip。cbr代表云托管服务
|
|
5496
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5497
|
+
*/
|
|
5498
|
+
GatewayRouteServerType: string
|
|
5499
|
+
/**
|
|
5500
|
+
* 服务名
|
|
5501
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5502
|
+
*/
|
|
5503
|
+
GatewayRouteServerName: string
|
|
5504
|
+
/**
|
|
5505
|
+
* ip
|
|
5506
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5507
|
+
*/
|
|
5508
|
+
GatewayRewriteHost: string
|
|
5509
|
+
/**
|
|
5510
|
+
* 网关版本
|
|
5511
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5512
|
+
*/
|
|
5513
|
+
GatewayVersion: string
|
|
5514
|
+
/**
|
|
5515
|
+
* 请求路径
|
|
5516
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5517
|
+
*/
|
|
5518
|
+
GatewayRoutePath: string
|
|
5519
|
+
/**
|
|
5520
|
+
* 请求模式
|
|
5521
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5522
|
+
*/
|
|
5523
|
+
GatewayRouteMethod: string
|
|
5524
|
+
/**
|
|
5525
|
+
* 4层端口
|
|
5526
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5527
|
+
*/
|
|
5528
|
+
GatewayRoutePort: number
|
|
5529
|
+
}
|
|
5530
|
+
|
|
4827
5531
|
/**
|
|
4828
5532
|
* DescribeSmsQuotas请求参数结构体
|
|
4829
5533
|
*/
|
|
@@ -5258,20 +5962,20 @@ export interface DescribeAuthDomainsRequest {
|
|
|
5258
5962
|
*/
|
|
5259
5963
|
export interface FreezeCloudBaseRunServersResponse {
|
|
5260
5964
|
/**
|
|
5261
|
-
*
|
|
5965
|
+
* 批量状态
|
|
5262
5966
|
成功:succ
|
|
5263
5967
|
失败:fail
|
|
5264
5968
|
部分:partial(部分成功、部分失败)
|
|
5265
5969
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5266
5970
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5267
5971
|
*/
|
|
5268
|
-
Result
|
|
5972
|
+
Result?: string
|
|
5269
5973
|
/**
|
|
5270
5974
|
* 冻结失败服务列表
|
|
5271
5975
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5272
5976
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5273
5977
|
*/
|
|
5274
|
-
FailServerList
|
|
5978
|
+
FailServerList?: Array<string>
|
|
5275
5979
|
/**
|
|
5276
5980
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5277
5981
|
*/
|
|
@@ -5372,6 +6076,111 @@ export interface CloudBaseRunForGatewayConf {
|
|
|
5372
6076
|
ConfigType?: number
|
|
5373
6077
|
}
|
|
5374
6078
|
|
|
6079
|
+
/**
|
|
6080
|
+
* 网关信息
|
|
6081
|
+
*/
|
|
6082
|
+
export interface GatewayItem {
|
|
6083
|
+
/**
|
|
6084
|
+
* 用户uin
|
|
6085
|
+
*/
|
|
6086
|
+
Uin: string
|
|
6087
|
+
/**
|
|
6088
|
+
* 用户appid
|
|
6089
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6090
|
+
*/
|
|
6091
|
+
AppId: number
|
|
6092
|
+
/**
|
|
6093
|
+
* 环境id
|
|
6094
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6095
|
+
*/
|
|
6096
|
+
EnvId: string
|
|
6097
|
+
/**
|
|
6098
|
+
* Gateway唯一id
|
|
6099
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6100
|
+
*/
|
|
6101
|
+
GatewayId: string
|
|
6102
|
+
/**
|
|
6103
|
+
* Gateway名称
|
|
6104
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6105
|
+
*/
|
|
6106
|
+
GatewayName: string
|
|
6107
|
+
/**
|
|
6108
|
+
* Gateway类型
|
|
6109
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6110
|
+
*/
|
|
6111
|
+
GatewayType: string
|
|
6112
|
+
/**
|
|
6113
|
+
* Gateway描述
|
|
6114
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6115
|
+
*/
|
|
6116
|
+
GatewayDesc: string
|
|
6117
|
+
/**
|
|
6118
|
+
* 套餐版本
|
|
6119
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6120
|
+
*/
|
|
6121
|
+
PackageVersion: string
|
|
6122
|
+
/**
|
|
6123
|
+
* 套餐唯一id
|
|
6124
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6125
|
+
*/
|
|
6126
|
+
PackageId: number
|
|
6127
|
+
/**
|
|
6128
|
+
* vpc唯一id
|
|
6129
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6130
|
+
*/
|
|
6131
|
+
VpcId: string
|
|
6132
|
+
/**
|
|
6133
|
+
* 子网id
|
|
6134
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6135
|
+
*/
|
|
6136
|
+
SubnetIds: Array<string>
|
|
6137
|
+
/**
|
|
6138
|
+
* 网关状态
|
|
6139
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6140
|
+
*/
|
|
6141
|
+
Status: string
|
|
6142
|
+
/**
|
|
6143
|
+
* l5地址
|
|
6144
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6145
|
+
*/
|
|
6146
|
+
L5Addr: string
|
|
6147
|
+
/**
|
|
6148
|
+
* 地域
|
|
6149
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6150
|
+
*/
|
|
6151
|
+
Region: string
|
|
6152
|
+
/**
|
|
6153
|
+
* 隔离时间
|
|
6154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6155
|
+
*/
|
|
6156
|
+
IsolateTime: string
|
|
6157
|
+
/**
|
|
6158
|
+
* 到期时间
|
|
6159
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6160
|
+
*/
|
|
6161
|
+
ExpireTime: string
|
|
6162
|
+
/**
|
|
6163
|
+
* 创建时间
|
|
6164
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6165
|
+
*/
|
|
6166
|
+
CreateTime: string
|
|
6167
|
+
/**
|
|
6168
|
+
* 变更时间
|
|
6169
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6170
|
+
*/
|
|
6171
|
+
UpdateTime: string
|
|
6172
|
+
/**
|
|
6173
|
+
* 允许未登录访问
|
|
6174
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6175
|
+
*/
|
|
6176
|
+
AllowUncertified: number
|
|
6177
|
+
/**
|
|
6178
|
+
* 网关版本限额
|
|
6179
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6180
|
+
*/
|
|
6181
|
+
VersionNumLimit?: number
|
|
6182
|
+
}
|
|
6183
|
+
|
|
5375
6184
|
/**
|
|
5376
6185
|
* 扩展文件信息
|
|
5377
6186
|
*/
|
|
@@ -5394,6 +6203,32 @@ export interface ExtensionFileInfo {
|
|
|
5394
6203
|
MaxSize: number
|
|
5395
6204
|
}
|
|
5396
6205
|
|
|
6206
|
+
/**
|
|
6207
|
+
* 安全网关自定义配置
|
|
6208
|
+
*/
|
|
6209
|
+
export interface WxGatewayCustomConfig {
|
|
6210
|
+
/**
|
|
6211
|
+
* 是否开启x-real-ip
|
|
6212
|
+
*/
|
|
6213
|
+
IsOpenXRealIp?: boolean
|
|
6214
|
+
/**
|
|
6215
|
+
* 封禁配置
|
|
6216
|
+
*/
|
|
6217
|
+
BanConfig?: BanConfig
|
|
6218
|
+
/**
|
|
6219
|
+
* 获取源ip方式,PPV1(Proxy Protocol V1)、PPV2(Proxy Protocol V2)、TOA(tcp option address)
|
|
6220
|
+
*/
|
|
6221
|
+
SourceIpType?: string
|
|
6222
|
+
/**
|
|
6223
|
+
* 日志信息
|
|
6224
|
+
*/
|
|
6225
|
+
LogConfig?: CustomLogConfig
|
|
6226
|
+
/**
|
|
6227
|
+
* 是否开启http1.0
|
|
6228
|
+
*/
|
|
6229
|
+
IsAcceptHttpOne?: boolean
|
|
6230
|
+
}
|
|
6231
|
+
|
|
5397
6232
|
/**
|
|
5398
6233
|
* Key-Value类型,模拟的 object 类型
|
|
5399
6234
|
*/
|
|
@@ -5614,6 +6449,20 @@ export interface DescribeExtensionUploadInfoResponse {
|
|
|
5614
6449
|
RequestId?: string
|
|
5615
6450
|
}
|
|
5616
6451
|
|
|
6452
|
+
/**
|
|
6453
|
+
* TurnOnStandaloneGateway返回参数结构体
|
|
6454
|
+
*/
|
|
6455
|
+
export interface TurnOnStandaloneGatewayResponse {
|
|
6456
|
+
/**
|
|
6457
|
+
* 小租户网关开启状态
|
|
6458
|
+
*/
|
|
6459
|
+
Status: string
|
|
6460
|
+
/**
|
|
6461
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6462
|
+
*/
|
|
6463
|
+
RequestId?: string
|
|
6464
|
+
}
|
|
6465
|
+
|
|
5617
6466
|
/**
|
|
5618
6467
|
* ModifyEnv请求参数结构体
|
|
5619
6468
|
*/
|