tencentcloud-sdk-nodejs-tcb 4.0.1007 → 4.0.1009
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/package.json +1 -1
- package/products.md +44 -44
- package/src/services/tcb/v20180608/tcb_client.ts +3 -2
- package/src/services/tcb/v20180608/tcb_models.ts +181 -294
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +2 -2
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +1 -1
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +180 -294
|
@@ -103,18 +103,18 @@ export interface OrderInfo {
|
|
|
103
103
|
/**
|
|
104
104
|
* 订单号
|
|
105
105
|
*/
|
|
106
|
-
TranId
|
|
106
|
+
TranId?: string
|
|
107
107
|
/**
|
|
108
108
|
* 订单要切换的套餐ID
|
|
109
109
|
*/
|
|
110
|
-
PackageId
|
|
110
|
+
PackageId?: string
|
|
111
111
|
/**
|
|
112
112
|
* 订单类型
|
|
113
113
|
<li>1 购买</li>
|
|
114
114
|
<li>2 续费</li>
|
|
115
115
|
<li>3 变配</li>
|
|
116
116
|
*/
|
|
117
|
-
TranType
|
|
117
|
+
TranType?: string
|
|
118
118
|
/**
|
|
119
119
|
* 订单状态。
|
|
120
120
|
<li>1未支付</li>
|
|
@@ -126,42 +126,39 @@ export interface OrderInfo {
|
|
|
126
126
|
<li>7 已取消</li>
|
|
127
127
|
<li>100 已删除</li>
|
|
128
128
|
*/
|
|
129
|
-
TranStatus
|
|
129
|
+
TranStatus?: string
|
|
130
130
|
/**
|
|
131
131
|
* 订单更新时间
|
|
132
132
|
*/
|
|
133
|
-
UpdateTime
|
|
133
|
+
UpdateTime?: string
|
|
134
134
|
/**
|
|
135
135
|
* 订单创建时间
|
|
136
136
|
*/
|
|
137
|
-
CreateTime
|
|
137
|
+
CreateTime?: string
|
|
138
138
|
/**
|
|
139
139
|
* 付费模式.
|
|
140
140
|
<li>prepayment 预付费</li>
|
|
141
141
|
<li>postpaid 后付费</li>
|
|
142
142
|
*/
|
|
143
|
-
PayMode
|
|
143
|
+
PayMode?: string
|
|
144
144
|
/**
|
|
145
145
|
* 订单绑定的扩展ID
|
|
146
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
147
146
|
*/
|
|
148
|
-
ExtensionId
|
|
147
|
+
ExtensionId?: string
|
|
149
148
|
/**
|
|
150
149
|
* 资源初始化结果(仅当ExtensionId不为空时有效): successful(初始化成功), failed(初始化失败), doing(初始化进行中), init(准备初始化)
|
|
151
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
152
150
|
*/
|
|
153
|
-
ResourceReady
|
|
151
|
+
ResourceReady?: string
|
|
154
152
|
/**
|
|
155
153
|
* 安装标记。建议使用方统一转大小写之后再判断。
|
|
156
154
|
<li>QuickStart:快速启动来源</li>
|
|
157
155
|
<li>Activity:活动来源</li>
|
|
158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
159
156
|
*/
|
|
160
|
-
Flag
|
|
157
|
+
Flag?: string
|
|
161
158
|
/**
|
|
162
159
|
* 下单时的参数
|
|
163
160
|
*/
|
|
164
|
-
ReqBody
|
|
161
|
+
ReqBody?: string
|
|
165
162
|
}
|
|
166
163
|
|
|
167
164
|
/**
|
|
@@ -216,12 +213,10 @@ export interface DescribeCloudBaseRunServerVersionRequest {
|
|
|
216
213
|
export interface CbrPackageInfo {
|
|
217
214
|
/**
|
|
218
215
|
* 代码包名称
|
|
219
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
220
216
|
*/
|
|
221
217
|
PackageName?: string
|
|
222
218
|
/**
|
|
223
219
|
* 代码包版本
|
|
224
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
225
220
|
*/
|
|
226
221
|
PackageVersion?: string
|
|
227
222
|
}
|
|
@@ -602,6 +597,23 @@ export interface DescribeEndUsersRequest {
|
|
|
602
597
|
* DescribeCloudBaseRunPodList返回参数结构体
|
|
603
598
|
*/
|
|
604
599
|
export interface DescribeCloudBaseRunPodListResponse {
|
|
600
|
+
/**
|
|
601
|
+
* 偏移量
|
|
602
|
+
*/
|
|
603
|
+
Offset?: number
|
|
604
|
+
/**
|
|
605
|
+
* 分页大小
|
|
606
|
+
*/
|
|
607
|
+
Limit?: number
|
|
608
|
+
/**
|
|
609
|
+
* 总数
|
|
610
|
+
*/
|
|
611
|
+
TotalCount?: number
|
|
612
|
+
/**
|
|
613
|
+
* 容器列表
|
|
614
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
615
|
+
*/
|
|
616
|
+
PodList?: Array<CloudBaseRunVersionPod>
|
|
605
617
|
/**
|
|
606
618
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
607
619
|
*/
|
|
@@ -659,15 +671,15 @@ export interface LogResObject {
|
|
|
659
671
|
/**
|
|
660
672
|
* 获取更多检索结果的游标
|
|
661
673
|
*/
|
|
662
|
-
Context
|
|
674
|
+
Context?: string
|
|
663
675
|
/**
|
|
664
676
|
* 搜索结果是否已经全部返回
|
|
665
677
|
*/
|
|
666
|
-
ListOver
|
|
678
|
+
ListOver?: boolean
|
|
667
679
|
/**
|
|
668
680
|
* 日志内容信息
|
|
669
681
|
*/
|
|
670
|
-
Results
|
|
682
|
+
Results?: Array<LogObject>
|
|
671
683
|
}
|
|
672
684
|
|
|
673
685
|
/**
|
|
@@ -877,6 +889,24 @@ export interface DescribeSpecialCostItemsRequest {
|
|
|
877
889
|
EndTime?: string
|
|
878
890
|
}
|
|
879
891
|
|
|
892
|
+
/**
|
|
893
|
+
* TurnOnStandaloneGateway请求参数结构体
|
|
894
|
+
*/
|
|
895
|
+
export interface TurnOnStandaloneGatewayRequest {
|
|
896
|
+
/**
|
|
897
|
+
* 环境ID
|
|
898
|
+
*/
|
|
899
|
+
EnvId: string
|
|
900
|
+
/**
|
|
901
|
+
* 网关名称
|
|
902
|
+
*/
|
|
903
|
+
GatewayName: string
|
|
904
|
+
/**
|
|
905
|
+
* 服务名称列表
|
|
906
|
+
*/
|
|
907
|
+
ServiceNameList: Array<string>
|
|
908
|
+
}
|
|
909
|
+
|
|
880
910
|
/**
|
|
881
911
|
* CreatePostpayPackage请求参数结构体
|
|
882
912
|
*/
|
|
@@ -1275,14 +1305,17 @@ export interface DescribeCloudBaseRunServerRequest {
|
|
|
1275
1305
|
export interface CloudBaseRunEmptyDirVolumeSource {
|
|
1276
1306
|
/**
|
|
1277
1307
|
* 启用emptydir数据卷
|
|
1308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1278
1309
|
*/
|
|
1279
1310
|
EnableEmptyDirVolume?: boolean
|
|
1280
1311
|
/**
|
|
1281
1312
|
* "","Memory","HugePages"
|
|
1313
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1282
1314
|
*/
|
|
1283
1315
|
Medium?: string
|
|
1284
1316
|
/**
|
|
1285
1317
|
* emptydir数据卷大小
|
|
1318
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1286
1319
|
*/
|
|
1287
1320
|
SizeLimit?: string
|
|
1288
1321
|
}
|
|
@@ -1738,50 +1771,41 @@ export interface FreezeCloudBaseRunServersRequest {
|
|
|
1738
1771
|
export interface BaasPackageInfo {
|
|
1739
1772
|
/**
|
|
1740
1773
|
* DAU产品套餐ID
|
|
1741
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1742
1774
|
*/
|
|
1743
1775
|
PackageName?: string
|
|
1744
1776
|
/**
|
|
1745
1777
|
* DAU套餐中文名称
|
|
1746
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1747
1778
|
*/
|
|
1748
1779
|
PackageTitle?: string
|
|
1749
1780
|
/**
|
|
1750
1781
|
* 套餐分组
|
|
1751
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1752
1782
|
*/
|
|
1753
1783
|
GroupName?: string
|
|
1754
1784
|
/**
|
|
1755
1785
|
* 套餐分组中文名
|
|
1756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1757
1786
|
*/
|
|
1758
1787
|
GroupTitle?: string
|
|
1759
1788
|
/**
|
|
1760
1789
|
* json格式化计费标签,例如:
|
|
1761
1790
|
{"pid":2, "cids":{"create": 2, "renew": 2, "modify": 2}, "productCode":"p_tcb_mp", "subProductCode":"sp_tcb_mp_cloudbase_dau"}
|
|
1762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1763
1791
|
*/
|
|
1764
1792
|
BillTags?: string
|
|
1765
1793
|
/**
|
|
1766
1794
|
* json格式化用户资源限制,例如:
|
|
1767
1795
|
{"Qps":1000,"InvokeNum":{"TimeUnit":"m", "Unit":"万次", "MaxSize": 100},"Capacity":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}, "Cdn":{"Flux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}, "BackFlux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}},"Scf":{"Concurrency":1000,"OutFlux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100},"MemoryUse":{"TimeUnit":"m", "Unit":"WGBS", "MaxSize": 100000}}}
|
|
1768
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1769
1796
|
*/
|
|
1770
1797
|
ResourceLimit?: string
|
|
1771
1798
|
/**
|
|
1772
1799
|
* json格式化高级限制,例如:
|
|
1773
1800
|
{"CMSEnable":false,"ProvisionedConcurrencyMem":512000, "PictureProcessing":false, "SecurityAudit":false, "RealTimePush":false, "TemplateMessageBatchPush":false, "Payment":false}
|
|
1774
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1775
1801
|
*/
|
|
1776
1802
|
AdvanceLimit?: string
|
|
1777
1803
|
/**
|
|
1778
1804
|
* 套餐描述
|
|
1779
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1780
1805
|
*/
|
|
1781
1806
|
PackageDescription?: string
|
|
1782
1807
|
/**
|
|
1783
1808
|
* 是否对外展示
|
|
1784
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1785
1809
|
*/
|
|
1786
1810
|
IsExternal?: boolean
|
|
1787
1811
|
}
|
|
@@ -1818,7 +1842,6 @@ export interface DescribeQuotaDataResponse {
|
|
|
1818
1842
|
Value?: number
|
|
1819
1843
|
/**
|
|
1820
1844
|
* 指标的附加值信息
|
|
1821
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1822
1845
|
*/
|
|
1823
1846
|
SubValue?: string
|
|
1824
1847
|
/**
|
|
@@ -1868,27 +1891,27 @@ export interface ActivityInfoItem {
|
|
|
1868
1891
|
/**
|
|
1869
1892
|
* 活动id
|
|
1870
1893
|
*/
|
|
1871
|
-
ActivityId
|
|
1894
|
+
ActivityId?: number
|
|
1872
1895
|
/**
|
|
1873
1896
|
* 记录插入时间
|
|
1874
1897
|
*/
|
|
1875
|
-
CreateTime
|
|
1898
|
+
CreateTime?: string
|
|
1876
1899
|
/**
|
|
1877
1900
|
* 记录最后一次变更时间
|
|
1878
1901
|
*/
|
|
1879
|
-
UpdateTime
|
|
1902
|
+
UpdateTime?: string
|
|
1880
1903
|
/**
|
|
1881
1904
|
* 活动开始时间
|
|
1882
1905
|
*/
|
|
1883
|
-
StartTime
|
|
1906
|
+
StartTime?: string
|
|
1884
1907
|
/**
|
|
1885
1908
|
* 活动结束时间
|
|
1886
1909
|
*/
|
|
1887
|
-
ExpireTime
|
|
1910
|
+
ExpireTime?: string
|
|
1888
1911
|
/**
|
|
1889
1912
|
* 自定义备注信息
|
|
1890
1913
|
*/
|
|
1891
|
-
Tag
|
|
1914
|
+
Tag?: string
|
|
1892
1915
|
}
|
|
1893
1916
|
|
|
1894
1917
|
/**
|
|
@@ -1946,12 +1969,12 @@ export interface FunctionInfo {
|
|
|
1946
1969
|
/**
|
|
1947
1970
|
* 命名空间
|
|
1948
1971
|
*/
|
|
1949
|
-
Namespace
|
|
1972
|
+
Namespace?: string
|
|
1950
1973
|
/**
|
|
1951
1974
|
* 所属地域。
|
|
1952
1975
|
当前支持ap-shanghai
|
|
1953
1976
|
*/
|
|
1954
|
-
Region
|
|
1977
|
+
Region?: string
|
|
1955
1978
|
}
|
|
1956
1979
|
|
|
1957
1980
|
/**
|
|
@@ -2063,7 +2086,7 @@ export interface DescribeActivityRecordResponse {
|
|
|
2063
2086
|
/**
|
|
2064
2087
|
* 活动记录详情
|
|
2065
2088
|
*/
|
|
2066
|
-
ActivityRecords
|
|
2089
|
+
ActivityRecords?: Array<ActivityRecordItem>
|
|
2067
2090
|
/**
|
|
2068
2091
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2069
2092
|
*/
|
|
@@ -2354,7 +2377,6 @@ export interface DescribeEnvPostpaidDeductRequest {
|
|
|
2354
2377
|
export interface CustomHeader {
|
|
2355
2378
|
/**
|
|
2356
2379
|
* 请求添加头部配置
|
|
2357
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2358
2380
|
*/
|
|
2359
2381
|
RequestToAddList?: Array<CustomRequestToAdd>
|
|
2360
2382
|
}
|
|
@@ -2410,18 +2432,14 @@ export interface DescribeEnvFreeQuotaRequest {
|
|
|
2410
2432
|
|
|
2411
2433
|
/**
|
|
2412
2434
|
* cloudrun安全特性能力
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
2435
|
*/
|
|
2416
2436
|
export interface CloudBaseCapabilities {
|
|
2417
2437
|
/**
|
|
2418
2438
|
* 启用安全能力项列表
|
|
2419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2420
2439
|
*/
|
|
2421
2440
|
Add?: Array<string>
|
|
2422
2441
|
/**
|
|
2423
2442
|
* 禁用安全能力向列表
|
|
2424
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2425
2443
|
*/
|
|
2426
2444
|
Drop?: Array<string>
|
|
2427
2445
|
}
|
|
@@ -2432,17 +2450,14 @@ export interface CloudBaseCapabilities {
|
|
|
2432
2450
|
export interface CbrRepoInfo {
|
|
2433
2451
|
/**
|
|
2434
2452
|
* 仓库名称
|
|
2435
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2436
2453
|
*/
|
|
2437
2454
|
Repo?: string
|
|
2438
2455
|
/**
|
|
2439
2456
|
* 仓库平台
|
|
2440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2441
2457
|
*/
|
|
2442
2458
|
RepoType?: string
|
|
2443
2459
|
/**
|
|
2444
2460
|
* 仓库语言
|
|
2445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2446
2461
|
*/
|
|
2447
2462
|
RepoLanguage?: string
|
|
2448
2463
|
/**
|
|
@@ -2564,27 +2579,27 @@ export interface LogObject {
|
|
|
2564
2579
|
/**
|
|
2565
2580
|
* 日志属于的 topic ID
|
|
2566
2581
|
*/
|
|
2567
|
-
TopicId
|
|
2582
|
+
TopicId?: string
|
|
2568
2583
|
/**
|
|
2569
2584
|
* 日志主题的名字
|
|
2570
2585
|
*/
|
|
2571
|
-
TopicName
|
|
2586
|
+
TopicName?: string
|
|
2572
2587
|
/**
|
|
2573
2588
|
* 日志时间
|
|
2574
2589
|
*/
|
|
2575
|
-
Timestamp
|
|
2590
|
+
Timestamp?: string
|
|
2576
2591
|
/**
|
|
2577
2592
|
* 日志内容
|
|
2578
2593
|
*/
|
|
2579
|
-
Content
|
|
2594
|
+
Content?: string
|
|
2580
2595
|
/**
|
|
2581
2596
|
* 采集路径
|
|
2582
2597
|
*/
|
|
2583
|
-
FileName
|
|
2598
|
+
FileName?: string
|
|
2584
2599
|
/**
|
|
2585
2600
|
* 日志来源设备
|
|
2586
2601
|
*/
|
|
2587
|
-
Source
|
|
2602
|
+
Source?: string
|
|
2588
2603
|
}
|
|
2589
2604
|
|
|
2590
2605
|
/**
|
|
@@ -2627,37 +2642,30 @@ export interface ModifyDatabaseACLResponse {
|
|
|
2627
2642
|
export interface CloudBaseEsInfo {
|
|
2628
2643
|
/**
|
|
2629
2644
|
* es的id
|
|
2630
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2631
2645
|
*/
|
|
2632
2646
|
Id?: number
|
|
2633
2647
|
/**
|
|
2634
2648
|
* secret名字
|
|
2635
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2636
2649
|
*/
|
|
2637
2650
|
SecretName?: string
|
|
2638
2651
|
/**
|
|
2639
2652
|
* ip地址
|
|
2640
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2641
2653
|
*/
|
|
2642
2654
|
Ip?: string
|
|
2643
2655
|
/**
|
|
2644
2656
|
* 端口
|
|
2645
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2646
2657
|
*/
|
|
2647
2658
|
Port?: number
|
|
2648
2659
|
/**
|
|
2649
2660
|
* 索引
|
|
2650
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2651
2661
|
*/
|
|
2652
2662
|
Index?: string
|
|
2653
2663
|
/**
|
|
2654
2664
|
* 用户名
|
|
2655
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2656
2665
|
*/
|
|
2657
2666
|
Account?: string
|
|
2658
2667
|
/**
|
|
2659
2668
|
* 密码
|
|
2660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2661
2669
|
*/
|
|
2662
2670
|
Password?: string
|
|
2663
2671
|
}
|
|
@@ -2668,34 +2676,28 @@ export interface CloudBaseEsInfo {
|
|
|
2668
2676
|
export interface PostPaidEnvDeductInfo {
|
|
2669
2677
|
/**
|
|
2670
2678
|
* 资源方
|
|
2671
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2672
2679
|
*/
|
|
2673
|
-
ResourceType
|
|
2680
|
+
ResourceType?: string
|
|
2674
2681
|
/**
|
|
2675
2682
|
* 指标名
|
|
2676
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2677
2683
|
*/
|
|
2678
|
-
MetricName
|
|
2684
|
+
MetricName?: string
|
|
2679
2685
|
/**
|
|
2680
2686
|
* 按量计费详情
|
|
2681
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2682
2687
|
*/
|
|
2683
|
-
ResQuota
|
|
2688
|
+
ResQuota?: number
|
|
2684
2689
|
/**
|
|
2685
2690
|
* 资源包抵扣详情
|
|
2686
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2687
2691
|
*/
|
|
2688
|
-
PkgQuota
|
|
2692
|
+
PkgQuota?: number
|
|
2689
2693
|
/**
|
|
2690
2694
|
* 免费额度抵扣详情
|
|
2691
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2692
2695
|
*/
|
|
2693
|
-
FreeQuota
|
|
2696
|
+
FreeQuota?: number
|
|
2694
2697
|
/**
|
|
2695
2698
|
* 环境id
|
|
2696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2697
2699
|
*/
|
|
2698
|
-
EnvId
|
|
2700
|
+
EnvId?: string
|
|
2699
2701
|
}
|
|
2700
2702
|
|
|
2701
2703
|
/**
|
|
@@ -2721,12 +2723,12 @@ export interface DescribeCloudBaseRunOperationTypesResponse {
|
|
|
2721
2723
|
* 操作类型
|
|
2722
2724
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2723
2725
|
*/
|
|
2724
|
-
Action
|
|
2726
|
+
Action?: Array<string>
|
|
2725
2727
|
/**
|
|
2726
2728
|
* 服务名列表
|
|
2727
2729
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2728
2730
|
*/
|
|
2729
|
-
ServerName
|
|
2731
|
+
ServerName?: Array<string>
|
|
2730
2732
|
/**
|
|
2731
2733
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2732
2734
|
*/
|
|
@@ -2739,22 +2741,18 @@ export interface DescribeCloudBaseRunOperationTypesResponse {
|
|
|
2739
2741
|
export interface SpecialCostItem {
|
|
2740
2742
|
/**
|
|
2741
2743
|
* 上报日期
|
|
2742
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2743
2744
|
*/
|
|
2744
2745
|
ReportDate?: string
|
|
2745
2746
|
/**
|
|
2746
2747
|
* 腾讯云uin
|
|
2747
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2748
2748
|
*/
|
|
2749
2749
|
Uin?: string
|
|
2750
2750
|
/**
|
|
2751
2751
|
* 资源id:环境id
|
|
2752
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2753
2752
|
*/
|
|
2754
2753
|
EnvId?: string
|
|
2755
2754
|
/**
|
|
2756
2755
|
* 上报任务状态
|
|
2757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2758
2756
|
*/
|
|
2759
2757
|
Status?: string
|
|
2760
2758
|
}
|
|
@@ -2820,84 +2818,68 @@ export interface EnvInfo {
|
|
|
2820
2818
|
Functions?: Array<FunctionInfo>
|
|
2821
2819
|
/**
|
|
2822
2820
|
* tcb产品套餐ID,参考DescribePackages接口的返回值。
|
|
2823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2824
2821
|
*/
|
|
2825
2822
|
PackageId?: string
|
|
2826
2823
|
/**
|
|
2827
2824
|
* 套餐中文名称,参考DescribePackages接口的返回值。
|
|
2828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2829
2825
|
*/
|
|
2830
2826
|
PackageName?: string
|
|
2831
2827
|
/**
|
|
2832
2828
|
* 云日志服务列表
|
|
2833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2834
2829
|
*/
|
|
2835
2830
|
LogServices?: Array<LogServiceInfo>
|
|
2836
2831
|
/**
|
|
2837
2832
|
* 静态资源信息
|
|
2838
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2839
2833
|
*/
|
|
2840
2834
|
StaticStorages?: Array<StaticStorageInfo>
|
|
2841
2835
|
/**
|
|
2842
2836
|
* 是否到期自动降为免费版
|
|
2843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2844
2837
|
*/
|
|
2845
2838
|
IsAutoDegrade?: boolean
|
|
2846
2839
|
/**
|
|
2847
2840
|
* 环境渠道
|
|
2848
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2849
2841
|
*/
|
|
2850
2842
|
EnvChannel?: string
|
|
2851
2843
|
/**
|
|
2852
2844
|
* 支付方式。包含以下取值:
|
|
2853
2845
|
<li> prepayment:预付费</li>
|
|
2854
2846
|
<li> postpaid:后付费</li>
|
|
2855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2856
2847
|
*/
|
|
2857
2848
|
PayMode?: string
|
|
2858
2849
|
/**
|
|
2859
2850
|
* 是否为默认环境
|
|
2860
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2861
2851
|
*/
|
|
2862
2852
|
IsDefault?: boolean
|
|
2863
2853
|
/**
|
|
2864
2854
|
* 环境所属地域
|
|
2865
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2866
2855
|
*/
|
|
2867
2856
|
Region?: string
|
|
2868
2857
|
/**
|
|
2869
2858
|
* 环境标签列表
|
|
2870
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2871
2859
|
*/
|
|
2872
2860
|
Tags?: Array<Tag>
|
|
2873
2861
|
/**
|
|
2874
2862
|
* 自定义日志服务
|
|
2875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2876
2863
|
*/
|
|
2877
2864
|
CustomLogServices?: Array<ClsInfo>
|
|
2878
2865
|
/**
|
|
2879
2866
|
* 环境类型:baas, run, hoting, weda
|
|
2880
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2881
2867
|
*/
|
|
2882
2868
|
EnvType?: string
|
|
2883
2869
|
/**
|
|
2884
2870
|
* 是否是dau新套餐
|
|
2885
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2886
2871
|
*/
|
|
2887
2872
|
IsDauPackage?: boolean
|
|
2888
2873
|
/**
|
|
2889
2874
|
* 套餐类型:空\baas\tcbr
|
|
2890
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2891
2875
|
*/
|
|
2892
2876
|
PackageType?: string
|
|
2893
2877
|
/**
|
|
2894
2878
|
* 架构类型
|
|
2895
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2896
2879
|
*/
|
|
2897
2880
|
ArchitectureType?: string
|
|
2898
2881
|
/**
|
|
2899
2882
|
* 回收标志,默认为空
|
|
2900
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2901
2883
|
*/
|
|
2902
2884
|
Recycle?: string
|
|
2903
2885
|
}
|
|
@@ -2966,52 +2948,42 @@ export interface DescribeCloudBaseProjectVersionListRequest {
|
|
|
2966
2948
|
export interface CodeSource {
|
|
2967
2949
|
/**
|
|
2968
2950
|
* 类型, 可能的枚举: "coding","package","package_url","github","gitlab","gitee","rawcode"
|
|
2969
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2970
2951
|
*/
|
|
2971
2952
|
Type?: string
|
|
2972
2953
|
/**
|
|
2973
2954
|
* 下载链接
|
|
2974
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2975
2955
|
*/
|
|
2976
2956
|
Url?: string
|
|
2977
2957
|
/**
|
|
2978
2958
|
* 名称
|
|
2979
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2980
2959
|
*/
|
|
2981
2960
|
Name?: string
|
|
2982
2961
|
/**
|
|
2983
2962
|
* 工作目录
|
|
2984
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2985
2963
|
*/
|
|
2986
2964
|
WorkDir?: string
|
|
2987
2965
|
/**
|
|
2988
2966
|
* code包名, type为coding的时候需要填写
|
|
2989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2990
2967
|
*/
|
|
2991
2968
|
CodingPackageName?: string
|
|
2992
2969
|
/**
|
|
2993
2970
|
* coding版本名, type为coding的时候需要填写
|
|
2994
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2995
2971
|
*/
|
|
2996
2972
|
CodingPackageVersion?: string
|
|
2997
2973
|
/**
|
|
2998
2974
|
* 源码
|
|
2999
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3000
2975
|
*/
|
|
3001
2976
|
RawCode?: string
|
|
3002
2977
|
/**
|
|
3003
2978
|
* 代码分支
|
|
3004
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3005
2979
|
*/
|
|
3006
2980
|
Branch?: string
|
|
3007
2981
|
/**
|
|
3008
2982
|
* coding项目ID,type为coding时需要填写
|
|
3009
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3010
2983
|
*/
|
|
3011
2984
|
ProjectId?: number
|
|
3012
2985
|
/**
|
|
3013
2986
|
* coding项目
|
|
3014
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3015
2987
|
*/
|
|
3016
2988
|
ProjectName?: string
|
|
3017
2989
|
}
|
|
@@ -3133,7 +3105,6 @@ export interface CreateAuthDomainRequest {
|
|
|
3133
3105
|
export interface DescribeEnvPostpaidDeductResponse {
|
|
3134
3106
|
/**
|
|
3135
3107
|
* 指标抵扣详情列表
|
|
3136
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3137
3108
|
*/
|
|
3138
3109
|
PostPaidEnvDeductInfoList?: Array<PostPaidEnvDeductInfo>
|
|
3139
3110
|
/**
|
|
@@ -3501,7 +3472,6 @@ export interface CreatePostpayPackageResponse {
|
|
|
3501
3472
|
TranId?: string
|
|
3502
3473
|
/**
|
|
3503
3474
|
* 环境ID
|
|
3504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3505
3475
|
*/
|
|
3506
3476
|
EnvId?: string
|
|
3507
3477
|
/**
|
|
@@ -3566,12 +3536,10 @@ export interface DeleteWxGatewayRouteResponse {
|
|
|
3566
3536
|
export interface DescribeCloudBaseProjectVersionListResponse {
|
|
3567
3537
|
/**
|
|
3568
3538
|
* 版本列表
|
|
3569
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3570
3539
|
*/
|
|
3571
3540
|
ProjectVersions?: Array<CloudBaseProjectVersion>
|
|
3572
3541
|
/**
|
|
3573
3542
|
* 总个数
|
|
3574
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3575
3543
|
*/
|
|
3576
3544
|
TotalCount?: number
|
|
3577
3545
|
/**
|
|
@@ -3728,9 +3696,8 @@ export interface CloudBaseRunServiceVolumeMount {
|
|
|
3728
3696
|
export interface DescribeSpecialCostItemsResponse {
|
|
3729
3697
|
/**
|
|
3730
3698
|
* 1分钱抵扣详情
|
|
3731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3732
3699
|
*/
|
|
3733
|
-
SpecialCostItems
|
|
3700
|
+
SpecialCostItems?: Array<SpecialCostItem>
|
|
3734
3701
|
/**
|
|
3735
3702
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3736
3703
|
*/
|
|
@@ -3821,19 +3788,16 @@ export interface DescribeWxGatewaysRequest {
|
|
|
3821
3788
|
export interface CloudBaseRunKVPriority {
|
|
3822
3789
|
/**
|
|
3823
3790
|
* 参数的Key
|
|
3824
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3825
3791
|
*/
|
|
3826
|
-
Key
|
|
3792
|
+
Key?: string
|
|
3827
3793
|
/**
|
|
3828
3794
|
* 参数的Value
|
|
3829
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3830
3795
|
*/
|
|
3831
|
-
Value
|
|
3796
|
+
Value?: string
|
|
3832
3797
|
/**
|
|
3833
3798
|
* 优先级
|
|
3834
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3835
3799
|
*/
|
|
3836
|
-
Priority
|
|
3800
|
+
Priority?: number
|
|
3837
3801
|
}
|
|
3838
3802
|
|
|
3839
3803
|
/**
|
|
@@ -3864,37 +3828,37 @@ export interface CloudBaseRunVpcSubnet {
|
|
|
3864
3828
|
* 子网id
|
|
3865
3829
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3866
3830
|
*/
|
|
3867
|
-
Id
|
|
3831
|
+
Id?: string
|
|
3868
3832
|
/**
|
|
3869
3833
|
* 子网的ipv4
|
|
3870
3834
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3871
3835
|
*/
|
|
3872
|
-
Cidr
|
|
3836
|
+
Cidr?: string
|
|
3873
3837
|
/**
|
|
3874
3838
|
* 可用区
|
|
3875
3839
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3876
3840
|
*/
|
|
3877
|
-
Zone
|
|
3841
|
+
Zone?: string
|
|
3878
3842
|
/**
|
|
3879
3843
|
* 类型
|
|
3880
3844
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3881
3845
|
*/
|
|
3882
|
-
Type
|
|
3846
|
+
Type?: string
|
|
3883
3847
|
/**
|
|
3884
3848
|
* subnet类型
|
|
3885
3849
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3886
3850
|
*/
|
|
3887
|
-
Target
|
|
3851
|
+
Target?: string
|
|
3888
3852
|
/**
|
|
3889
3853
|
* 地域
|
|
3890
3854
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3891
3855
|
*/
|
|
3892
|
-
Region
|
|
3856
|
+
Region?: string
|
|
3893
3857
|
/**
|
|
3894
3858
|
* 名字
|
|
3895
3859
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3896
3860
|
*/
|
|
3897
|
-
Name
|
|
3861
|
+
Name?: string
|
|
3898
3862
|
}
|
|
3899
3863
|
|
|
3900
3864
|
/**
|
|
@@ -3907,38 +3871,32 @@ export interface PackageFreeQuotaInfo {
|
|
|
3907
3871
|
<li>CDN</li>
|
|
3908
3872
|
<li>FLEXDB</li>
|
|
3909
3873
|
<li>SCF</li>
|
|
3910
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3911
3874
|
*/
|
|
3912
|
-
ResourceType
|
|
3875
|
+
ResourceType?: string
|
|
3913
3876
|
/**
|
|
3914
3877
|
* 资源指标名称
|
|
3915
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3916
3878
|
*/
|
|
3917
|
-
ResourceMetric
|
|
3879
|
+
ResourceMetric?: string
|
|
3918
3880
|
/**
|
|
3919
3881
|
* 资源指标免费量
|
|
3920
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3921
3882
|
*/
|
|
3922
|
-
FreeQuota
|
|
3883
|
+
FreeQuota?: number
|
|
3923
3884
|
/**
|
|
3924
3885
|
* 指标单位
|
|
3925
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3926
3886
|
*/
|
|
3927
|
-
MetricUnit
|
|
3887
|
+
MetricUnit?: string
|
|
3928
3888
|
/**
|
|
3929
3889
|
* 免费量抵扣周期
|
|
3930
3890
|
<li>sum-month:以月为单位抵扣</li>
|
|
3931
3891
|
<li>sum-day:以天为单位抵扣</li>
|
|
3932
3892
|
<li>totalize:总容量抵扣</li>
|
|
3933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3934
3893
|
*/
|
|
3935
|
-
DeductType
|
|
3894
|
+
DeductType?: string
|
|
3936
3895
|
/**
|
|
3937
3896
|
* 免费量类型
|
|
3938
3897
|
<li>basic:通用量抵扣</li>
|
|
3939
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3940
3898
|
*/
|
|
3941
|
-
FreeQuotaType
|
|
3899
|
+
FreeQuotaType?: string
|
|
3942
3900
|
}
|
|
3943
3901
|
|
|
3944
3902
|
/**
|
|
@@ -3947,7 +3905,6 @@ export interface PackageFreeQuotaInfo {
|
|
|
3947
3905
|
export interface DescribeEnvFreeQuotaResponse {
|
|
3948
3906
|
/**
|
|
3949
3907
|
* 免费抵扣配额详情
|
|
3950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3951
3908
|
*/
|
|
3952
3909
|
QuotaItems?: Array<PostpayEnvQuota>
|
|
3953
3910
|
/**
|
|
@@ -3962,7 +3919,6 @@ export interface DescribeEnvFreeQuotaResponse {
|
|
|
3962
3919
|
export interface CreateAndDeployCloudBaseProjectResponse {
|
|
3963
3920
|
/**
|
|
3964
3921
|
* 环境Id
|
|
3965
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3966
3922
|
*/
|
|
3967
3923
|
EnvId?: string
|
|
3968
3924
|
/**
|
|
@@ -3977,27 +3933,22 @@ export interface CreateAndDeployCloudBaseProjectResponse {
|
|
|
3977
3933
|
export interface StaticStorageInfo {
|
|
3978
3934
|
/**
|
|
3979
3935
|
* 静态CDN域名
|
|
3980
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3981
3936
|
*/
|
|
3982
3937
|
StaticDomain?: string
|
|
3983
3938
|
/**
|
|
3984
3939
|
* 静态CDN默认文件夹,当前为根目录
|
|
3985
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3986
3940
|
*/
|
|
3987
3941
|
DefaultDirName?: string
|
|
3988
3942
|
/**
|
|
3989
3943
|
* 资源状态(process/online/offline/init)
|
|
3990
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3991
3944
|
*/
|
|
3992
3945
|
Status?: string
|
|
3993
3946
|
/**
|
|
3994
3947
|
* cos所属区域
|
|
3995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3996
3948
|
*/
|
|
3997
3949
|
Region?: string
|
|
3998
3950
|
/**
|
|
3999
3951
|
* bucket信息
|
|
4000
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4001
3952
|
*/
|
|
4002
3953
|
Bucket?: string
|
|
4003
3954
|
}
|
|
@@ -4229,7 +4180,7 @@ export interface DatabasesInfo {
|
|
|
4229
4180
|
/**
|
|
4230
4181
|
* 数据库唯一标识
|
|
4231
4182
|
*/
|
|
4232
|
-
InstanceId
|
|
4183
|
+
InstanceId?: string
|
|
4233
4184
|
/**
|
|
4234
4185
|
* 状态。包含以下取值:
|
|
4235
4186
|
<li>INITIALIZING:资源初始化中</li>
|
|
@@ -4237,17 +4188,16 @@ export interface DatabasesInfo {
|
|
|
4237
4188
|
<li>UNUSABLE:禁用,不可用</li>
|
|
4238
4189
|
<li>OVERDUE:资源过期</li>
|
|
4239
4190
|
*/
|
|
4240
|
-
Status
|
|
4191
|
+
Status?: string
|
|
4241
4192
|
/**
|
|
4242
4193
|
* 所属地域。
|
|
4243
4194
|
当前支持ap-shanghai
|
|
4244
4195
|
*/
|
|
4245
|
-
Region
|
|
4196
|
+
Region?: string
|
|
4246
4197
|
/**
|
|
4247
4198
|
* 更新时间
|
|
4248
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4249
4199
|
*/
|
|
4250
|
-
UpdateTime
|
|
4200
|
+
UpdateTime?: string
|
|
4251
4201
|
}
|
|
4252
4202
|
|
|
4253
4203
|
/**
|
|
@@ -4342,29 +4292,24 @@ export interface DescribeDatabaseACLRequest {
|
|
|
4342
4292
|
export interface SmsFreeQuota {
|
|
4343
4293
|
/**
|
|
4344
4294
|
* 免费量总条数
|
|
4345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4346
4295
|
*/
|
|
4347
|
-
FreeQuota
|
|
4296
|
+
FreeQuota?: number
|
|
4348
4297
|
/**
|
|
4349
4298
|
* 共计已使用总条数
|
|
4350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4351
4299
|
*/
|
|
4352
|
-
TotalUsedQuota
|
|
4300
|
+
TotalUsedQuota?: number
|
|
4353
4301
|
/**
|
|
4354
4302
|
* 免费周期起点,0000-00-00 00:00:00 形式
|
|
4355
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4356
4303
|
*/
|
|
4357
|
-
CycleStart
|
|
4304
|
+
CycleStart?: string
|
|
4358
4305
|
/**
|
|
4359
4306
|
* 免费周期终点,0000-00-00 00:00:00 形式
|
|
4360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4361
4307
|
*/
|
|
4362
|
-
CycleEnd
|
|
4308
|
+
CycleEnd?: string
|
|
4363
4309
|
/**
|
|
4364
4310
|
* 今天已使用总条数
|
|
4365
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4366
4311
|
*/
|
|
4367
|
-
TodayUsedQuota
|
|
4312
|
+
TodayUsedQuota?: number
|
|
4368
4313
|
}
|
|
4369
4314
|
|
|
4370
4315
|
/**
|
|
@@ -4402,7 +4347,6 @@ export interface CloudBaseRunServerVersionItem {
|
|
|
4402
4347
|
VersionName?: string
|
|
4403
4348
|
/**
|
|
4404
4349
|
* 状态
|
|
4405
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4406
4350
|
*/
|
|
4407
4351
|
Status?: string
|
|
4408
4352
|
/**
|
|
@@ -4411,42 +4355,34 @@ export interface CloudBaseRunServerVersionItem {
|
|
|
4411
4355
|
FlowRatio?: number
|
|
4412
4356
|
/**
|
|
4413
4357
|
* 创建时间
|
|
4414
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4415
4358
|
*/
|
|
4416
4359
|
CreatedTime?: string
|
|
4417
4360
|
/**
|
|
4418
4361
|
* 更新时间
|
|
4419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4420
4362
|
*/
|
|
4421
4363
|
UpdatedTime?: string
|
|
4422
4364
|
/**
|
|
4423
4365
|
* 构建ID
|
|
4424
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4425
4366
|
*/
|
|
4426
4367
|
BuildId?: number
|
|
4427
4368
|
/**
|
|
4428
4369
|
* 构建方式
|
|
4429
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4430
4370
|
*/
|
|
4431
4371
|
UploadType?: string
|
|
4432
4372
|
/**
|
|
4433
4373
|
* 备注
|
|
4434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4435
4374
|
*/
|
|
4436
4375
|
Remark?: string
|
|
4437
4376
|
/**
|
|
4438
4377
|
* url中的参数路径
|
|
4439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4440
4378
|
*/
|
|
4441
4379
|
UrlParam?: ObjectKV
|
|
4442
4380
|
/**
|
|
4443
4381
|
* 优先级(数值越小,优先级越高)
|
|
4444
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4445
4382
|
*/
|
|
4446
4383
|
Priority?: number
|
|
4447
4384
|
/**
|
|
4448
4385
|
* 是否是默认兜底版本
|
|
4449
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4450
4386
|
*/
|
|
4451
4387
|
IsDefaultPriority?: boolean
|
|
4452
4388
|
/**
|
|
@@ -4456,32 +4392,26 @@ export interface CloudBaseRunServerVersionItem {
|
|
|
4456
4392
|
FlowParams?: Array<CloudBaseRunKVPriority>
|
|
4457
4393
|
/**
|
|
4458
4394
|
* 最小副本数
|
|
4459
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4460
4395
|
*/
|
|
4461
4396
|
MinReplicas?: number
|
|
4462
4397
|
/**
|
|
4463
4398
|
* 最大副本数
|
|
4464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4465
4399
|
*/
|
|
4466
4400
|
MaxReplicas?: number
|
|
4467
4401
|
/**
|
|
4468
4402
|
* 操作记录id
|
|
4469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4470
4403
|
*/
|
|
4471
4404
|
RunId?: string
|
|
4472
4405
|
/**
|
|
4473
4406
|
* 进度
|
|
4474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4475
4407
|
*/
|
|
4476
4408
|
Percent?: number
|
|
4477
4409
|
/**
|
|
4478
4410
|
* 当前副本数
|
|
4479
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4480
4411
|
*/
|
|
4481
4412
|
CurrentReplicas?: number
|
|
4482
4413
|
/**
|
|
4483
4414
|
* Monolithic,Microservice
|
|
4484
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4485
4415
|
*/
|
|
4486
4416
|
Architecture?: string
|
|
4487
4417
|
}
|
|
@@ -4492,17 +4422,14 @@ export interface CloudBaseRunServerVersionItem {
|
|
|
4492
4422
|
export interface PlatformStatistic {
|
|
4493
4423
|
/**
|
|
4494
4424
|
* 终端用户从属平台
|
|
4495
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4496
4425
|
*/
|
|
4497
4426
|
Platform?: string
|
|
4498
4427
|
/**
|
|
4499
4428
|
* 平台终端用户数
|
|
4500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4501
4429
|
*/
|
|
4502
4430
|
Count?: number
|
|
4503
4431
|
/**
|
|
4504
4432
|
* 更新时间
|
|
4505
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4506
4433
|
*/
|
|
4507
4434
|
UpdateTime?: string
|
|
4508
4435
|
}
|
|
@@ -4531,12 +4458,10 @@ export interface DeleteCloudBaseProjectLatestVersionRequest {
|
|
|
4531
4458
|
export interface DescribeCloudBaseProjectLatestVersionListResponse {
|
|
4532
4459
|
/**
|
|
4533
4460
|
* 项目列表
|
|
4534
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4535
4461
|
*/
|
|
4536
4462
|
ProjectList?: Array<CloudBaseProjectVersion>
|
|
4537
4463
|
/**
|
|
4538
4464
|
* 总数
|
|
4539
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4540
4465
|
*/
|
|
4541
4466
|
TotalCount?: number
|
|
4542
4467
|
/**
|
|
@@ -4571,19 +4496,16 @@ export interface DescribeWxGatewaysResponse {
|
|
|
4571
4496
|
export interface DescribeDownloadFileResponse {
|
|
4572
4497
|
/**
|
|
4573
4498
|
* 文件路径,该字段已废弃
|
|
4574
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4575
4499
|
*/
|
|
4576
|
-
FilePath
|
|
4500
|
+
FilePath?: string
|
|
4577
4501
|
/**
|
|
4578
4502
|
* 加密key,用于计算下载加密文件的header。参考SSE-C https://cloud.tencent.com/document/product/436/7728#sse-c
|
|
4579
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4580
4503
|
*/
|
|
4581
|
-
CustomKey
|
|
4504
|
+
CustomKey?: string
|
|
4582
4505
|
/**
|
|
4583
4506
|
* 下载链接
|
|
4584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4585
4507
|
*/
|
|
4586
|
-
DownloadUrl
|
|
4508
|
+
DownloadUrl?: string
|
|
4587
4509
|
/**
|
|
4588
4510
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4589
4511
|
*/
|
|
@@ -4614,27 +4536,22 @@ export interface StandaloneGatewayPackageInfo {
|
|
|
4614
4536
|
export interface CloudBaseRunNfsVolumeSource {
|
|
4615
4537
|
/**
|
|
4616
4538
|
* NFS挂载Server
|
|
4617
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4618
4539
|
*/
|
|
4619
4540
|
Server?: string
|
|
4620
4541
|
/**
|
|
4621
4542
|
* Server路径
|
|
4622
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4623
4543
|
*/
|
|
4624
4544
|
Path?: string
|
|
4625
4545
|
/**
|
|
4626
4546
|
* 是否只读
|
|
4627
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4628
4547
|
*/
|
|
4629
4548
|
ReadOnly?: boolean
|
|
4630
4549
|
/**
|
|
4631
4550
|
* secret名称
|
|
4632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4633
4551
|
*/
|
|
4634
4552
|
SecretName?: string
|
|
4635
4553
|
/**
|
|
4636
4554
|
* 临时目录
|
|
4637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4638
4555
|
*/
|
|
4639
4556
|
EnableEmptyDirVolume?: boolean
|
|
4640
4557
|
}
|
|
@@ -4645,7 +4562,6 @@ export interface CloudBaseRunNfsVolumeSource {
|
|
|
4645
4562
|
export interface DescribeSmsQuotasResponse {
|
|
4646
4563
|
/**
|
|
4647
4564
|
* 短信免费量信息列表
|
|
4648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4649
4565
|
*/
|
|
4650
4566
|
SmsFreeQuotaList?: Array<SmsFreeQuota>
|
|
4651
4567
|
/**
|
|
@@ -4671,7 +4587,13 @@ export interface DescribeWxCloudBaseRunEnvsRequest {
|
|
|
4671
4587
|
/**
|
|
4672
4588
|
* 主机路径挂载参数
|
|
4673
4589
|
*/
|
|
4674
|
-
export
|
|
4590
|
+
export interface CloudBaseRunServiceVolumeHostPath {
|
|
4591
|
+
/**
|
|
4592
|
+
* 主机路径
|
|
4593
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4594
|
+
*/
|
|
4595
|
+
Path?: string
|
|
4596
|
+
}
|
|
4675
4597
|
|
|
4676
4598
|
/**
|
|
4677
4599
|
* DescribeCurveData请求参数结构体
|
|
@@ -4962,6 +4884,10 @@ export interface DescribeQuotaDataRequest {
|
|
|
4962
4884
|
<li> TkeMemUsedPkgDay: 当天容器托管内存使用量,单位MB*秒 </li>
|
|
4963
4885
|
<li> CodingBuildTimePkgDay: 当天容器托管构建时间使用量,单位毫秒 </li>
|
|
4964
4886
|
<li> TkeHttpServiceNatPkgDay: 当天容器托管流量使用量,单位B </li>
|
|
4887
|
+
<li> CynosdbCcupkg: 当月微信云托管MySQL CCU使用量,单位个 (需要除以1000)</li>
|
|
4888
|
+
<li> CynosdbStoragepkg: 当月微信云托管MySQL 存储使用量,单位MB (需要除以1000)</li>
|
|
4889
|
+
<li> CynosdbCcupkgDay: 当天微信云托管MySQL 存储使用量,单位个 (需要除以1000) </li>
|
|
4890
|
+
<li> CynosdbStoragepkgDay: 当天微信云托管MySQL 存储使用量,单位MB (需要除以1000) </li>
|
|
4965
4891
|
*/
|
|
4966
4892
|
MetricName: string
|
|
4967
4893
|
/**
|
|
@@ -4976,7 +4902,6 @@ export interface DescribeQuotaDataRequest {
|
|
|
4976
4902
|
export interface CreateStaticStoreResponse {
|
|
4977
4903
|
/**
|
|
4978
4904
|
* 创建静态资源结果(succ/fail)
|
|
4979
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4980
4905
|
*/
|
|
4981
4906
|
Result?: string
|
|
4982
4907
|
/**
|
|
@@ -5049,19 +4974,19 @@ export interface StorageInfo {
|
|
|
5049
4974
|
* 资源所属地域。
|
|
5050
4975
|
当前支持ap-shanghai
|
|
5051
4976
|
*/
|
|
5052
|
-
Region
|
|
4977
|
+
Region?: string
|
|
5053
4978
|
/**
|
|
5054
4979
|
* 桶名,存储资源的唯一标识
|
|
5055
4980
|
*/
|
|
5056
|
-
Bucket
|
|
4981
|
+
Bucket?: string
|
|
5057
4982
|
/**
|
|
5058
4983
|
* cdn 域名
|
|
5059
4984
|
*/
|
|
5060
|
-
CdnDomain
|
|
4985
|
+
CdnDomain?: string
|
|
5061
4986
|
/**
|
|
5062
4987
|
* 资源所属用户的腾讯云appId
|
|
5063
4988
|
*/
|
|
5064
|
-
AppId
|
|
4989
|
+
AppId?: string
|
|
5065
4990
|
}
|
|
5066
4991
|
|
|
5067
4992
|
/**
|
|
@@ -5105,51 +5030,59 @@ export interface FreequotaInfo {
|
|
|
5105
5030
|
<li>FLEXDB</li>
|
|
5106
5031
|
<li>SCF</li>
|
|
5107
5032
|
*/
|
|
5108
|
-
ResourceType
|
|
5033
|
+
ResourceType?: string
|
|
5109
5034
|
/**
|
|
5110
5035
|
* 资源指标名称
|
|
5111
5036
|
*/
|
|
5112
|
-
ResourceMetric
|
|
5037
|
+
ResourceMetric?: string
|
|
5113
5038
|
/**
|
|
5114
5039
|
* 资源指标免费量
|
|
5115
5040
|
*/
|
|
5116
|
-
FreeQuota
|
|
5041
|
+
FreeQuota?: number
|
|
5117
5042
|
/**
|
|
5118
5043
|
* 指标单位
|
|
5119
5044
|
*/
|
|
5120
|
-
MetricUnit
|
|
5045
|
+
MetricUnit?: string
|
|
5121
5046
|
/**
|
|
5122
5047
|
* 免费量抵扣周期
|
|
5123
5048
|
<li>sum-month:以月为单位抵扣</li>
|
|
5124
5049
|
<li>sum-day:以天为单位抵扣</li>
|
|
5125
5050
|
<li>totalize:总容量抵扣</li>
|
|
5126
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5127
5051
|
*/
|
|
5128
|
-
DeductType
|
|
5052
|
+
DeductType?: string
|
|
5129
5053
|
/**
|
|
5130
5054
|
* 免费量类型
|
|
5131
5055
|
<li>basic:通用量抵扣</li>
|
|
5132
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5133
5056
|
*/
|
|
5134
|
-
FreeQuotaType
|
|
5057
|
+
FreeQuotaType?: string
|
|
5135
5058
|
}
|
|
5136
5059
|
|
|
5137
5060
|
/**
|
|
5138
|
-
*
|
|
5061
|
+
* pod信息
|
|
5139
5062
|
*/
|
|
5140
|
-
export interface
|
|
5063
|
+
export interface CloudBaseRunVersionPod {
|
|
5141
5064
|
/**
|
|
5142
|
-
*
|
|
5065
|
+
* webshell链接
|
|
5143
5066
|
*/
|
|
5144
|
-
|
|
5067
|
+
Webshell?: string
|
|
5145
5068
|
/**
|
|
5146
|
-
*
|
|
5069
|
+
* pod name
|
|
5147
5070
|
*/
|
|
5148
|
-
|
|
5071
|
+
PodId?: string
|
|
5149
5072
|
/**
|
|
5150
|
-
*
|
|
5073
|
+
* pod ip
|
|
5074
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5151
5075
|
*/
|
|
5152
|
-
|
|
5076
|
+
PodIp?: string
|
|
5077
|
+
/**
|
|
5078
|
+
* 状态
|
|
5079
|
+
*/
|
|
5080
|
+
Status?: string
|
|
5081
|
+
/**
|
|
5082
|
+
* 创建时间
|
|
5083
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5084
|
+
*/
|
|
5085
|
+
CreateTime?: string
|
|
5153
5086
|
}
|
|
5154
5087
|
|
|
5155
5088
|
/**
|
|
@@ -5159,24 +5092,23 @@ export interface DescribeUserActivityInfoResponse {
|
|
|
5159
5092
|
/**
|
|
5160
5093
|
* 自定义标记,1元钱裂变需求中即代指`团id`
|
|
5161
5094
|
*/
|
|
5162
|
-
Tag
|
|
5095
|
+
Tag?: string
|
|
5163
5096
|
/**
|
|
5164
5097
|
* 自定义备注,1元钱裂变需求中返回`团列表`,uin列表通过","拼接
|
|
5165
5098
|
*/
|
|
5166
|
-
Notes
|
|
5099
|
+
Notes?: string
|
|
5167
5100
|
/**
|
|
5168
5101
|
* 活动剩余时间,单位为s.1元钱裂变需求中即为 time(活动过期时间)-Now()), 过期后为0,即返回必为自然数
|
|
5169
5102
|
*/
|
|
5170
|
-
ActivityTimeLeft
|
|
5103
|
+
ActivityTimeLeft?: number
|
|
5171
5104
|
/**
|
|
5172
5105
|
* 拼团剩余时间,单位为s.1元钱裂变需求中即为time(成团时间)+24H-Now(),过期后为0,即返回必为自然数
|
|
5173
5106
|
*/
|
|
5174
|
-
GroupTimeLeft
|
|
5107
|
+
GroupTimeLeft?: number
|
|
5175
5108
|
/**
|
|
5176
5109
|
* 昵称列表,通过","拼接, 1元钱裂变活动中与Notes中uin一一对应
|
|
5177
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5178
5110
|
*/
|
|
5179
|
-
NickNameList
|
|
5111
|
+
NickNameList?: string
|
|
5180
5112
|
/**
|
|
5181
5113
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5182
5114
|
*/
|
|
@@ -5189,7 +5121,6 @@ export interface DescribeUserActivityInfoResponse {
|
|
|
5189
5121
|
export interface DescribePostpayFreeQuotasResponse {
|
|
5190
5122
|
/**
|
|
5191
5123
|
* 免费量资源信息列表
|
|
5192
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5193
5124
|
*/
|
|
5194
5125
|
FreequotaInfoList?: Array<FreequotaInfo>
|
|
5195
5126
|
/**
|
|
@@ -5214,34 +5145,28 @@ export interface ModifyGatewayVersionTrafficResponse {
|
|
|
5214
5145
|
export interface ActivityRecordItem {
|
|
5215
5146
|
/**
|
|
5216
5147
|
* 用户uin
|
|
5217
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5218
5148
|
*/
|
|
5219
|
-
Uin
|
|
5149
|
+
Uin?: string
|
|
5220
5150
|
/**
|
|
5221
5151
|
* 活动id
|
|
5222
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5223
5152
|
*/
|
|
5224
|
-
ActivityId
|
|
5153
|
+
ActivityId?: number
|
|
5225
5154
|
/**
|
|
5226
5155
|
* 自定义状态码
|
|
5227
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5228
5156
|
*/
|
|
5229
|
-
Status
|
|
5157
|
+
Status?: number
|
|
5230
5158
|
/**
|
|
5231
5159
|
* 自定义子状态码
|
|
5232
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5233
5160
|
*/
|
|
5234
|
-
SubStatus
|
|
5161
|
+
SubStatus?: string
|
|
5235
5162
|
/**
|
|
5236
5163
|
* 整型子状态码
|
|
5237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5238
5164
|
*/
|
|
5239
|
-
SubStatusInt
|
|
5165
|
+
SubStatusInt?: number
|
|
5240
5166
|
/**
|
|
5241
5167
|
* 是否软删除
|
|
5242
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5243
5168
|
*/
|
|
5244
|
-
IsDeleted
|
|
5169
|
+
IsDeleted?: boolean
|
|
5245
5170
|
}
|
|
5246
5171
|
|
|
5247
5172
|
/**
|
|
@@ -5251,31 +5176,31 @@ export interface AuthDomain {
|
|
|
5251
5176
|
/**
|
|
5252
5177
|
* 域名ID
|
|
5253
5178
|
*/
|
|
5254
|
-
Id
|
|
5179
|
+
Id?: string
|
|
5255
5180
|
/**
|
|
5256
5181
|
* 域名
|
|
5257
5182
|
*/
|
|
5258
|
-
Domain
|
|
5183
|
+
Domain?: string
|
|
5259
5184
|
/**
|
|
5260
5185
|
* 域名类型。包含以下取值:
|
|
5261
5186
|
<li>SYSTEM</li>
|
|
5262
5187
|
<li>USER</li>
|
|
5263
5188
|
*/
|
|
5264
|
-
Type
|
|
5189
|
+
Type?: string
|
|
5265
5190
|
/**
|
|
5266
5191
|
* 状态。包含以下取值:
|
|
5267
5192
|
<li>ENABLE</li>
|
|
5268
5193
|
<li>DISABLE</li>
|
|
5269
5194
|
*/
|
|
5270
|
-
Status
|
|
5195
|
+
Status?: string
|
|
5271
5196
|
/**
|
|
5272
5197
|
* 创建时间
|
|
5273
5198
|
*/
|
|
5274
|
-
CreateTime
|
|
5199
|
+
CreateTime?: string
|
|
5275
5200
|
/**
|
|
5276
5201
|
* 更新时间
|
|
5277
5202
|
*/
|
|
5278
|
-
UpdateTime
|
|
5203
|
+
UpdateTime?: string
|
|
5279
5204
|
}
|
|
5280
5205
|
|
|
5281
5206
|
/**
|
|
@@ -5319,28 +5244,27 @@ export interface LogServiceInfo {
|
|
|
5319
5244
|
/**
|
|
5320
5245
|
* log名
|
|
5321
5246
|
*/
|
|
5322
|
-
LogsetName
|
|
5247
|
+
LogsetName?: string
|
|
5323
5248
|
/**
|
|
5324
5249
|
* log-id
|
|
5325
5250
|
*/
|
|
5326
|
-
LogsetId
|
|
5251
|
+
LogsetId?: string
|
|
5327
5252
|
/**
|
|
5328
5253
|
* topic名
|
|
5329
5254
|
*/
|
|
5330
|
-
TopicName
|
|
5255
|
+
TopicName?: string
|
|
5331
5256
|
/**
|
|
5332
5257
|
* topic-id
|
|
5333
5258
|
*/
|
|
5334
|
-
TopicId
|
|
5259
|
+
TopicId?: string
|
|
5335
5260
|
/**
|
|
5336
5261
|
* cls日志所属地域
|
|
5337
5262
|
*/
|
|
5338
|
-
Region
|
|
5263
|
+
Region?: string
|
|
5339
5264
|
/**
|
|
5340
5265
|
* topic保存时长 默认7天
|
|
5341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5342
5266
|
*/
|
|
5343
|
-
Period
|
|
5267
|
+
Period?: number
|
|
5344
5268
|
}
|
|
5345
5269
|
|
|
5346
5270
|
/**
|
|
@@ -5444,27 +5368,22 @@ export interface EnvBillingInfoItem {
|
|
|
5444
5368
|
* 付费渠道。
|
|
5445
5369
|
<li> miniapp:小程序</li>
|
|
5446
5370
|
<li> qcloud:腾讯云</li>
|
|
5447
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5448
5371
|
*/
|
|
5449
5372
|
PaymentChannel?: string
|
|
5450
5373
|
/**
|
|
5451
5374
|
* 最新的订单信息
|
|
5452
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5453
5375
|
*/
|
|
5454
5376
|
OrderInfo?: OrderInfo
|
|
5455
5377
|
/**
|
|
5456
5378
|
* 免费配额信息。
|
|
5457
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5458
5379
|
*/
|
|
5459
5380
|
FreeQuota?: string
|
|
5460
5381
|
/**
|
|
5461
5382
|
* 是否开启 `超过套餐额度部分转按量付费`
|
|
5462
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5463
5383
|
*/
|
|
5464
5384
|
EnableOverrun?: boolean
|
|
5465
5385
|
/**
|
|
5466
5386
|
* 环境套餐类型
|
|
5467
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5468
5387
|
*/
|
|
5469
5388
|
ExtPackageType?: string
|
|
5470
5389
|
/**
|
|
@@ -6296,7 +6215,9 @@ export interface ExtensionFileInfo {
|
|
|
6296
6215
|
*/
|
|
6297
6216
|
UploadUrl: string
|
|
6298
6217
|
/**
|
|
6299
|
-
*
|
|
6218
|
+
* 自定义密钥。如果为空,则表示不需要加密。
|
|
6219
|
+
参考cos预签名url上传https://cloud.tencent.com/document/product/436/36121
|
|
6220
|
+
上传的时候要按照 SSE-C 的方式设置header:https://cloud.tencent.com/document/product/436/7728
|
|
6300
6221
|
*/
|
|
6301
6222
|
CustomKey: string
|
|
6302
6223
|
/**
|
|
@@ -6355,22 +6276,18 @@ export interface CloudBaseProjectVersion {
|
|
|
6355
6276
|
Name?: string
|
|
6356
6277
|
/**
|
|
6357
6278
|
* SAM json
|
|
6358
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6359
6279
|
*/
|
|
6360
6280
|
Sam?: string
|
|
6361
6281
|
/**
|
|
6362
6282
|
* 来源类型
|
|
6363
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6364
6283
|
*/
|
|
6365
6284
|
Source?: CodeSource
|
|
6366
6285
|
/**
|
|
6367
6286
|
* 创建时间, unix时间戳
|
|
6368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6369
6287
|
*/
|
|
6370
6288
|
CreateTime?: number
|
|
6371
6289
|
/**
|
|
6372
6290
|
* 更新时间 ,unix时间戳
|
|
6373
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6374
6291
|
*/
|
|
6375
6292
|
UpdateTime?: number
|
|
6376
6293
|
/**
|
|
@@ -6382,12 +6299,10 @@ export interface CloudBaseProjectVersion {
|
|
|
6382
6299
|
"deploying"-部署中
|
|
6383
6300
|
"deployFail"-部署失败
|
|
6384
6301
|
"success"-部署成功
|
|
6385
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6386
6302
|
*/
|
|
6387
6303
|
Status?: string
|
|
6388
6304
|
/**
|
|
6389
6305
|
* 环境变量
|
|
6390
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6391
6306
|
*/
|
|
6392
6307
|
Parameters?: Array<KVPair>
|
|
6393
6308
|
/**
|
|
@@ -6395,112 +6310,90 @@ export interface CloudBaseProjectVersion {
|
|
|
6395
6310
|
"framework-oneclick" 控制台一键部署
|
|
6396
6311
|
"framework-local-oneclick" cli本地一键部署
|
|
6397
6312
|
"qci-extension-cicd" 内网coding ci cd
|
|
6398
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6399
6313
|
*/
|
|
6400
6314
|
Type?: string
|
|
6401
6315
|
/**
|
|
6402
6316
|
* ci的id
|
|
6403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6404
6317
|
*/
|
|
6405
6318
|
CIId?: string
|
|
6406
6319
|
/**
|
|
6407
6320
|
* cd的id
|
|
6408
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6409
6321
|
*/
|
|
6410
6322
|
CDId?: string
|
|
6411
6323
|
/**
|
|
6412
6324
|
* 环境id
|
|
6413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6414
6325
|
*/
|
|
6415
6326
|
EnvId?: string
|
|
6416
6327
|
/**
|
|
6417
6328
|
* 版本号
|
|
6418
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6419
6329
|
*/
|
|
6420
6330
|
VersionNum?: number
|
|
6421
6331
|
/**
|
|
6422
6332
|
* 错误原因
|
|
6423
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6424
6333
|
*/
|
|
6425
6334
|
FailReason?: string
|
|
6426
6335
|
/**
|
|
6427
6336
|
* rc.json内容
|
|
6428
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6429
6337
|
*/
|
|
6430
6338
|
RcJson?: string
|
|
6431
6339
|
/**
|
|
6432
6340
|
* 插件配置内容
|
|
6433
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6434
6341
|
*/
|
|
6435
6342
|
AddonConfig?: string
|
|
6436
6343
|
/**
|
|
6437
6344
|
* 标签
|
|
6438
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6439
6345
|
*/
|
|
6440
6346
|
Tags?: Array<string>
|
|
6441
6347
|
/**
|
|
6442
6348
|
* 网络配置
|
|
6443
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6444
6349
|
*/
|
|
6445
6350
|
NetworkConfig?: string
|
|
6446
6351
|
/**
|
|
6447
6352
|
* 扩展id
|
|
6448
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6449
6353
|
*/
|
|
6450
6354
|
ExtensionId?: string
|
|
6451
6355
|
/**
|
|
6452
6356
|
* 错误类型
|
|
6453
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6454
6357
|
*/
|
|
6455
6358
|
FailType?: string
|
|
6456
6359
|
/**
|
|
6457
6360
|
* 私有仓库地址
|
|
6458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6459
6361
|
*/
|
|
6460
6362
|
RepoUrl?: string
|
|
6461
6363
|
/**
|
|
6462
6364
|
* 是否私有仓库代码变更触发自动部署
|
|
6463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6464
6365
|
*/
|
|
6465
6366
|
AutoDeployOnCodeChange?: boolean
|
|
6466
6367
|
/**
|
|
6467
6368
|
* ci部署进度(%)
|
|
6468
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6469
6369
|
*/
|
|
6470
6370
|
BuildPercent?: number
|
|
6471
6371
|
/**
|
|
6472
6372
|
* Uin
|
|
6473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6474
6373
|
*/
|
|
6475
6374
|
Uin?: string
|
|
6476
6375
|
/**
|
|
6477
6376
|
* BuildFinishTime
|
|
6478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6479
6377
|
*/
|
|
6480
6378
|
BuildFinishTime?: string
|
|
6481
6379
|
/**
|
|
6482
6380
|
* DeployFinishTime
|
|
6483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6484
6381
|
*/
|
|
6485
6382
|
DeployFinishTime?: string
|
|
6486
6383
|
/**
|
|
6487
6384
|
* BuildId
|
|
6488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6489
6385
|
*/
|
|
6490
6386
|
BuildId?: string
|
|
6491
6387
|
/**
|
|
6492
6388
|
* SourceUrl
|
|
6493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6494
6389
|
*/
|
|
6495
6390
|
SourceUrl?: string
|
|
6496
6391
|
/**
|
|
6497
6392
|
* FailReasonShort
|
|
6498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6499
6393
|
*/
|
|
6500
6394
|
FailReasonShort?: string
|
|
6501
6395
|
/**
|
|
6502
6396
|
* FirstInitRepo
|
|
6503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6504
6397
|
*/
|
|
6505
6398
|
FirstInitRepo?: string
|
|
6506
6399
|
}
|
|
@@ -6579,7 +6472,7 @@ export interface DescribeExtensionUploadInfoResponse {
|
|
|
6579
6472
|
/**
|
|
6580
6473
|
* 待上传文件的信息数组
|
|
6581
6474
|
*/
|
|
6582
|
-
FilesData
|
|
6475
|
+
FilesData?: Array<ExtensionFileInfo>
|
|
6583
6476
|
/**
|
|
6584
6477
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6585
6478
|
*/
|
|
@@ -6621,25 +6514,25 @@ export interface PostpayEnvQuota {
|
|
|
6621
6514
|
/**
|
|
6622
6515
|
* 资源类型
|
|
6623
6516
|
*/
|
|
6624
|
-
ResourceType
|
|
6517
|
+
ResourceType?: string
|
|
6625
6518
|
/**
|
|
6626
6519
|
* 指标名
|
|
6627
6520
|
*/
|
|
6628
|
-
MetricName
|
|
6521
|
+
MetricName?: string
|
|
6629
6522
|
/**
|
|
6630
6523
|
* 配额值
|
|
6631
6524
|
*/
|
|
6632
|
-
Value
|
|
6525
|
+
Value?: number
|
|
6633
6526
|
/**
|
|
6634
6527
|
* 配额生效时间
|
|
6635
6528
|
为空表示没有时间限制
|
|
6636
6529
|
*/
|
|
6637
|
-
StartTime
|
|
6530
|
+
StartTime?: string
|
|
6638
6531
|
/**
|
|
6639
6532
|
* 配额失效时间
|
|
6640
6533
|
为空表示没有时间限制
|
|
6641
6534
|
*/
|
|
6642
|
-
EndTime
|
|
6535
|
+
EndTime?: string
|
|
6643
6536
|
}
|
|
6644
6537
|
|
|
6645
6538
|
/**
|
|
@@ -6648,17 +6541,14 @@ export interface PostpayEnvQuota {
|
|
|
6648
6541
|
export interface CustomRequestToAdd {
|
|
6649
6542
|
/**
|
|
6650
6543
|
* Header名称
|
|
6651
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6652
6544
|
*/
|
|
6653
6545
|
Key?: string
|
|
6654
6546
|
/**
|
|
6655
6547
|
* Header值
|
|
6656
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6657
6548
|
*/
|
|
6658
6549
|
Value?: string
|
|
6659
6550
|
/**
|
|
6660
6551
|
* Header类型
|
|
6661
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6662
6552
|
*/
|
|
6663
6553
|
AppendAction?: string
|
|
6664
6554
|
}
|
|
@@ -6669,7 +6559,6 @@ export interface CustomRequestToAdd {
|
|
|
6669
6559
|
export interface DescribePostpayPackageFreeQuotasResponse {
|
|
6670
6560
|
/**
|
|
6671
6561
|
* 免费量资源信息列表
|
|
6672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6673
6562
|
*/
|
|
6674
6563
|
PackageFreeQuotaInfos?: Array<PackageFreeQuotaInfo>
|
|
6675
6564
|
/**
|
|
@@ -6688,27 +6577,27 @@ export interface OneClickTaskStepInfo {
|
|
|
6688
6577
|
失败:"failed"
|
|
6689
6578
|
成功结束:"finished"
|
|
6690
6579
|
*/
|
|
6691
|
-
Status
|
|
6580
|
+
Status?: string
|
|
6692
6581
|
/**
|
|
6693
6582
|
* 开始时间
|
|
6694
6583
|
*/
|
|
6695
|
-
StartTime
|
|
6584
|
+
StartTime?: string
|
|
6696
6585
|
/**
|
|
6697
6586
|
* 结束时间
|
|
6698
6587
|
*/
|
|
6699
|
-
EndTime
|
|
6588
|
+
EndTime?: string
|
|
6700
6589
|
/**
|
|
6701
6590
|
* 耗时:秒
|
|
6702
6591
|
*/
|
|
6703
|
-
CostTime
|
|
6592
|
+
CostTime?: number
|
|
6704
6593
|
/**
|
|
6705
6594
|
* 失败原因
|
|
6706
6595
|
*/
|
|
6707
|
-
FailReason
|
|
6596
|
+
FailReason?: string
|
|
6708
6597
|
/**
|
|
6709
6598
|
* 步骤名
|
|
6710
6599
|
*/
|
|
6711
|
-
Name
|
|
6600
|
+
Name?: string
|
|
6712
6601
|
}
|
|
6713
6602
|
|
|
6714
6603
|
/**
|
|
@@ -6735,12 +6624,10 @@ export interface DescribeExtraPkgBillingInfoResponse {
|
|
|
6735
6624
|
export interface CloudBaseCodeRepoName {
|
|
6736
6625
|
/**
|
|
6737
6626
|
* repo的名字
|
|
6738
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6739
6627
|
*/
|
|
6740
6628
|
Name?: string
|
|
6741
6629
|
/**
|
|
6742
6630
|
* repo的完整全名
|
|
6743
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6744
6631
|
*/
|
|
6745
6632
|
FullName?: string
|
|
6746
6633
|
}
|