tccli 3.0.1094.1__py2.py3-none-any.whl → 3.0.1095.1__py2.py3-none-any.whl

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.
Files changed (30) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/examples/dasb/v20191018/ModifyCmdTemplate.md +2 -2
  3. tccli/examples/es/v20180416/DescribeServerlessInstances.md +346 -0
  4. tccli/examples/pts/v20210728/DescribeRegions.md +4 -2
  5. tccli/services/aiart/v20221229/api.json +1 -1
  6. tccli/services/antiddos/v20200309/api.json +19 -0
  7. tccli/services/cdb/v20170320/api.json +3 -3
  8. tccli/services/cfw/v20190904/api.json +177 -0
  9. tccli/services/dasb/v20191018/examples.json +2 -2
  10. tccli/services/dnspod/v20210323/api.json +1 -0
  11. tccli/services/dts/v20211206/api.json +2 -2
  12. tccli/services/es/es_client.py +53 -0
  13. tccli/services/es/v20180416/api.json +429 -0
  14. tccli/services/es/v20180416/examples.json +8 -0
  15. tccli/services/live/v20180801/api.json +49 -0
  16. tccli/services/monitor/v20180724/api.json +20 -2
  17. tccli/services/oceanus/v20190422/api.json +1 -1
  18. tccli/services/organization/v20210331/api.json +3 -3
  19. tccli/services/pts/v20210728/api.json +16 -3
  20. tccli/services/pts/v20210728/examples.json +2 -2
  21. tccli/services/redis/v20180412/api.json +11 -0
  22. tccli/services/vod/v20180717/api.json +1 -1
  23. tccli/services/wedata/v20210820/api.json +2 -817
  24. tccli/services/wedata/v20210820/examples.json +0 -24
  25. tccli/services/wedata/wedata_client.py +0 -159
  26. {tccli-3.0.1094.1.dist-info → tccli-3.0.1095.1.dist-info}/METADATA +2 -2
  27. {tccli-3.0.1094.1.dist-info → tccli-3.0.1095.1.dist-info}/RECORD +30 -29
  28. {tccli-3.0.1094.1.dist-info → tccli-3.0.1095.1.dist-info}/WHEEL +0 -0
  29. {tccli-3.0.1094.1.dist-info → tccli-3.0.1095.1.dist-info}/entry_points.txt +0 -0
  30. {tccli-3.0.1094.1.dist-info → tccli-3.0.1095.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1094.1'
1
+ __version__ = '3.0.1095.1'
@@ -1,13 +1,13 @@
1
1
  **Example 1: 修改高危命令模板**
2
2
 
3
- 修改高危命令模版
3
+ 修改高危命令模板
4
4
 
5
5
  Input:
6
6
 
7
7
  ```
8
8
  tccli dasb ModifyCmdTemplate --cli-unfold-argument \
9
9
  --Id 1 \
10
- --Name 模版a \
10
+ --Name 模板a \
11
11
  --CmdList cd /root
12
12
  ```
13
13
 
@@ -0,0 +1,346 @@
1
+ **Example 1: Serverless获取索引列表**
2
+
3
+ Serverless获取索引列表
4
+
5
+ Input:
6
+
7
+ ```
8
+ tccli es DescribeServerlessInstances --cli-unfold-argument \
9
+ --IndexNames test \
10
+ --InstanceIds index-abcdefgh \
11
+ --Limit 0 \
12
+ --Offset 10
13
+ ```
14
+
15
+ Output:
16
+ ```
17
+ {
18
+ "Response": {
19
+ "IndexMetaFields": [
20
+ {
21
+ "AppId": 1257780094,
22
+ "InstanceId": "index-2v3kt0yr",
23
+ "SpaceId": "space-mdo5a8bf",
24
+ "SpaceName": "tom-test",
25
+ "IndexName": "curl-datalink-mdo5a8bf",
26
+ "IndexStorage": 0,
27
+ "IndexCreateTime": "2023-11-23 14:34:55",
28
+ "IndexDocs": 0,
29
+ "Status": 1,
30
+ "IndexSettingsField": {
31
+ "NumberOfShards": "",
32
+ "RefreshInterval": "30s"
33
+ },
34
+ "IndexOptionsField": {
35
+ "ExpireMaxAge": "30d",
36
+ "TimestampField": "@timestamp"
37
+ },
38
+ "IndexNetworkField": {
39
+ "Region": "ap-guangzhou",
40
+ "Zone": "ap-guangzhou-7",
41
+ "VpcUid": "vpc-444yjczv",
42
+ "SubnetUid": "subnet-mrezecu2",
43
+ "Username": "",
44
+ "Password": ""
45
+ },
46
+ "KibanaUrl": "https://index-2v3kt0yr.kibana.myserverlessindex.com:5601",
47
+ "KibanaPrivateUrl": "",
48
+ "IndexAccessUrl": "index-2v3kt0yr.ap-guangzhou.myserverlessindex.com",
49
+ "StorageType": 0,
50
+ "TagList": []
51
+ },
52
+ {
53
+ "AppId": 1257780094,
54
+ "InstanceId": "index-2s8pkoa7",
55
+ "SpaceId": "space-mdo5a8bf",
56
+ "SpaceName": "tom-test",
57
+ "IndexName": "beats-tke-datalink-mdo5a8bf",
58
+ "IndexStorage": 0,
59
+ "IndexCreateTime": "2023-11-23 14:34:20",
60
+ "IndexDocs": 0,
61
+ "Status": 1,
62
+ "IndexSettingsField": {
63
+ "NumberOfShards": "",
64
+ "RefreshInterval": "30s"
65
+ },
66
+ "IndexOptionsField": {
67
+ "ExpireMaxAge": "30d",
68
+ "TimestampField": "@timestamp"
69
+ },
70
+ "IndexNetworkField": {
71
+ "Region": "ap-guangzhou",
72
+ "Zone": "ap-guangzhou-7",
73
+ "VpcUid": "vpc-444yjczv",
74
+ "SubnetUid": "subnet-mrezecu2",
75
+ "Username": "",
76
+ "Password": ""
77
+ },
78
+ "KibanaUrl": "https://index-2s8pkoa7.kibana.myserverlessindex.com:5601",
79
+ "KibanaPrivateUrl": "",
80
+ "IndexAccessUrl": "index-2s8pkoa7.ap-guangzhou.myserverlessindex.com",
81
+ "StorageType": 0,
82
+ "TagList": []
83
+ },
84
+ {
85
+ "AppId": 1257780094,
86
+ "InstanceId": "index-7th48x7l",
87
+ "SpaceId": "space-mdo5a8bf",
88
+ "SpaceName": "tom-test",
89
+ "IndexName": "beats-cvm-datalink-mdo5a8bf",
90
+ "IndexStorage": 0,
91
+ "IndexCreateTime": "2023-11-23 14:33:48",
92
+ "IndexDocs": 0,
93
+ "Status": 1,
94
+ "IndexSettingsField": {
95
+ "NumberOfShards": "",
96
+ "RefreshInterval": "30s"
97
+ },
98
+ "IndexOptionsField": {
99
+ "ExpireMaxAge": "30d",
100
+ "TimestampField": "@timestamp"
101
+ },
102
+ "IndexNetworkField": {
103
+ "Region": "ap-guangzhou",
104
+ "Zone": "ap-guangzhou-7",
105
+ "VpcUid": "vpc-444yjczv",
106
+ "SubnetUid": "subnet-mrezecu2",
107
+ "Username": "",
108
+ "Password": ""
109
+ },
110
+ "KibanaUrl": "https://index-7th48x7l.kibana.myserverlessindex.com:5601",
111
+ "KibanaPrivateUrl": "",
112
+ "IndexAccessUrl": "index-7th48x7l.ap-guangzhou.myserverlessindex.com",
113
+ "StorageType": 0,
114
+ "TagList": []
115
+ },
116
+ {
117
+ "AppId": 1257780094,
118
+ "InstanceId": "index-brjddwvb",
119
+ "SpaceId": "space-mdo5a8bf",
120
+ "SpaceName": "tom-test",
121
+ "IndexName": "tke-data-link-mdo5a8bf",
122
+ "IndexStorage": 0,
123
+ "IndexCreateTime": "2023-11-23 14:30:26",
124
+ "IndexDocs": 0,
125
+ "Status": 1,
126
+ "IndexSettingsField": {
127
+ "NumberOfShards": "",
128
+ "RefreshInterval": "30s"
129
+ },
130
+ "IndexOptionsField": {
131
+ "ExpireMaxAge": "30d",
132
+ "TimestampField": "@timestamp"
133
+ },
134
+ "IndexNetworkField": {
135
+ "Region": "ap-guangzhou",
136
+ "Zone": "ap-guangzhou-7",
137
+ "VpcUid": "vpc-444yjczv",
138
+ "SubnetUid": "subnet-mrezecu2",
139
+ "Username": "",
140
+ "Password": ""
141
+ },
142
+ "KibanaUrl": "https://index-brjddwvb.kibana.myserverlessindex.com:5601",
143
+ "KibanaPrivateUrl": "",
144
+ "IndexAccessUrl": "index-brjddwvb.ap-guangzhou.myserverlessindex.com",
145
+ "StorageType": 0,
146
+ "TagList": []
147
+ },
148
+ {
149
+ "AppId": 1257780094,
150
+ "InstanceId": "index-k75a66tp",
151
+ "SpaceId": "space-0gyg87rx",
152
+ "SpaceName": "price-test",
153
+ "IndexName": "ychenjiang-test2-0gyg87rx",
154
+ "IndexStorage": 0,
155
+ "IndexCreateTime": "2023-11-23 14:29:47",
156
+ "IndexDocs": 0,
157
+ "Status": 1,
158
+ "IndexSettingsField": {
159
+ "NumberOfShards": "",
160
+ "RefreshInterval": "30s"
161
+ },
162
+ "IndexOptionsField": {
163
+ "ExpireMaxAge": "30d",
164
+ "TimestampField": "@timestamp"
165
+ },
166
+ "IndexNetworkField": {
167
+ "Region": "ap-guangzhou",
168
+ "Zone": "ap-guangzhou-7",
169
+ "VpcUid": "vpc-ld5dkwwx",
170
+ "SubnetUid": "subnet-267c2gvq",
171
+ "Username": "",
172
+ "Password": ""
173
+ },
174
+ "KibanaUrl": "https://index-k75a66tp.kibana.myserverlessindex.com:5601",
175
+ "KibanaPrivateUrl": "",
176
+ "IndexAccessUrl": "index-k75a66tp.ap-guangzhou.myserverlessindex.com",
177
+ "StorageType": 0,
178
+ "TagList": []
179
+ },
180
+ {
181
+ "AppId": 1257780094,
182
+ "InstanceId": "index-o8otig09",
183
+ "SpaceId": "space-mdo5a8bf",
184
+ "SpaceName": "tom-test",
185
+ "IndexName": "cvm-datalink-mdo5a8bf",
186
+ "IndexStorage": 0,
187
+ "IndexCreateTime": "2023-11-23 14:23:02",
188
+ "IndexDocs": 0,
189
+ "Status": 1,
190
+ "IndexSettingsField": {
191
+ "NumberOfShards": "",
192
+ "RefreshInterval": "30s"
193
+ },
194
+ "IndexOptionsField": {
195
+ "ExpireMaxAge": "30d",
196
+ "TimestampField": "@timestamp"
197
+ },
198
+ "IndexNetworkField": {
199
+ "Region": "ap-guangzhou",
200
+ "Zone": "ap-guangzhou-7",
201
+ "VpcUid": "vpc-444yjczv",
202
+ "SubnetUid": "subnet-mrezecu2",
203
+ "Username": "",
204
+ "Password": ""
205
+ },
206
+ "KibanaUrl": "https://index-o8otig09.kibana.myserverlessindex.com:5601",
207
+ "KibanaPrivateUrl": "",
208
+ "IndexAccessUrl": "index-o8otig09.ap-guangzhou.myserverlessindex.com",
209
+ "StorageType": 0,
210
+ "TagList": []
211
+ },
212
+ {
213
+ "AppId": 1257780094,
214
+ "InstanceId": "index-gh5rrdhr",
215
+ "SpaceId": "space-0gyg87rx",
216
+ "SpaceName": "price-test",
217
+ "IndexName": "faegagag-0gyg87rx",
218
+ "IndexStorage": 0,
219
+ "IndexCreateTime": "2023-11-23 12:04:48",
220
+ "IndexDocs": 0,
221
+ "Status": 1,
222
+ "IndexSettingsField": {
223
+ "NumberOfShards": "",
224
+ "RefreshInterval": "30s"
225
+ },
226
+ "IndexOptionsField": {
227
+ "ExpireMaxAge": "30d",
228
+ "TimestampField": "@timestamp"
229
+ },
230
+ "IndexNetworkField": {
231
+ "Region": "ap-guangzhou",
232
+ "Zone": "ap-guangzhou-7",
233
+ "VpcUid": "vpc-444yjczv",
234
+ "SubnetUid": "subnet-mrezecu2",
235
+ "Username": "",
236
+ "Password": ""
237
+ },
238
+ "KibanaUrl": "https://index-gh5rrdhr.kibana.myserverlessindex.com:5601",
239
+ "KibanaPrivateUrl": "",
240
+ "IndexAccessUrl": "index-gh5rrdhr.ap-guangzhou.myserverlessindex.com",
241
+ "StorageType": 0,
242
+ "TagList": []
243
+ },
244
+ {
245
+ "AppId": 1257780094,
246
+ "InstanceId": "index-65q7dsff",
247
+ "SpaceId": "space-0gyg87rx",
248
+ "SpaceName": "price-test",
249
+ "IndexName": "haoa-test3334-0gyg87rx",
250
+ "IndexStorage": 6422689,
251
+ "IndexCreateTime": "2023-11-23 11:53:04",
252
+ "IndexDocs": 0,
253
+ "Status": 1,
254
+ "IndexSettingsField": {
255
+ "NumberOfShards": "",
256
+ "RefreshInterval": "30s"
257
+ },
258
+ "IndexOptionsField": {
259
+ "ExpireMaxAge": "30d",
260
+ "TimestampField": "@timestamp"
261
+ },
262
+ "IndexNetworkField": {
263
+ "Region": "ap-guangzhou",
264
+ "Zone": "ap-guangzhou-7",
265
+ "VpcUid": "vpc-ld5dkwwx",
266
+ "SubnetUid": "subnet-267c2gvq",
267
+ "Username": "",
268
+ "Password": ""
269
+ },
270
+ "KibanaUrl": "https://index-65q7dsff.kibana.myserverlessindex.com:5601",
271
+ "KibanaPrivateUrl": "",
272
+ "IndexAccessUrl": "index-65q7dsff.ap-guangzhou.myserverlessindex.com",
273
+ "StorageType": 0,
274
+ "TagList": []
275
+ },
276
+ {
277
+ "AppId": 1257780094,
278
+ "InstanceId": "index-irah4s23",
279
+ "SpaceId": "space-mdo5a8bf",
280
+ "SpaceName": "tom-test",
281
+ "IndexName": "cvm-source-mdo5a8bf",
282
+ "IndexStorage": 204964,
283
+ "IndexCreateTime": "2023-11-23 11:39:28",
284
+ "IndexDocs": 0,
285
+ "Status": 1,
286
+ "IndexSettingsField": {
287
+ "NumberOfShards": "",
288
+ "RefreshInterval": "30s"
289
+ },
290
+ "IndexOptionsField": {
291
+ "ExpireMaxAge": "30d",
292
+ "TimestampField": "@timestamp"
293
+ },
294
+ "IndexNetworkField": {
295
+ "Region": "ap-guangzhou",
296
+ "Zone": "ap-guangzhou-7",
297
+ "VpcUid": "vpc-444yjczv",
298
+ "SubnetUid": "subnet-mrezecu2",
299
+ "Username": "",
300
+ "Password": ""
301
+ },
302
+ "KibanaUrl": "https://index-irah4s23.kibana.myserverlessindex.com:5601",
303
+ "KibanaPrivateUrl": "",
304
+ "IndexAccessUrl": "index-irah4s23.ap-guangzhou.myserverlessindex.com",
305
+ "StorageType": 0,
306
+ "TagList": []
307
+ },
308
+ {
309
+ "AppId": 1257780094,
310
+ "InstanceId": "index-8s7iinrd",
311
+ "SpaceId": "space-0gyg87rx",
312
+ "SpaceName": "price-test",
313
+ "IndexName": "haoa-test44-0gyg87rx",
314
+ "IndexStorage": 6072662,
315
+ "IndexCreateTime": "2023-11-23 11:15:47",
316
+ "IndexDocs": 0,
317
+ "Status": 1,
318
+ "IndexSettingsField": {
319
+ "NumberOfShards": "",
320
+ "RefreshInterval": "30s"
321
+ },
322
+ "IndexOptionsField": {
323
+ "ExpireMaxAge": "30d",
324
+ "TimestampField": "@timestamp"
325
+ },
326
+ "IndexNetworkField": {
327
+ "Region": "ap-guangzhou",
328
+ "Zone": "ap-guangzhou-7",
329
+ "VpcUid": "vpc-ld5dkwwx",
330
+ "SubnetUid": "subnet-267c2gvq",
331
+ "Username": "",
332
+ "Password": ""
333
+ },
334
+ "KibanaUrl": "https://index-8s7iinrd.kibana.myserverlessindex.com:5601",
335
+ "KibanaPrivateUrl": "",
336
+ "IndexAccessUrl": "index-8s7iinrd.ap-guangzhou.myserverlessindex.com",
337
+ "StorageType": 0,
338
+ "TagList": []
339
+ }
340
+ ],
341
+ "TotalCount": 20,
342
+ "RequestId": "a75f987c-5f03-4fec-bbb8-be132b57666b"
343
+ }
344
+ }
345
+ ```
346
+
@@ -5,7 +5,9 @@
5
5
  Input:
6
6
 
7
7
  ```
8
- tccli pts DescribeRegions --cli-unfold-argument ```
8
+ tccli pts DescribeRegions --cli-unfold-argument \
9
+ --LoadType 0
10
+ ```
9
11
 
10
12
  Output:
11
13
  ```
@@ -33,7 +35,7 @@ Output:
33
35
  "Area": "华南地区"
34
36
  }
35
37
  ],
36
- "RequestId": "xx"
38
+ "RequestId": "abc"
37
39
  }
38
40
  }
39
41
  ```
@@ -389,7 +389,7 @@
389
389
  },
390
390
  {
391
391
  "disabled": false,
392
- "document": "文生图引擎,默认使用engine1。 \n取值: \nengine1 \nengine2",
392
+ "document": "文生图模型,默认使用engine1。\nengine1:文生图(高级版)-混元\nengine2:文生图(高级版)",
393
393
  "example": "无",
394
394
  "member": "string",
395
395
  "name": "Engine",
@@ -1859,6 +1859,16 @@
1859
1859
  "type": "int",
1860
1860
  "value_allowed_null": true
1861
1861
  },
1862
+ {
1863
+ "disabled": false,
1864
+ "document": "是否跨区域产品 0: 不包含跨区域产品 1: 中国大陆跨区域产品 2: 非中国大陆跨区域产品\n注意:此字段可能返回 null,表示取不到有效值。",
1865
+ "example": "1",
1866
+ "member": "uint64",
1867
+ "name": "TransRegionFlag",
1868
+ "output_required": false,
1869
+ "type": "int",
1870
+ "value_allowed_null": true
1871
+ },
1862
1872
  {
1863
1873
  "disabled": false,
1864
1874
  "document": "是否为超级高防包\n注意:此字段可能返回 null,表示取不到有效值。",
@@ -7055,6 +7065,15 @@
7055
7065
  "name": "FilterPlanCntFlag",
7056
7066
  "required": false,
7057
7067
  "type": "int"
7068
+ },
7069
+ {
7070
+ "disabled": false,
7071
+ "document": "是否跨区域产品 0: 不包含跨区域产品 1: 中国大陆跨区域产品 2: 非中国大陆跨区域产品 3: 包含全部",
7072
+ "example": "0",
7073
+ "member": "uint64",
7074
+ "name": "FilterTransRegionFlag",
7075
+ "required": false,
7076
+ "type": "int"
7058
7077
  }
7059
7078
  ],
7060
7079
  "type": "object"
@@ -1107,7 +1107,7 @@
1107
1107
  "status": "online"
1108
1108
  },
1109
1109
  "UpgradeDBInstance": {
1110
- "document": "本接口(UpgradeDBInstance)用于升级或降级云数据库实例的配置,实例类型支持主实例、灾备实例和只读实例。",
1110
+ "document": "本接口(UpgradeDBInstance)用于升级或降级云数据库实例的配置,实例类型支持主实例、灾备实例和只读实例。如果进行迁移业务,请一定填写实例规格(CPU、内存),不然系统会默认以最小允许规格传参。",
1111
1111
  "input": "UpgradeDBInstanceRequest",
1112
1112
  "name": "调整云数据库实例的配置",
1113
1113
  "output": "UpgradeDBInstanceResponse",
@@ -19644,7 +19644,7 @@
19644
19644
  },
19645
19645
  {
19646
19646
  "disabled": false,
19647
- "document": "升级后的内存大小,单位:MB,为保证传入 Memory 值有效,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/product/236/17229) 接口获取可升级的内存规格。",
19647
+ "document": "升级后的内存大小,单位:MB,为保证传入 Memory 值有效,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/product/236/17229) 接口获取可升级的内存规格。\n说明:如果进行迁移业务,请一定填写实例规格(CPU、内存),不然系统会默认以最小允许规格传参。",
19648
19648
  "example": "8000",
19649
19649
  "member": "int64",
19650
19650
  "name": "Memory",
@@ -19734,7 +19734,7 @@
19734
19734
  },
19735
19735
  {
19736
19736
  "disabled": false,
19737
- "document": "升级后的实例cpu核数,如果不传将根据 Memory 指定的内存值自动填充最小允许规格的cpu值。",
19737
+ "document": "升级后的实例cpu核数,如果不传将根据 Memory 指定的内存值自动填充最小允许规格的cpu值。\n说明:如果进行迁移业务,请一定填写实例规格(CPU、内存),不然系统会默认以最小允许规格传参。",
19738
19738
  "example": "1",
19739
19739
  "member": "int64",
19740
19740
  "name": "Cpu",
@@ -7993,6 +7993,33 @@
7993
7993
  "name": "CfwInstance",
7994
7994
  "required": false,
7995
7995
  "type": "string"
7996
+ },
7997
+ {
7998
+ "disabled": false,
7999
+ "document": "弹性开关 1打开 0 关闭",
8000
+ "example": "1",
8001
+ "member": "int64",
8002
+ "name": "ElasticSwitch",
8003
+ "required": false,
8004
+ "type": "int"
8005
+ },
8006
+ {
8007
+ "disabled": false,
8008
+ "document": "弹性带宽上限,单位Mbps",
8009
+ "example": "100",
8010
+ "member": "int64",
8011
+ "name": "ElasticBandwidth",
8012
+ "required": false,
8013
+ "type": "int"
8014
+ },
8015
+ {
8016
+ "disabled": false,
8017
+ "document": "按量计费标签",
8018
+ "example": "无",
8019
+ "member": "TagInfo",
8020
+ "name": "Tags",
8021
+ "required": false,
8022
+ "type": "list"
7996
8023
  }
7997
8024
  ],
7998
8025
  "type": "object"
@@ -10973,6 +11000,66 @@
10973
11000
  "output_required": false,
10974
11001
  "type": "string",
10975
11002
  "value_allowed_null": true
11003
+ },
11004
+ {
11005
+ "disabled": false,
11006
+ "document": "引擎预约升级时间\n注意:此字段可能返回 null,表示取不到有效值。",
11007
+ "example": "2021-12-09 11:56:58",
11008
+ "member": "string",
11009
+ "name": "ReserveTime",
11010
+ "output_required": false,
11011
+ "type": "string",
11012
+ "value_allowed_null": true
11013
+ },
11014
+ {
11015
+ "disabled": false,
11016
+ "document": "引擎预约升级版本\n注意:此字段可能返回 null,表示取不到有效值。",
11017
+ "example": "cfw_3.8.0.888",
11018
+ "member": "string",
11019
+ "name": "ReserveVersion",
11020
+ "output_required": false,
11021
+ "type": "string",
11022
+ "value_allowed_null": true
11023
+ },
11024
+ {
11025
+ "disabled": false,
11026
+ "document": "引擎预约升级版本状态\n注意:此字段可能返回 null,表示取不到有效值。",
11027
+ "example": "stable",
11028
+ "member": "string",
11029
+ "name": "ReserveVersionState",
11030
+ "output_required": false,
11031
+ "type": "string",
11032
+ "value_allowed_null": true
11033
+ },
11034
+ {
11035
+ "disabled": false,
11036
+ "document": "弹性开关\n1 打开\n0 关闭\n注意:此字段可能返回 null,表示取不到有效值。",
11037
+ "example": "0",
11038
+ "member": "int64",
11039
+ "name": "ElasticSwitch",
11040
+ "output_required": false,
11041
+ "type": "int",
11042
+ "value_allowed_null": true
11043
+ },
11044
+ {
11045
+ "disabled": false,
11046
+ "document": "弹性带宽,单位Mbps\n注意:此字段可能返回 null,表示取不到有效值。",
11047
+ "example": "100",
11048
+ "member": "int64",
11049
+ "name": "ElasticBandwidth",
11050
+ "output_required": false,
11051
+ "type": "int",
11052
+ "value_allowed_null": true
11053
+ },
11054
+ {
11055
+ "disabled": false,
11056
+ "document": "是否首次开通按量付费\n1 是\n0 不是\n注意:此字段可能返回 null,表示取不到有效值。",
11057
+ "example": "1",
11058
+ "member": "int64",
11059
+ "name": "IsFirstAfterPay",
11060
+ "output_required": false,
11061
+ "type": "int",
11062
+ "value_allowed_null": true
10976
11063
  }
10977
11064
  ],
10978
11065
  "usage": "out"
@@ -13077,6 +13164,30 @@
13077
13164
  ],
13078
13165
  "usage": "out"
13079
13166
  },
13167
+ "TagInfo": {
13168
+ "document": "标签信息",
13169
+ "members": [
13170
+ {
13171
+ "disabled": false,
13172
+ "document": "目标key",
13173
+ "example": "key",
13174
+ "member": "string",
13175
+ "name": "TagKey",
13176
+ "required": false,
13177
+ "type": "string"
13178
+ },
13179
+ {
13180
+ "disabled": false,
13181
+ "document": "目标值",
13182
+ "example": "value",
13183
+ "member": "string",
13184
+ "name": "TagValue",
13185
+ "required": false,
13186
+ "type": "string"
13187
+ }
13188
+ ],
13189
+ "usage": "in"
13190
+ },
13080
13191
  "TemplateListInfo": {
13081
13192
  "document": "地址模板列表数据",
13082
13193
  "members": [
@@ -13924,6 +14035,72 @@
13924
14035
  "required": false,
13925
14036
  "type": "string",
13926
14037
  "value_allowed_null": true
14038
+ },
14039
+ {
14040
+ "disabled": false,
14041
+ "document": "引擎预约升级时间\n注意:此字段可能返回 null,表示取不到有效值。",
14042
+ "example": "2021-12-09 11:56:58",
14043
+ "member": "string",
14044
+ "name": "ReserveTime",
14045
+ "output_required": false,
14046
+ "required": false,
14047
+ "type": "string",
14048
+ "value_allowed_null": true
14049
+ },
14050
+ {
14051
+ "disabled": false,
14052
+ "document": "预约引擎升级版本\n注意:此字段可能返回 null,表示取不到有效值。",
14053
+ "example": "cfw_3.8.0.888",
14054
+ "member": "string",
14055
+ "name": "ReserveVersion",
14056
+ "output_required": false,
14057
+ "required": false,
14058
+ "type": "string",
14059
+ "value_allowed_null": true
14060
+ },
14061
+ {
14062
+ "disabled": false,
14063
+ "document": "引擎预约升级版本状态\n注意:此字段可能返回 null,表示取不到有效值。",
14064
+ "example": "stable",
14065
+ "member": "string",
14066
+ "name": "ReserveVersionState",
14067
+ "output_required": false,
14068
+ "required": false,
14069
+ "type": "string",
14070
+ "value_allowed_null": true
14071
+ },
14072
+ {
14073
+ "disabled": false,
14074
+ "document": "弹性开关 1打开 0关闭\n注意:此字段可能返回 null,表示取不到有效值。",
14075
+ "example": "1",
14076
+ "member": "int64",
14077
+ "name": "ElasticSwitch",
14078
+ "output_required": false,
14079
+ "required": false,
14080
+ "type": "int",
14081
+ "value_allowed_null": true
14082
+ },
14083
+ {
14084
+ "disabled": false,
14085
+ "document": "弹性带宽,单位Mbps\n注意:此字段可能返回 null,表示取不到有效值。",
14086
+ "example": "100",
14087
+ "member": "int64",
14088
+ "name": "ElasticBandwidth",
14089
+ "output_required": false,
14090
+ "required": false,
14091
+ "type": "int",
14092
+ "value_allowed_null": true
14093
+ },
14094
+ {
14095
+ "disabled": false,
14096
+ "document": "是否首次开通按量付费\n1 是\n0 不是\n注意:此字段可能返回 null,表示取不到有效值。",
14097
+ "example": "1",
14098
+ "member": "int64",
14099
+ "name": "IsFirstAfterPay",
14100
+ "output_required": false,
14101
+ "required": false,
14102
+ "type": "int",
14103
+ "value_allowed_null": true
13927
14104
  }
13928
14105
  ],
13929
14106
  "usage": "both"
@@ -332,8 +332,8 @@
332
332
  ],
333
333
  "ModifyCmdTemplate": [
334
334
  {
335
- "document": "修改高危命令模版",
336
- "input": "POST / HTTP/1.1\nHost: dasb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyCmdTemplate\n<公共请求参数>\n\n{\n \"Id\": 1,\n \"Name\": \"模版a\",\n \"CmdList\": \"cd /root\"\n}",
335
+ "document": "修改高危命令模板",
336
+ "input": "POST / HTTP/1.1\nHost: dasb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyCmdTemplate\n<公共请求参数>\n\n{\n \"Id\": 1,\n \"Name\": \"模板a\",\n \"CmdList\": \"cd /root\"\n}",
337
337
  "output": "{\n \"Response\": {\n \"RequestId\": \"sada123\"\n }\n}",
338
338
  "title": "修改高危命令模板"
339
339
  }