tccli 3.0.1215.1__py2.py3-none-any.whl → 3.0.1217.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.
- tccli/__init__.py +1 -1
- tccli/argparser.py +1 -1
- tccli/command.py +2 -2
- tccli/configure.py +46 -1
- tccli/credentials.py +25 -0
- tccli/main.py +6 -2
- tccli/plugins/sso/__init__.py +61 -0
- tccli/plugins/sso/configs.py +4 -0
- tccli/plugins/sso/configure.py +45 -0
- tccli/plugins/sso/login.py +144 -0
- tccli/plugins/sso/logout.py +21 -0
- tccli/plugins/sso/terminal.py +161 -0
- tccli/plugins/sso/texts.py +40 -0
- tccli/services/__init__.py +6 -3
- tccli/services/acp/v20220105/api.json +7 -7
- tccli/services/acp/v20220105/examples.json +2 -2
- tccli/services/aiart/v20221229/api.json +29 -29
- tccli/services/aiart/v20221229/examples.json +8 -8
- tccli/services/apigateway/v20180808/api.json +18 -17
- tccli/services/apigateway/v20180808/examples.json +12 -12
- tccli/services/apm/v20210622/api.json +118 -4
- tccli/services/asr/v20190614/api.json +21 -20
- tccli/services/asr/v20190614/examples.json +13 -13
- tccli/services/autoscaling/v20180419/api.json +371 -309
- tccli/services/autoscaling/v20180419/examples.json +17 -17
- tccli/services/batch/v20170312/api.json +7 -7
- tccli/services/bda/v20200324/api.json +39 -31
- tccli/services/bda/v20200324/examples.json +9 -9
- tccli/services/bh/__init__.py +4 -0
- tccli/services/bh/bh_client.py +3428 -0
- tccli/services/bh/v20230418/api.json +8180 -0
- tccli/services/bh/v20230418/examples.json +519 -0
- tccli/services/bi/v20220105/api.json +80 -4
- tccli/services/bi/v20220105/examples.json +1 -1
- tccli/services/billing/billing_client.py +53 -0
- tccli/services/billing/v20180709/api.json +330 -24
- tccli/services/billing/v20180709/examples.json +8 -0
- tccli/services/bsca/v20210811/api.json +223 -18
- tccli/services/bsca/v20210811/examples.json +4 -4
- tccli/services/btoe/v20210514/api.json +4 -4
- tccli/services/btoe/v20210514/examples.json +2 -2
- tccli/services/ca/v20230228/api.json +60 -0
- tccli/services/cam/v20190116/api.json +11 -11
- tccli/services/cat/v20180409/api.json +9 -0
- tccli/services/cbs/v20170312/api.json +200 -188
- tccli/services/cbs/v20170312/examples.json +4 -4
- tccli/services/ccc/ccc_client.py +53 -0
- tccli/services/ccc/v20200210/api.json +541 -325
- tccli/services/ccc/v20200210/examples.json +26 -18
- tccli/services/cdb/cdb_client.py +13 -13
- tccli/services/cdb/v20170320/api.json +308 -274
- tccli/services/cdb/v20170320/examples.json +38 -38
- tccli/services/cdc/v20201214/api.json +283 -270
- tccli/services/cdc/v20201214/examples.json +26 -26
- tccli/services/cdn/v20180606/api.json +5 -3
- tccli/services/cds/v20180420/api.json +82 -76
- tccli/services/cds/v20180420/examples.json +1 -1
- tccli/services/cdwch/v20200915/api.json +1 -1
- tccli/services/cdwdoris/v20211228/api.json +54 -4
- tccli/services/cdz/v20221123/api.json +41 -5
- tccli/services/cfg/v20210820/api.json +31 -0
- tccli/services/cfs/v20190719/api.json +89 -1
- tccli/services/cfs/v20190719/examples.json +1 -1
- tccli/services/cfw/cfw_client.py +0 -53
- tccli/services/cfw/v20190904/api.json +1895 -2011
- tccli/services/cfw/v20190904/examples.json +175 -171
- tccli/services/ciam/v20220331/api.json +316 -315
- tccli/services/ciam/v20220331/examples.json +49 -49
- tccli/services/ckafka/v20190819/api.json +104 -75
- tccli/services/clb/v20180317/api.json +48 -26
- tccli/services/clb/v20180317/examples.json +1 -1
- tccli/services/cloudapp/v20220530/api.json +5 -1
- tccli/services/cloudaudit/cloudaudit_client.py +30 -30
- tccli/services/cloudaudit/v20190319/api.json +254 -211
- tccli/services/cloudaudit/v20190319/examples.json +19 -19
- tccli/services/cloudstudio/v20230508/api.json +38 -37
- tccli/services/cloudstudio/v20230508/examples.json +4 -4
- tccli/services/cls/cls_client.py +216 -4
- tccli/services/cls/v20201016/api.json +935 -147
- tccli/services/cls/v20201016/examples.json +43 -5
- tccli/services/csip/v20221121/api.json +2566 -2386
- tccli/services/csip/v20221121/examples.json +108 -108
- tccli/services/cvm/v20170312/api.json +191 -112
- tccli/services/cvm/v20170312/examples.json +2 -2
- tccli/services/cwp/cwp_client.py +4 -110
- tccli/services/cwp/v20180228/api.json +6498 -6252
- tccli/services/cwp/v20180228/examples.json +372 -412
- tccli/services/cynosdb/v20190107/api.json +170 -110
- tccli/services/cynosdb/v20190107/examples.json +91 -91
- tccli/services/dasb/v20191018/api.json +859 -637
- tccli/services/dasb/v20191018/examples.json +101 -101
- tccli/services/dcdb/dcdb_client.py +114 -61
- tccli/services/dcdb/v20180411/api.json +141 -7
- tccli/services/dcdb/v20180411/examples.json +32 -0
- tccli/services/dlc/v20210125/api.json +21 -11
- tccli/services/dnspod/dnspod_client.py +417 -46
- tccli/services/dnspod/v20210323/api.json +751 -30
- tccli/services/dnspod/v20210323/examples.json +62 -0
- tccli/services/domain/v20180808/api.json +3 -3
- tccli/services/domain/v20180808/examples.json +3 -3
- tccli/services/dts/v20211206/api.json +4 -4
- tccli/services/eb/v20210416/api.json +15 -15
- tccli/services/eb/v20210416/examples.json +1 -1
- tccli/services/ecm/v20190719/api.json +2 -2
- tccli/services/emr/v20190103/api.json +339 -114
- tccli/services/emr/v20190103/examples.json +64 -82
- tccli/services/es/es_client.py +249 -37
- tccli/services/es/v20180416/api.json +550 -0
- tccli/services/es/v20180416/examples.json +33 -1
- tccli/services/ess/ess_client.py +53 -0
- tccli/services/ess/v20201111/api.json +192 -38
- tccli/services/ess/v20201111/examples.json +35 -9
- tccli/services/essbasic/essbasic_client.py +106 -0
- tccli/services/essbasic/v20210526/api.json +287 -60
- tccli/services/essbasic/v20210526/examples.json +58 -18
- tccli/services/facefusion/v20181201/api.json +47 -45
- tccli/services/facefusion/v20181201/examples.json +2 -2
- tccli/services/facefusion/v20220927/api.json +54 -48
- tccli/services/facefusion/v20220927/examples.json +5 -5
- tccli/services/faceid/v20180301/api.json +497 -496
- tccli/services/faceid/v20180301/examples.json +219 -101
- tccli/services/fmu/v20191213/api.json +59 -67
- tccli/services/fmu/v20191213/examples.json +22 -22
- tccli/services/ft/v20200304/api.json +53 -57
- tccli/services/ft/v20200304/examples.json +14 -14
- tccli/services/gaap/v20180529/api.json +44 -26
- tccli/services/gaap/v20180529/examples.json +24 -30
- tccli/services/gme/v20180711/api.json +21 -11
- tccli/services/gme/v20180711/examples.json +1 -1
- tccli/services/hai/v20230812/api.json +116 -9
- tccli/services/hai/v20230812/examples.json +4 -4
- tccli/services/hunyuan/hunyuan_client.py +436 -12
- tccli/services/hunyuan/v20230901/api.json +1482 -118
- tccli/services/hunyuan/v20230901/examples.json +82 -18
- tccli/services/iai/v20180301/api.json +23 -19
- tccli/services/iai/v20180301/examples.json +2 -2
- tccli/services/iai/v20200303/api.json +530 -511
- tccli/services/iai/v20200303/examples.json +116 -86
- tccli/services/ig/__init__.py +4 -0
- tccli/services/ig/ig_client.py +195 -0
- tccli/services/ig/v20210518/api.json +83 -0
- tccli/services/ig/v20210518/examples.json +13 -0
- tccli/services/ioa/ioa_client.py +53 -0
- tccli/services/ioa/v20220601/api.json +662 -413
- tccli/services/ioa/v20220601/examples.json +24 -10
- tccli/services/iotexplorer/v20190423/api.json +73 -13
- tccli/services/iotexplorer/v20190423/examples.json +3 -3
- tccli/services/iotvideo/iotvideo_client.py +106 -0
- tccli/services/iotvideo/v20191126/api.json +256 -24
- tccli/services/iotvideo/v20191126/examples.json +19 -3
- tccli/services/iotvideo/v20201215/api.json +1 -1
- tccli/services/iotvideo/v20201215/examples.json +1 -1
- tccli/services/iotvideo/v20211125/api.json +1 -1
- tccli/services/iotvideo/v20211125/examples.json +2 -2
- tccli/services/iss/iss_client.py +69 -122
- tccli/services/iss/v20230517/api.json +10 -54
- tccli/services/iss/v20230517/examples.json +0 -14
- tccli/services/kms/v20190118/api.json +301 -268
- tccli/services/kms/v20190118/examples.json +45 -51
- tccli/services/lcic/lcic_client.py +159 -0
- tccli/services/lcic/v20220817/api.json +273 -1
- tccli/services/lcic/v20220817/examples.json +24 -0
- tccli/services/lighthouse/v20200324/api.json +56 -0
- tccli/services/live/live_client.py +159 -0
- tccli/services/live/v20180801/api.json +279 -9
- tccli/services/live/v20180801/examples.json +24 -0
- tccli/services/lke/v20231130/api.json +17 -17
- tccli/services/lke/v20231130/examples.json +19 -25
- tccli/services/mariadb/v20170312/api.json +7 -7
- tccli/services/market/v20191010/api.json +3 -3
- tccli/services/market/v20191010/examples.json +2 -2
- tccli/services/mmps/v20200710/api.json +47 -47
- tccli/services/mmps/v20200710/examples.json +3 -3
- tccli/services/mongodb/v20190725/api.json +10 -12
- tccli/services/monitor/v20180724/api.json +46 -19
- tccli/services/mps/v20190612/api.json +282 -5
- tccli/services/mps/v20190612/examples.json +25 -1
- tccli/services/mqtt/v20240516/api.json +2 -2
- tccli/services/mrs/v20200910/api.json +72 -34
- tccli/services/mrs/v20200910/examples.json +2 -2
- tccli/services/ms/v20180408/api.json +535 -506
- tccli/services/ms/v20180408/examples.json +25 -25
- tccli/services/oceanus/v20190422/api.json +130 -0
- tccli/services/ocr/ocr_client.py +232 -20
- tccli/services/ocr/v20181119/api.json +2263 -758
- tccli/services/ocr/v20181119/examples.json +200 -180
- tccli/services/omics/v20221128/api.json +614 -553
- tccli/services/omics/v20221128/examples.json +9 -9
- tccli/services/organization/organization_client.py +352 -34
- tccli/services/organization/v20210331/api.json +464 -4
- tccli/services/organization/v20210331/examples.json +49 -1
- tccli/services/partners/v20180321/api.json +244 -234
- tccli/services/partners/v20180321/examples.json +19 -19
- tccli/services/privatedns/privatedns_client.py +428 -4
- tccli/services/privatedns/v20201028/api.json +815 -11
- tccli/services/privatedns/v20201028/examples.json +64 -0
- tccli/services/pts/v20210728/api.json +18 -0
- tccli/services/pts/v20210728/examples.json +1 -1
- tccli/services/rce/rce_client.py +53 -0
- tccli/services/rce/v20201103/api.json +146 -0
- tccli/services/rce/v20201103/examples.json +8 -0
- tccli/services/redis/v20180412/api.json +42 -42
- tccli/services/redis/v20180412/examples.json +19 -19
- tccli/services/region/v20220627/api.json +1 -1
- tccli/services/rum/v20210622/api.json +9 -0
- tccli/services/scf/scf_client.py +269 -4
- tccli/services/scf/v20180416/api.json +569 -15
- tccli/services/scf/v20180416/examples.json +47 -1
- tccli/services/smop/v20201203/api.json +46 -42
- tccli/services/smop/v20201203/examples.json +2 -2
- tccli/services/soe/v20180724/api.json +10 -10
- tccli/services/sqlserver/v20180328/api.json +21 -8
- tccli/services/sqlserver/v20180328/examples.json +5 -5
- tccli/services/ssl/v20191205/api.json +98 -5
- tccli/services/ssm/v20190923/api.json +292 -231
- tccli/services/ssm/v20190923/examples.json +42 -42
- tccli/services/tat/v20201028/api.json +124 -122
- tccli/services/tat/v20201028/examples.json +24 -30
- tccli/services/tchd/v20230306/api.json +5 -5
- tccli/services/tchd/v20230306/examples.json +3 -3
- tccli/services/tcr/v20190924/api.json +1 -1
- tccli/services/tcr/v20190924/examples.json +1 -1
- tccli/services/tcss/v20201101/api.json +1984 -1437
- tccli/services/tcss/v20201101/examples.json +350 -368
- tccli/services/tdmq/v20200217/api.json +603 -464
- tccli/services/tdmq/v20200217/examples.json +105 -105
- tccli/services/tds/v20220801/api.json +4 -4
- tccli/services/tem/v20210701/api.json +429 -372
- tccli/services/tem/v20210701/examples.json +85 -85
- tccli/services/teo/teo_client.py +277 -12
- tccli/services/teo/v20220901/api.json +1029 -124
- tccli/services/teo/v20220901/examples.json +84 -8
- tccli/services/thpc/v20230321/api.json +5 -5
- tccli/services/tke/tke_client.py +270 -58
- tccli/services/tke/v20180525/api.json +79 -27
- tccli/services/tke/v20180525/examples.json +9 -1
- tccli/services/tke/v20220501/api.json +176 -0
- tccli/services/tke/v20220501/examples.json +24 -0
- tccli/services/tms/tms_client.py +4 -57
- tccli/services/tms/v20201229/api.json +0 -354
- tccli/services/tms/v20201229/examples.json +0 -8
- tccli/services/tmt/v20180321/api.json +38 -8
- tccli/services/trp/v20210515/api.json +86 -74
- tccli/services/trp/v20210515/examples.json +65 -65
- tccli/services/trro/v20220325/api.json +72 -71
- tccli/services/trro/v20220325/examples.json +8 -8
- tccli/services/trtc/trtc_client.py +8 -61
- tccli/services/trtc/v20190722/api.json +293 -52
- tccli/services/trtc/v20190722/examples.json +3 -11
- tccli/services/tse/tse_client.py +110 -4
- tccli/services/tse/v20201207/api.json +122 -7
- tccli/services/tse/v20201207/examples.json +25 -9
- tccli/services/vclm/v20240523/api.json +225 -82
- tccli/services/vclm/v20240523/examples.json +13 -19
- tccli/services/vod/v20180717/api.json +431 -4
- tccli/services/vod/v20180717/examples.json +25 -5
- tccli/services/vod/v20240718/api.json +11 -11
- tccli/services/vod/v20240718/examples.json +4 -4
- tccli/services/vod/vod_client.py +53 -0
- tccli/services/vpc/v20170312/api.json +1195 -892
- tccli/services/vpc/v20170312/examples.json +84 -68
- tccli/services/vpc/vpc_client.py +168 -62
- tccli/services/waf/v20180125/api.json +2611 -2187
- tccli/services/waf/v20180125/examples.json +224 -284
- tccli/services/waf/waf_client.py +225 -119
- tccli/services/wav/v20210129/api.json +48 -48
- tccli/services/wav/v20210129/examples.json +4 -4
- tccli/services/wedata/v20210820/api.json +1595 -25
- tccli/services/wedata/v20210820/examples.json +44 -4
- tccli/services/wedata/wedata_client.py +265 -0
- tccli/services/weilingwith/v20230427/api.json +6 -6
- tccli/services/weilingwith/v20230427/examples.json +3 -3
- tccli/sso.py +229 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/METADATA +6 -2
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/RECORD +278 -265
- tccli/services/cr/__init__.py +0 -4
- tccli/services/cr/cr_client.py +0 -1626
- tccli/services/cr/v20180321/api.json +0 -2829
- tccli/services/cr/v20180321/examples.json +0 -235
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/license_files/LICENSE +0 -0
@@ -249,7 +249,7 @@
|
|
249
249
|
{
|
250
250
|
"disabled": false,
|
251
251
|
"document": "专用集群id",
|
252
|
-
"example": "
|
252
|
+
"example": "cluster-gbo27yc4",
|
253
253
|
"member": "string",
|
254
254
|
"name": "DedicatedClusterId",
|
255
255
|
"required": true,
|
@@ -258,7 +258,7 @@
|
|
258
258
|
{
|
259
259
|
"disabled": false,
|
260
260
|
"document": "order关联的专用集群类型数组",
|
261
|
-
"example": "
|
261
|
+
"example": "[{ \"Id\": \"cluster-gbo27yc4\", \"Count\": 1 }]",
|
262
262
|
"member": "DedicatedClusterTypeInfo",
|
263
263
|
"name": "DedicatedClusterTypes",
|
264
264
|
"required": false,
|
@@ -267,7 +267,7 @@
|
|
267
267
|
{
|
268
268
|
"disabled": false,
|
269
269
|
"document": "order关联的cos存储信息",
|
270
|
-
"example": "
|
270
|
+
"example": "{ \"Size\": 1, \"Type\": C05 }",
|
271
271
|
"member": "CosInfo",
|
272
272
|
"name": "CosInfo",
|
273
273
|
"required": false,
|
@@ -276,7 +276,7 @@
|
|
276
276
|
{
|
277
277
|
"disabled": false,
|
278
278
|
"document": "order关联的cbs存储信息",
|
279
|
-
"example": "
|
279
|
+
"example": "{ \"Size\": 1, \"Type\": SSD }",
|
280
280
|
"member": "CbsInfo",
|
281
281
|
"name": "CbsInfo",
|
282
282
|
"required": false,
|
@@ -293,7 +293,7 @@
|
|
293
293
|
},
|
294
294
|
{
|
295
295
|
"disabled": false,
|
296
|
-
"document": "当调用API接口提交订单时,需要提交DedicatedClusterOrderId",
|
296
|
+
"document": "当调用API接口提交订单时,需要提交DedicatedClusterOrderId,此处DedicatedClusterOrderId是之前创建的订单,可通过DescribeDedicatedClusterOrders接口查询,这里传入DedicatedClusterOrderId用于调整订单和支付。",
|
297
297
|
"example": "ord-aijx4ets",
|
298
298
|
"member": "string",
|
299
299
|
"name": "DedicatedClusterOrderId",
|
@@ -309,9 +309,10 @@
|
|
309
309
|
{
|
310
310
|
"disabled": false,
|
311
311
|
"document": "专用集群订单id\n注意:此字段可能返回 null,表示取不到有效值。",
|
312
|
-
"example": "
|
312
|
+
"example": "ord-j3f3kdj4",
|
313
313
|
"member": "string",
|
314
314
|
"name": "DedicatedClusterOrderId",
|
315
|
+
"output_required": true,
|
315
316
|
"type": "string",
|
316
317
|
"value_allowed_null": true
|
317
318
|
},
|
@@ -330,7 +331,7 @@
|
|
330
331
|
{
|
331
332
|
"disabled": false,
|
332
333
|
"document": "专用集群所属的SiteId",
|
333
|
-
"example": "
|
334
|
+
"example": "site-98dj3kd",
|
334
335
|
"member": "string",
|
335
336
|
"name": "SiteId",
|
336
337
|
"required": true,
|
@@ -339,7 +340,7 @@
|
|
339
340
|
{
|
340
341
|
"disabled": false,
|
341
342
|
"document": "专用集群的名称",
|
342
|
-
"example": "
|
343
|
+
"example": "my-site",
|
343
344
|
"member": "string",
|
344
345
|
"name": "Name",
|
345
346
|
"required": true,
|
@@ -348,7 +349,7 @@
|
|
348
349
|
{
|
349
350
|
"disabled": false,
|
350
351
|
"document": "专用集群所属的可用区",
|
351
|
-
"example": "
|
352
|
+
"example": "ap-guangzhou",
|
352
353
|
"member": "string",
|
353
354
|
"name": "Zone",
|
354
355
|
"required": true,
|
@@ -357,7 +358,7 @@
|
|
357
358
|
{
|
358
359
|
"disabled": false,
|
359
360
|
"document": "专用集群的描述",
|
360
|
-
"example": "
|
361
|
+
"example": "my dedicated cluster",
|
361
362
|
"member": "string",
|
362
363
|
"name": "Description",
|
363
364
|
"required": false,
|
@@ -372,9 +373,10 @@
|
|
372
373
|
{
|
373
374
|
"disabled": false,
|
374
375
|
"document": "创建的专用集群id",
|
375
|
-
"example": "
|
376
|
+
"example": "cluster-gbo27yc4",
|
376
377
|
"member": "string",
|
377
378
|
"name": "DedicatedClusterId",
|
379
|
+
"output_required": true,
|
378
380
|
"type": "string",
|
379
381
|
"value_allowed_null": false
|
380
382
|
},
|
@@ -393,7 +395,7 @@
|
|
393
395
|
{
|
394
396
|
"disabled": false,
|
395
397
|
"document": "站点名称",
|
396
|
-
"example": "
|
398
|
+
"example": "my-site",
|
397
399
|
"member": "string",
|
398
400
|
"name": "Name",
|
399
401
|
"required": true,
|
@@ -429,7 +431,7 @@
|
|
429
431
|
{
|
430
432
|
"disabled": false,
|
431
433
|
"document": "站点所在地区的详细地址信息",
|
432
|
-
"example": "
|
434
|
+
"example": "Shennan Road 10000",
|
433
435
|
"member": "string",
|
434
436
|
"name": "AddressLine",
|
435
437
|
"required": true,
|
@@ -438,7 +440,7 @@
|
|
438
440
|
{
|
439
441
|
"disabled": false,
|
440
442
|
"document": "站点描述",
|
441
|
-
"example": "
|
443
|
+
"example": "this site is good",
|
442
444
|
"member": "string",
|
443
445
|
"name": "Description",
|
444
446
|
"required": false,
|
@@ -447,7 +449,7 @@
|
|
447
449
|
{
|
448
450
|
"disabled": false,
|
449
451
|
"document": "注意事项",
|
450
|
-
"example": "
|
452
|
+
"example": "the floor is not very good",
|
451
453
|
"member": "string",
|
452
454
|
"name": "Note",
|
453
455
|
"required": false,
|
@@ -455,8 +457,8 @@
|
|
455
457
|
},
|
456
458
|
{
|
457
459
|
"disabled": false,
|
458
|
-
"document": "您将使用光纤类型将CDC
|
459
|
-
"example": "
|
460
|
+
"document": "您将使用光纤类型将CDC设备连接到网络。有单模和多模两种选项。取值范围:\"MM\",\"SM\"",
|
461
|
+
"example": "MM",
|
460
462
|
"member": "string",
|
461
463
|
"name": "FiberType",
|
462
464
|
"required": false,
|
@@ -465,7 +467,7 @@
|
|
465
467
|
{
|
466
468
|
"disabled": false,
|
467
469
|
"document": "您将CDC连接到网络时采用的光学标准。此字段取决于上行链路速度、光纤类型和到上游设备的距离。",
|
468
|
-
"example": "
|
470
|
+
"example": "1000Base-SX",
|
469
471
|
"member": "string",
|
470
472
|
"name": "OpticalStandard",
|
471
473
|
"required": false,
|
@@ -474,7 +476,7 @@
|
|
474
476
|
{
|
475
477
|
"disabled": false,
|
476
478
|
"document": "电源连接器类型",
|
477
|
-
"example": "
|
479
|
+
"example": "380VAC3P",
|
478
480
|
"member": "string",
|
479
481
|
"name": "PowerConnectors",
|
480
482
|
"required": false,
|
@@ -482,8 +484,8 @@
|
|
482
484
|
},
|
483
485
|
{
|
484
486
|
"disabled": false,
|
485
|
-
"document": "
|
486
|
-
"example": "
|
487
|
+
"document": "从机架上方还是下方供电。取值范围:[\"UP\",\"DOWN\"]",
|
488
|
+
"example": "UP",
|
487
489
|
"member": "string",
|
488
490
|
"name": "PowerFeedDrop",
|
489
491
|
"required": false,
|
@@ -509,7 +511,7 @@
|
|
509
511
|
},
|
510
512
|
{
|
511
513
|
"disabled": false,
|
512
|
-
"document": "网络到腾讯云Region区域的上行链路速度",
|
514
|
+
"document": "网络到腾讯云Region区域的上行链路速度(Gbps)",
|
513
515
|
"example": "10",
|
514
516
|
"member": "int64",
|
515
517
|
"name": "UplinkSpeedGbps",
|
@@ -564,7 +566,7 @@
|
|
564
566
|
{
|
565
567
|
"disabled": false,
|
566
568
|
"document": "站点所在地区的详细地址信息(补充)",
|
567
|
-
"example": "
|
569
|
+
"example": "tengda",
|
568
570
|
"member": "string",
|
569
571
|
"name": "OptionalAddressLine",
|
570
572
|
"required": false,
|
@@ -606,9 +608,10 @@
|
|
606
608
|
{
|
607
609
|
"disabled": false,
|
608
610
|
"document": "创建Site生成的id",
|
609
|
-
"example": "
|
611
|
+
"example": "site-98dj3kd",
|
610
612
|
"member": "string",
|
611
613
|
"name": "SiteId",
|
614
|
+
"output_required": true,
|
612
615
|
"type": "string",
|
613
616
|
"value_allowed_null": false
|
614
617
|
},
|
@@ -627,70 +630,70 @@
|
|
627
630
|
{
|
628
631
|
"disabled": false,
|
629
632
|
"document": "专用集群id。如\"cluster-xxxxx\"。",
|
630
|
-
"example": "",
|
633
|
+
"example": "cluster-du3hdu32",
|
631
634
|
"member": "string",
|
632
635
|
"name": "DedicatedClusterId",
|
633
|
-
"
|
636
|
+
"output_required": true,
|
634
637
|
"type": "string",
|
635
638
|
"value_allowed_null": false
|
636
639
|
},
|
637
640
|
{
|
638
641
|
"disabled": false,
|
639
642
|
"document": "专用集群所属可用区名称。",
|
640
|
-
"example": "",
|
643
|
+
"example": "ap-guangzhou-2",
|
641
644
|
"member": "string",
|
642
645
|
"name": "Zone",
|
643
|
-
"
|
646
|
+
"output_required": true,
|
644
647
|
"type": "string",
|
645
648
|
"value_allowed_null": false
|
646
649
|
},
|
647
650
|
{
|
648
651
|
"disabled": false,
|
649
652
|
"document": "专用集群的描述。\n注意:此字段可能返回 null,表示取不到有效值。",
|
650
|
-
"example": "",
|
653
|
+
"example": "this is a description",
|
651
654
|
"member": "string",
|
652
655
|
"name": "Description",
|
653
|
-
"
|
656
|
+
"output_required": true,
|
654
657
|
"type": "string",
|
655
658
|
"value_allowed_null": true
|
656
659
|
},
|
657
660
|
{
|
658
661
|
"disabled": false,
|
659
662
|
"document": "专用集群的名称。",
|
660
|
-
"example": "",
|
663
|
+
"example": "wechen-first-dc",
|
661
664
|
"member": "string",
|
662
665
|
"name": "Name",
|
663
|
-
"
|
666
|
+
"output_required": true,
|
664
667
|
"type": "string",
|
665
668
|
"value_allowed_null": false
|
666
669
|
},
|
667
670
|
{
|
668
671
|
"disabled": false,
|
669
672
|
"document": "专用集群的生命周期。如\"PENDING\"。",
|
670
|
-
"example": "",
|
673
|
+
"example": "PENDING",
|
671
674
|
"member": "string",
|
672
675
|
"name": "LifecycleStatus",
|
673
|
-
"
|
676
|
+
"output_required": true,
|
674
677
|
"type": "string",
|
675
678
|
"value_allowed_null": false
|
676
679
|
},
|
677
680
|
{
|
678
681
|
"disabled": false,
|
679
682
|
"document": "专用集群的创建时间。",
|
680
|
-
"example": "",
|
683
|
+
"example": "2020-12-10T06:15:43Z",
|
681
684
|
"member": "datetime_iso",
|
682
685
|
"name": "CreateTime",
|
683
|
-
"
|
686
|
+
"output_required": true,
|
684
687
|
"type": "string",
|
685
688
|
"value_allowed_null": false
|
686
689
|
},
|
687
690
|
{
|
688
691
|
"disabled": false,
|
689
692
|
"document": "专用集群所属的站点id。",
|
690
|
-
"example": "",
|
693
|
+
"example": "site-38d9ck",
|
691
694
|
"member": "string",
|
692
695
|
"name": "SiteId",
|
693
|
-
"
|
696
|
+
"output_required": true,
|
694
697
|
"type": "string",
|
695
698
|
"value_allowed_null": false
|
696
699
|
}
|
@@ -703,150 +706,150 @@
|
|
703
706
|
{
|
704
707
|
"disabled": false,
|
705
708
|
"document": "可用区",
|
706
|
-
"example": "
|
709
|
+
"example": "ap-guangzhou-2",
|
707
710
|
"member": "string",
|
708
711
|
"name": "Zone",
|
709
|
-
"
|
712
|
+
"output_required": true,
|
710
713
|
"type": "string",
|
711
714
|
"value_allowed_null": false
|
712
715
|
},
|
713
716
|
{
|
714
717
|
"disabled": false,
|
715
718
|
"document": "规格名称",
|
716
|
-
"example": "
|
719
|
+
"example": "S1.SMALL1",
|
717
720
|
"member": "string",
|
718
721
|
"name": "InstanceType",
|
719
|
-
"
|
722
|
+
"output_required": true,
|
720
723
|
"type": "string",
|
721
724
|
"value_allowed_null": false
|
722
725
|
},
|
723
726
|
{
|
724
727
|
"disabled": false,
|
725
728
|
"document": "网卡类型,例如:25代表25G网卡",
|
726
|
-
"example": "
|
729
|
+
"example": "0",
|
727
730
|
"member": "int64",
|
728
731
|
"name": "NetworkCard",
|
729
|
-
"
|
732
|
+
"output_required": true,
|
730
733
|
"type": "int",
|
731
734
|
"value_allowed_null": false
|
732
735
|
},
|
733
736
|
{
|
734
737
|
"disabled": false,
|
735
738
|
"document": "实例的CPU核数,单位:核。",
|
736
|
-
"example": "
|
739
|
+
"example": "1",
|
737
740
|
"member": "int64",
|
738
741
|
"name": "Cpu",
|
739
|
-
"
|
742
|
+
"output_required": true,
|
740
743
|
"type": "int",
|
741
744
|
"value_allowed_null": false
|
742
745
|
},
|
743
746
|
{
|
744
747
|
"disabled": false,
|
745
748
|
"document": "实例内存容量,单位:`GB`。",
|
746
|
-
"example": "
|
749
|
+
"example": "1",
|
747
750
|
"member": "int64",
|
748
751
|
"name": "Memory",
|
749
|
-
"
|
752
|
+
"output_required": true,
|
750
753
|
"type": "int",
|
751
754
|
"value_allowed_null": false
|
752
755
|
},
|
753
756
|
{
|
754
757
|
"disabled": false,
|
755
758
|
"document": "实例机型系列。",
|
756
|
-
"example": "
|
759
|
+
"example": "S1",
|
757
760
|
"member": "string",
|
758
761
|
"name": "InstanceFamily",
|
759
|
-
"
|
762
|
+
"output_required": true,
|
760
763
|
"type": "string",
|
761
764
|
"value_allowed_null": false
|
762
765
|
},
|
763
766
|
{
|
764
767
|
"disabled": false,
|
765
768
|
"document": "机型名称。",
|
766
|
-
"example": "
|
769
|
+
"example": "Standard S1",
|
767
770
|
"member": "string",
|
768
771
|
"name": "TypeName",
|
769
|
-
"
|
772
|
+
"output_required": true,
|
770
773
|
"type": "string",
|
771
774
|
"value_allowed_null": false
|
772
775
|
},
|
773
776
|
{
|
774
777
|
"disabled": false,
|
775
778
|
"document": "本地存储块数量。",
|
776
|
-
"example": "
|
779
|
+
"example": "0",
|
777
780
|
"member": "int64",
|
778
781
|
"name": "StorageBlockAmount",
|
779
|
-
"
|
782
|
+
"output_required": true,
|
780
783
|
"type": "int",
|
781
784
|
"value_allowed_null": false
|
782
785
|
},
|
783
786
|
{
|
784
787
|
"disabled": false,
|
785
788
|
"document": "内网带宽,单位Gbps。",
|
786
|
-
"example": "
|
789
|
+
"example": "0",
|
787
790
|
"member": "float",
|
788
791
|
"name": "InstanceBandwidth",
|
789
|
-
"
|
792
|
+
"output_required": true,
|
790
793
|
"type": "float",
|
791
794
|
"value_allowed_null": false
|
792
795
|
},
|
793
796
|
{
|
794
797
|
"disabled": false,
|
795
798
|
"document": "网络收发包能力,单位万PPS。",
|
796
|
-
"example": "
|
799
|
+
"example": "0",
|
797
800
|
"member": "int64",
|
798
801
|
"name": "InstancePps",
|
799
|
-
"
|
802
|
+
"output_required": true,
|
800
803
|
"type": "int",
|
801
804
|
"value_allowed_null": false
|
802
805
|
},
|
803
806
|
{
|
804
807
|
"disabled": false,
|
805
808
|
"document": "处理器型号。",
|
806
|
-
"example": "
|
809
|
+
"example": "intel",
|
807
810
|
"member": "string",
|
808
811
|
"name": "CpuType",
|
809
|
-
"
|
812
|
+
"output_required": true,
|
810
813
|
"type": "string",
|
811
814
|
"value_allowed_null": false
|
812
815
|
},
|
813
816
|
{
|
814
817
|
"disabled": false,
|
815
818
|
"document": "实例的GPU数量。",
|
816
|
-
"example": "
|
819
|
+
"example": "0",
|
817
820
|
"member": "int64",
|
818
821
|
"name": "Gpu",
|
819
|
-
"
|
822
|
+
"output_required": true,
|
820
823
|
"type": "int",
|
821
824
|
"value_allowed_null": false
|
822
825
|
},
|
823
826
|
{
|
824
827
|
"disabled": false,
|
825
828
|
"document": "实例的FPGA数量。",
|
826
|
-
"example": "
|
829
|
+
"example": "0",
|
827
830
|
"member": "int64",
|
828
831
|
"name": "Fpga",
|
829
|
-
"
|
832
|
+
"output_required": true,
|
830
833
|
"type": "int",
|
831
834
|
"value_allowed_null": false
|
832
835
|
},
|
833
836
|
{
|
834
837
|
"disabled": false,
|
835
838
|
"document": "机型描述",
|
836
|
-
"example": "
|
839
|
+
"example": "这是S1机型",
|
837
840
|
"member": "string",
|
838
841
|
"name": "Remark",
|
839
|
-
"
|
842
|
+
"output_required": true,
|
840
843
|
"type": "string",
|
841
844
|
"value_allowed_null": false
|
842
845
|
},
|
843
846
|
{
|
844
847
|
"disabled": false,
|
845
|
-
"document": "实例是否售卖。取值范围: <br><li>SELL:表示实例可购买<br><li>SOLD_OUT
|
846
|
-
"example": "
|
848
|
+
"document": "实例是否售卖。取值范围: <br><li>SELL:表示实例可购买<br></li><li>SOLD_OUT:表示实例已售罄。</li>",
|
849
|
+
"example": "SOLD_OUT",
|
847
850
|
"member": "string",
|
848
851
|
"name": "Status",
|
849
|
-
"
|
852
|
+
"output_required": true,
|
850
853
|
"type": "string",
|
851
854
|
"value_allowed_null": false
|
852
855
|
}
|
@@ -859,7 +862,7 @@
|
|
859
862
|
{
|
860
863
|
"disabled": false,
|
861
864
|
"document": "专用集群id",
|
862
|
-
"example": "
|
865
|
+
"example": "cluster-xh37dh",
|
863
866
|
"member": "string",
|
864
867
|
"name": "DedicatedClusterId",
|
865
868
|
"output_required": true,
|
@@ -869,7 +872,7 @@
|
|
869
872
|
{
|
870
873
|
"disabled": false,
|
871
874
|
"document": "专用集群类型id(移到下一层级,已经废弃,后续将删除)",
|
872
|
-
"example": "
|
875
|
+
"example": "dctype-00000000",
|
873
876
|
"member": "string",
|
874
877
|
"name": "DedicatedClusterTypeId",
|
875
878
|
"output_required": true,
|
@@ -879,7 +882,7 @@
|
|
879
882
|
{
|
880
883
|
"disabled": false,
|
881
884
|
"document": "支持的存储类型列表(移到下一层级,已经废弃,后续将删除)",
|
882
|
-
"example": "
|
885
|
+
"example": "[\"SSD\"]",
|
883
886
|
"member": "string",
|
884
887
|
"name": "SupportedStorageType",
|
885
888
|
"output_required": true,
|
@@ -889,7 +892,7 @@
|
|
889
892
|
{
|
890
893
|
"disabled": false,
|
891
894
|
"document": "支持的上连交换机的链路传输速率(GiB)(移到下一层级,已经废弃,后续将删除)",
|
892
|
-
"example": "
|
895
|
+
"example": "[10,25,40,100]",
|
893
896
|
"member": "int64",
|
894
897
|
"name": "SupportedUplinkSpeed",
|
895
898
|
"output_required": true,
|
@@ -899,7 +902,7 @@
|
|
899
902
|
{
|
900
903
|
"disabled": false,
|
901
904
|
"document": "支持的实例族列表(移到下一层级,已经废弃,后续将删除)",
|
902
|
-
"example": "
|
905
|
+
"example": "[\"SA5t\"]",
|
903
906
|
"member": "string",
|
904
907
|
"name": "SupportedInstanceFamily",
|
905
908
|
"output_required": true,
|
@@ -909,7 +912,7 @@
|
|
909
912
|
{
|
910
913
|
"disabled": false,
|
911
914
|
"document": "地板承重要求(KG)",
|
912
|
-
"example": "
|
915
|
+
"example": "0",
|
913
916
|
"member": "int64",
|
914
917
|
"name": "Weight",
|
915
918
|
"output_required": true,
|
@@ -919,7 +922,7 @@
|
|
919
922
|
{
|
920
923
|
"disabled": false,
|
921
924
|
"document": "功率要求(KW)",
|
922
|
-
"example": "
|
925
|
+
"example": "0",
|
923
926
|
"member": "float",
|
924
927
|
"name": "PowerDraw",
|
925
928
|
"output_required": true,
|
@@ -929,7 +932,7 @@
|
|
929
932
|
{
|
930
933
|
"disabled": false,
|
931
934
|
"document": "订单状态",
|
932
|
-
"example": "
|
935
|
+
"example": "PENDING",
|
933
936
|
"member": "string",
|
934
937
|
"name": "OrderStatus",
|
935
938
|
"output_required": true,
|
@@ -939,7 +942,7 @@
|
|
939
942
|
{
|
940
943
|
"disabled": false,
|
941
944
|
"document": "订单创建的时间",
|
942
|
-
"example": "
|
945
|
+
"example": "2024-10-16T07:18:37Z",
|
943
946
|
"member": "datetime_iso",
|
944
947
|
"name": "CreateTime",
|
945
948
|
"output_required": true,
|
@@ -969,7 +972,7 @@
|
|
969
972
|
{
|
970
973
|
"disabled": false,
|
971
974
|
"document": "子订单详情列表\n注意:此字段可能返回 null,表示取不到有效值。",
|
972
|
-
"example": "
|
975
|
+
"example": "[ { \"ComputeFormat\": \"1 SA5t.60XLARGE1076\", \"Count\": 1, \"CreateTime\": \"2024-10-16 15:18:37\", \"DedicatedClusterTypeId\": \"dctype-45ndlenk\", \"Description\": \"SA5t\", \"Name\": \"CVM.SA5t.60XLARGE1076\", \"PowerDraw\": 0, \"SubOrderId\": \"sord-gfwblx76\", \"SubOrderPayStatus\": 0, \"SubOrderStatus\": \"DELIVERED\", \"SupportedInstanceFamily\": [ \"SA5t\" ], \"SupportedStorageType\": [], \"SupportedUplinkSpeed\": [], \"TotalCpu\": 240, \"TotalGpu\": 0, \"TotalMem\": 1076, \"TypeFamily\": \"CUSTOM.COMPUTE\", \"TypeName\": \"CVM.SA5t.60XLARGE1076\", \"Weight\": 0 } ]",
|
973
976
|
"member": "DedicatedClusterOrderItem",
|
974
977
|
"name": "DedicatedClusterOrderItems",
|
975
978
|
"output_required": true,
|
@@ -979,7 +982,7 @@
|
|
979
982
|
{
|
980
983
|
"disabled": false,
|
981
984
|
"document": "cpu值\n注意:此字段可能返回 null,表示取不到有效值。",
|
982
|
-
"example": "
|
985
|
+
"example": "240",
|
983
986
|
"member": "int64",
|
984
987
|
"name": "Cpu",
|
985
988
|
"output_required": true,
|
@@ -989,7 +992,7 @@
|
|
989
992
|
{
|
990
993
|
"disabled": false,
|
991
994
|
"document": "mem值\n注意:此字段可能返回 null,表示取不到有效值。",
|
992
|
-
"example": "
|
995
|
+
"example": "1076",
|
993
996
|
"member": "int64",
|
994
997
|
"name": "Mem",
|
995
998
|
"output_required": true,
|
@@ -999,7 +1002,7 @@
|
|
999
1002
|
{
|
1000
1003
|
"disabled": false,
|
1001
1004
|
"document": "gpu值\n注意:此字段可能返回 null,表示取不到有效值。",
|
1002
|
-
"example": "
|
1005
|
+
"example": "0",
|
1003
1006
|
"member": "int64",
|
1004
1007
|
"name": "Gpu",
|
1005
1008
|
"output_required": true,
|
@@ -1058,73 +1061,73 @@
|
|
1058
1061
|
},
|
1059
1062
|
{
|
1060
1063
|
"disabled": false,
|
1061
|
-
"document": "
|
1064
|
+
"document": "验收状态",
|
1062
1065
|
"example": "DELIVERING",
|
1063
1066
|
"member": "string",
|
1064
1067
|
"name": "CheckStatus",
|
1065
1068
|
"output_required": false,
|
1066
1069
|
"type": "string",
|
1067
|
-
"value_allowed_null":
|
1070
|
+
"value_allowed_null": false
|
1068
1071
|
},
|
1069
1072
|
{
|
1070
1073
|
"disabled": false,
|
1071
|
-
"document": "
|
1074
|
+
"document": "交付预期时间",
|
1072
1075
|
"example": "2024-01-01 12:00:00",
|
1073
1076
|
"member": "string",
|
1074
1077
|
"name": "DeliverExpectTime",
|
1075
1078
|
"output_required": false,
|
1076
1079
|
"type": "string",
|
1077
|
-
"value_allowed_null":
|
1080
|
+
"value_allowed_null": false
|
1078
1081
|
},
|
1079
1082
|
{
|
1080
1083
|
"disabled": false,
|
1081
|
-
"document": "
|
1084
|
+
"document": "交付实际完成时间",
|
1082
1085
|
"example": "2024-01-01 12:00:00",
|
1083
1086
|
"member": "string",
|
1084
1087
|
"name": "DeliverFinishTime",
|
1085
1088
|
"output_required": false,
|
1086
1089
|
"type": "string",
|
1087
|
-
"value_allowed_null":
|
1090
|
+
"value_allowed_null": false
|
1088
1091
|
},
|
1089
1092
|
{
|
1090
1093
|
"disabled": false,
|
1091
|
-
"document": "
|
1094
|
+
"document": "验收预期时间",
|
1092
1095
|
"example": "2024-01-01 12:00:00",
|
1093
1096
|
"member": "string",
|
1094
1097
|
"name": "CheckExpectTime",
|
1095
1098
|
"output_required": false,
|
1096
1099
|
"type": "string",
|
1097
|
-
"value_allowed_null":
|
1100
|
+
"value_allowed_null": false
|
1098
1101
|
},
|
1099
1102
|
{
|
1100
1103
|
"disabled": false,
|
1101
|
-
"document": "
|
1104
|
+
"document": "验收实际完成时间",
|
1102
1105
|
"example": "2024-01-01 12:00:00",
|
1103
1106
|
"member": "string",
|
1104
1107
|
"name": "CheckFinishTime",
|
1105
1108
|
"output_required": false,
|
1106
1109
|
"type": "string",
|
1107
|
-
"value_allowed_null":
|
1110
|
+
"value_allowed_null": false
|
1108
1111
|
},
|
1109
1112
|
{
|
1110
1113
|
"disabled": false,
|
1111
|
-
"document": "订单SLA
|
1112
|
-
"example": "
|
1114
|
+
"document": "订单SLA",
|
1115
|
+
"example": "null",
|
1113
1116
|
"member": "string",
|
1114
1117
|
"name": "OrderSLA",
|
1115
1118
|
"output_required": false,
|
1116
1119
|
"type": "string",
|
1117
|
-
"value_allowed_null":
|
1120
|
+
"value_allowed_null": false
|
1118
1121
|
},
|
1119
1122
|
{
|
1120
1123
|
"disabled": false,
|
1121
|
-
"document": "
|
1122
|
-
"example": "
|
1124
|
+
"document": "订单支付计划",
|
1125
|
+
"example": "null",
|
1123
1126
|
"member": "string",
|
1124
1127
|
"name": "OrderPayPlan",
|
1125
1128
|
"output_required": false,
|
1126
1129
|
"type": "string",
|
1127
|
-
"value_allowed_null":
|
1130
|
+
"value_allowed_null": false
|
1128
1131
|
}
|
1129
1132
|
],
|
1130
1133
|
"usage": "out"
|
@@ -1135,80 +1138,80 @@
|
|
1135
1138
|
{
|
1136
1139
|
"disabled": false,
|
1137
1140
|
"document": "专用集群类型id",
|
1138
|
-
"example": "
|
1141
|
+
"example": "dctype-01000001",
|
1139
1142
|
"member": "string",
|
1140
1143
|
"name": "DedicatedClusterTypeId",
|
1141
|
-
"
|
1144
|
+
"output_required": true,
|
1142
1145
|
"type": "string",
|
1143
1146
|
"value_allowed_null": false
|
1144
1147
|
},
|
1145
1148
|
{
|
1146
1149
|
"disabled": false,
|
1147
1150
|
"document": "支持的存储类型列表",
|
1148
|
-
"example": "
|
1151
|
+
"example": "[\"SSD\"]",
|
1149
1152
|
"member": "string",
|
1150
1153
|
"name": "SupportedStorageType",
|
1151
|
-
"
|
1154
|
+
"output_required": true,
|
1152
1155
|
"type": "list",
|
1153
1156
|
"value_allowed_null": false
|
1154
1157
|
},
|
1155
1158
|
{
|
1156
1159
|
"disabled": false,
|
1157
1160
|
"document": "支持的上连交换机的链路传输速率(GiB)",
|
1158
|
-
"example": "
|
1161
|
+
"example": "[10,25,40,100]",
|
1159
1162
|
"member": "int64",
|
1160
1163
|
"name": "SupportedUplinkSpeed",
|
1161
|
-
"
|
1164
|
+
"output_required": true,
|
1162
1165
|
"type": "list",
|
1163
1166
|
"value_allowed_null": false
|
1164
1167
|
},
|
1165
1168
|
{
|
1166
1169
|
"disabled": false,
|
1167
1170
|
"document": "支持的实例族列表",
|
1168
|
-
"example": "
|
1171
|
+
"example": "[\"S5\"]",
|
1169
1172
|
"member": "string",
|
1170
1173
|
"name": "SupportedInstanceFamily",
|
1171
|
-
"
|
1174
|
+
"output_required": true,
|
1172
1175
|
"type": "list",
|
1173
1176
|
"value_allowed_null": false
|
1174
1177
|
},
|
1175
1178
|
{
|
1176
1179
|
"disabled": false,
|
1177
1180
|
"document": "地板承重要求(KG)",
|
1178
|
-
"example": "
|
1181
|
+
"example": "0",
|
1179
1182
|
"member": "int64",
|
1180
1183
|
"name": "Weight",
|
1181
|
-
"
|
1184
|
+
"output_required": true,
|
1182
1185
|
"type": "int",
|
1183
1186
|
"value_allowed_null": false
|
1184
1187
|
},
|
1185
1188
|
{
|
1186
1189
|
"disabled": false,
|
1187
1190
|
"document": "功率要求(KW)",
|
1188
|
-
"example": "
|
1191
|
+
"example": "0",
|
1189
1192
|
"member": "float",
|
1190
1193
|
"name": "PowerDraw",
|
1191
|
-
"
|
1194
|
+
"output_required": true,
|
1192
1195
|
"type": "float",
|
1193
1196
|
"value_allowed_null": false
|
1194
1197
|
},
|
1195
1198
|
{
|
1196
1199
|
"disabled": false,
|
1197
1200
|
"document": "订单状态",
|
1198
|
-
"example": "
|
1201
|
+
"example": "PENDING",
|
1199
1202
|
"member": "string",
|
1200
1203
|
"name": "SubOrderStatus",
|
1201
|
-
"
|
1204
|
+
"output_required": true,
|
1202
1205
|
"type": "string",
|
1203
1206
|
"value_allowed_null": false
|
1204
1207
|
},
|
1205
1208
|
{
|
1206
1209
|
"disabled": false,
|
1207
1210
|
"document": "订单创建的时间",
|
1208
|
-
"example": "
|
1211
|
+
"example": "2022-08-15 15:08:12",
|
1209
1212
|
"member": "datetime_iso",
|
1210
1213
|
"name": "CreateTime",
|
1211
|
-
"
|
1214
|
+
"output_required": true,
|
1212
1215
|
"type": "string",
|
1213
1216
|
"value_allowed_null": false
|
1214
1217
|
},
|
@@ -1218,7 +1221,7 @@
|
|
1218
1221
|
"example": "ord-aijx4ets ",
|
1219
1222
|
"member": "string",
|
1220
1223
|
"name": "SubOrderId",
|
1221
|
-
"
|
1224
|
+
"output_required": true,
|
1222
1225
|
"type": "string",
|
1223
1226
|
"value_allowed_null": false
|
1224
1227
|
},
|
@@ -1228,7 +1231,7 @@
|
|
1228
1231
|
"example": "1",
|
1229
1232
|
"member": "int64",
|
1230
1233
|
"name": "Count",
|
1231
|
-
"
|
1234
|
+
"output_required": true,
|
1232
1235
|
"type": "int",
|
1233
1236
|
"value_allowed_null": false
|
1234
1237
|
},
|
@@ -1238,7 +1241,7 @@
|
|
1238
1241
|
"example": "通用小型机",
|
1239
1242
|
"member": "string",
|
1240
1243
|
"name": "Name",
|
1241
|
-
"
|
1244
|
+
"output_required": true,
|
1242
1245
|
"type": "string",
|
1243
1246
|
"value_allowed_null": false
|
1244
1247
|
},
|
@@ -1248,7 +1251,7 @@
|
|
1248
1251
|
"example": "适用于...场景",
|
1249
1252
|
"member": "string",
|
1250
1253
|
"name": "Description",
|
1251
|
-
"
|
1254
|
+
"output_required": true,
|
1252
1255
|
"type": "string",
|
1253
1256
|
"value_allowed_null": false
|
1254
1257
|
},
|
@@ -1258,7 +1261,7 @@
|
|
1258
1261
|
"example": "1",
|
1259
1262
|
"member": "int64",
|
1260
1263
|
"name": "TotalCpu",
|
1261
|
-
"
|
1264
|
+
"output_required": true,
|
1262
1265
|
"type": "int",
|
1263
1266
|
"value_allowed_null": false
|
1264
1267
|
},
|
@@ -1268,7 +1271,7 @@
|
|
1268
1271
|
"example": "1",
|
1269
1272
|
"member": "int64",
|
1270
1273
|
"name": "TotalMem",
|
1271
|
-
"
|
1274
|
+
"output_required": true,
|
1272
1275
|
"type": "int",
|
1273
1276
|
"value_allowed_null": false
|
1274
1277
|
},
|
@@ -1278,7 +1281,7 @@
|
|
1278
1281
|
"example": "1",
|
1279
1282
|
"member": "int64",
|
1280
1283
|
"name": "TotalGpu",
|
1281
|
-
"
|
1284
|
+
"output_required": true,
|
1282
1285
|
"type": "int",
|
1283
1286
|
"value_allowed_null": false
|
1284
1287
|
},
|
@@ -1288,7 +1291,7 @@
|
|
1288
1291
|
"example": "CBS.SSD",
|
1289
1292
|
"member": "string",
|
1290
1293
|
"name": "TypeName",
|
1291
|
-
"
|
1294
|
+
"output_required": true,
|
1292
1295
|
"type": "string",
|
1293
1296
|
"value_allowed_null": false
|
1294
1297
|
},
|
@@ -1298,7 +1301,7 @@
|
|
1298
1301
|
"example": "M5.21XLARGE700 4、S5.21XLARGE320 2",
|
1299
1302
|
"member": "string",
|
1300
1303
|
"name": "ComputeFormat",
|
1301
|
-
"
|
1304
|
+
"output_required": true,
|
1302
1305
|
"type": "string",
|
1303
1306
|
"value_allowed_null": true
|
1304
1307
|
},
|
@@ -1308,7 +1311,7 @@
|
|
1308
1311
|
"example": "COMPUTE",
|
1309
1312
|
"member": "string",
|
1310
1313
|
"name": "TypeFamily",
|
1311
|
-
"
|
1314
|
+
"output_required": true,
|
1312
1315
|
"type": "string",
|
1313
1316
|
"value_allowed_null": true
|
1314
1317
|
},
|
@@ -1318,7 +1321,7 @@
|
|
1318
1321
|
"example": "0",
|
1319
1322
|
"member": "int64",
|
1320
1323
|
"name": "SubOrderPayStatus",
|
1321
|
-
"
|
1324
|
+
"output_required": true,
|
1322
1325
|
"type": "int",
|
1323
1326
|
"value_allowed_null": true
|
1324
1327
|
}
|
@@ -1361,7 +1364,7 @@
|
|
1361
1364
|
{
|
1362
1365
|
"disabled": false,
|
1363
1366
|
"document": "创建配置的时间",
|
1364
|
-
"example": "
|
1367
|
+
"example": "2024-10-30 17:14:13",
|
1365
1368
|
"member": "datetime_iso",
|
1366
1369
|
"name": "CreateTime",
|
1367
1370
|
"output_required": true,
|
@@ -1526,7 +1529,7 @@
|
|
1526
1529
|
{
|
1527
1530
|
"disabled": false,
|
1528
1531
|
"document": "云硬盘仓库id",
|
1529
|
-
"example": "set-
|
1532
|
+
"example": "set-mm4hzptu",
|
1530
1533
|
"member": "string",
|
1531
1534
|
"name": "SetId",
|
1532
1535
|
"required": false,
|
@@ -1544,7 +1547,7 @@
|
|
1544
1547
|
{
|
1545
1548
|
"disabled": false,
|
1546
1549
|
"document": "结束时间",
|
1547
|
-
"example": "2023-01-
|
1550
|
+
"example": "2023-01-02 12:00:00",
|
1548
1551
|
"member": "string",
|
1549
1552
|
"name": "EndTime",
|
1550
1553
|
"required": false,
|
@@ -1552,7 +1555,7 @@
|
|
1552
1555
|
},
|
1553
1556
|
{
|
1554
1557
|
"disabled": false,
|
1555
|
-
"document": "时间范围精度,1
|
1558
|
+
"document": "时间范围精度,1分钟(ONE_MINUTE)/5分钟(FIVE_MINUTE)",
|
1556
1559
|
"example": "ONE_MINUTE",
|
1557
1560
|
"member": "string",
|
1558
1561
|
"name": "Period",
|
@@ -1585,23 +1588,23 @@
|
|
1585
1588
|
"members": [
|
1586
1589
|
{
|
1587
1590
|
"disabled": false,
|
1588
|
-
"document": "
|
1589
|
-
"example": "
|
1591
|
+
"document": "云硬盘仓库信息",
|
1592
|
+
"example": "[ { \"Await\": { \"Timestamps\": [], \"Values\": [] }, \"CreateTime\": \"2022-12-09 15:20:09\", \"ReadIO\": { \"Timestamps\": [], \"Values\": [] }, \"ReadTraffic\": { \"Timestamps\": [], \"Values\": [] }, \"SetId\": \"set-mm4hzptu\", \"SetName\": \"HCBS_GZCDC_Z133_CDCCBS_Y0SH1125G_D0003\", \"SetSize\": 33.4, \"SetStatus\": \"RUNNING\", \"SetType\": \"ssd\", \"Util\": { \"Timestamps\": [], \"Values\": [] }, \"WriteIO\": { \"Timestamps\": [], \"Values\": [] }, \"WriteTraffic\": { \"Timestamps\": [], \"Values\": [] } } ]",
|
1590
1593
|
"member": "SetInfo",
|
1591
1594
|
"name": "SetList",
|
1592
1595
|
"output_required": false,
|
1593
1596
|
"type": "list",
|
1594
|
-
"value_allowed_null":
|
1597
|
+
"value_allowed_null": false
|
1595
1598
|
},
|
1596
1599
|
{
|
1597
1600
|
"disabled": false,
|
1598
|
-
"document": "
|
1599
|
-
"example": "
|
1601
|
+
"document": "总数",
|
1602
|
+
"example": "1",
|
1600
1603
|
"member": "uint64",
|
1601
1604
|
"name": "TotalCount",
|
1602
1605
|
"output_required": false,
|
1603
1606
|
"type": "int",
|
1604
|
-
"value_allowed_null":
|
1607
|
+
"value_allowed_null": false
|
1605
1608
|
},
|
1606
1609
|
{
|
1607
1610
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
@@ -1618,7 +1621,7 @@
|
|
1618
1621
|
{
|
1619
1622
|
"disabled": false,
|
1620
1623
|
"document": "查询的专用集群id",
|
1621
|
-
"example": "
|
1624
|
+
"example": "cluster-gbo27yc4",
|
1622
1625
|
"member": "string",
|
1623
1626
|
"name": "DedicatedClusterId",
|
1624
1627
|
"required": true,
|
@@ -1633,9 +1636,10 @@
|
|
1633
1636
|
{
|
1634
1637
|
"disabled": false,
|
1635
1638
|
"document": "本集群内cos容量信息,单位:‘GB’",
|
1636
|
-
"example": "
|
1639
|
+
"example": "{ \"TotalCapacity\": 0, \"TotalFreeCapacity\": 0, \"TotalUsedCapacity\": 0 }",
|
1637
1640
|
"member": "CosCapacity",
|
1638
1641
|
"name": "CosCapacity",
|
1642
|
+
"output_required": true,
|
1639
1643
|
"type": "object",
|
1640
1644
|
"value_allowed_null": false
|
1641
1645
|
},
|
@@ -1654,7 +1658,7 @@
|
|
1654
1658
|
{
|
1655
1659
|
"disabled": false,
|
1656
1660
|
"document": "查询的专用集群id",
|
1657
|
-
"example": "
|
1661
|
+
"example": "cluster-gbo27yc4",
|
1658
1662
|
"member": "string",
|
1659
1663
|
"name": "DedicatedClusterId",
|
1660
1664
|
"required": true,
|
@@ -1663,7 +1667,7 @@
|
|
1663
1667
|
{
|
1664
1668
|
"disabled": false,
|
1665
1669
|
"document": "宿主机id",
|
1666
|
-
"example": "host-
|
1670
|
+
"example": "host-ro7czflb",
|
1667
1671
|
"member": "string",
|
1668
1672
|
"name": "HostId",
|
1669
1673
|
"required": false,
|
@@ -1681,7 +1685,7 @@
|
|
1681
1685
|
{
|
1682
1686
|
"disabled": false,
|
1683
1687
|
"document": "结束时间",
|
1684
|
-
"example": "
|
1688
|
+
"example": "2023-01-02 12:00:00",
|
1685
1689
|
"member": "string",
|
1686
1690
|
"name": "EndTime",
|
1687
1691
|
"required": false,
|
@@ -1689,7 +1693,7 @@
|
|
1689
1693
|
},
|
1690
1694
|
{
|
1691
1695
|
"disabled": false,
|
1692
|
-
"document": "时间范围精度,1
|
1696
|
+
"document": "时间范围精度,1分钟(ONE_MINUTE)/5分钟(FIVE_MINUTE)",
|
1693
1697
|
"example": "ONE_MINUTE",
|
1694
1698
|
"member": "string",
|
1695
1699
|
"name": "Period",
|
@@ -1705,7 +1709,7 @@
|
|
1705
1709
|
{
|
1706
1710
|
"disabled": false,
|
1707
1711
|
"document": "该集群内宿主机的统计信息列表",
|
1708
|
-
"example": "
|
1712
|
+
"example": "[ { \"HostType\": \"S5.21XLARGE320\", \"HostFamily\": \"S5\", \"Cpu\": 84, \"Memory\": 320, \"Count\": 240, \"CpuAverage\": 50, \"MemAverage\": 50, \"NetAverage\": 100, \"CpuDetailData\": { \"Timestamps\": [ 1693274400 ], \"Values\": [ 0 ] }, \"MemDetailData\": { \"Timestamps\": [ 1693274400 ], \"Values\": [ 0 ] }, \"NetRateDetailData\": { \"Timestamps\": [ 1693274400 ], \"Values\": [ 0 ] }, \"NetPacketDetailData\": { \"Timestamps\": [ 1693274400 ], \"Values\": [ 0 ] } } ]",
|
1709
1713
|
"member": "HostStatistic",
|
1710
1714
|
"name": "HostStatisticSet",
|
1711
1715
|
"output_required": true,
|
@@ -1760,7 +1764,7 @@
|
|
1760
1764
|
{
|
1761
1765
|
"disabled": false,
|
1762
1766
|
"document": "宿主机信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
1763
|
-
"example": "
|
1767
|
+
"example": "[ { \"HostId\":\"host-0l8k7qm\", \"HostIp\": \"50.4.2.2\", \"ServiceType\": \"云服务器宿主机\", \"HostStatus\": \"PENDING\", \"HostType\": \"标准型S5.21XLARGE320\", \"RunTime\": \"2022-03-29 16:37:01\", \"ExpireTime\": \"2025-03-29 16:37:01\", \"CpuAvailable\": 24, \"CpuTotal\": 24, \"MemAvailable\": 96, \"MemTotal\": 96 }, { \"HostId\":\"host-0l8k7qp\", \"HostIp\": \"50.4.2.3\", \"ServiceType\": \"云服务器宿主机\", \"HostStatus\": \"PENDING\", \"HostType\": \"标准型S5.21XLARGE320\", \"RunTime\": \"2022-03-30 16:37:01\", \"ExpireTime\": \"2025-03-30 16:37:01\", \"CpuAvailable\": 24, \"CpuTotal\": 24, \"MemAvailable\": 96, \"MemTotal\": 96 } ]",
|
1764
1768
|
"member": "HostInfo",
|
1765
1769
|
"name": "HostInfoSet",
|
1766
1770
|
"output_required": true,
|
@@ -1770,7 +1774,7 @@
|
|
1770
1774
|
{
|
1771
1775
|
"disabled": false,
|
1772
1776
|
"document": "宿主机总数",
|
1773
|
-
"example": "
|
1777
|
+
"example": "2",
|
1774
1778
|
"member": "uint64",
|
1775
1779
|
"name": "TotalCount",
|
1776
1780
|
"output_required": true,
|
@@ -1792,7 +1796,7 @@
|
|
1792
1796
|
{
|
1793
1797
|
"disabled": false,
|
1794
1798
|
"document": "查询的专用集群id",
|
1795
|
-
"example": "
|
1799
|
+
"example": "cluster-gbo27yc4",
|
1796
1800
|
"member": "string",
|
1797
1801
|
"name": "DedicatedClusterId",
|
1798
1802
|
"required": true,
|
@@ -1807,9 +1811,10 @@
|
|
1807
1811
|
{
|
1808
1812
|
"disabled": false,
|
1809
1813
|
"document": "支持的实例规格列表",
|
1810
|
-
"example": "
|
1814
|
+
"example": "[{ \t\t\t\"Zone\": \"ap-guangzhou-2\", \t\t\t\"InstanceType\": \"S1.SMALL1\", \t\t\t\"NetworkCard\": 0, \t\t\t\"Cpu\": 1, \t\t\t\"Memory\": 1, \t\t\t\"InstanceFamily\": \"S1\", \t\t\t\"TypeName\": \"Standard S1\", \t\t\t\"StorageBlockAmount\": 0, \t\t\t\"InstanceBandwidth\": 0, \t\t\t\"InstancePps\": 0, \t\t\t\"CpuType\": \"intel\", \t\t\t\"Gpu\": 0, \t\t\t\"Fpga\": 0, \t\t\t\"Remark\": \"备注\", \t\t\t\"Status\": \"SOLD_OUT\", \"InstanceQuota\": 0 \t\t}]",
|
1811
1815
|
"member": "DedicatedClusterInstanceType",
|
1812
1816
|
"name": "DedicatedClusterInstanceTypeSet",
|
1817
|
+
"output_required": true,
|
1813
1818
|
"type": "list",
|
1814
1819
|
"value_allowed_null": false
|
1815
1820
|
},
|
@@ -1882,7 +1887,7 @@
|
|
1882
1887
|
{
|
1883
1888
|
"disabled": false,
|
1884
1889
|
"document": "订单类型列表",
|
1885
|
-
"example": "
|
1890
|
+
"example": "[\"PUSH\"]",
|
1886
1891
|
"member": "string",
|
1887
1892
|
"name": "OrderTypes",
|
1888
1893
|
"required": false,
|
@@ -1897,7 +1902,7 @@
|
|
1897
1902
|
{
|
1898
1903
|
"disabled": false,
|
1899
1904
|
"document": "专用集群订单列表",
|
1900
|
-
"example": "
|
1905
|
+
"example": "[ { \"Action\": \"CREATE\", \"CheckExpectTime\": \"0000-00-00 00:00:00\", \"CheckFinishTime\": \"0000-00-00 00:00:00\", \"CheckStatus\": \"DELIVERING\", \"Cpu\": 0, \"CreateTime\": \"2024-10-30T09:14:13Z\", \"DedicatedClusterId\": \"cluster-262n63e8\", \"DedicatedClusterOrderId\": \"ord-rd0ty398\", \"DedicatedClusterOrderItems\": [ { \"ComputeFormat\": \"1 SA5t.60XLARGE1076\", \"Count\": 1, \"CreateTime\": \"2024-10-30 17:14:13\", \"DedicatedClusterTypeId\": \"dctype-00100001\", \"Description\": \"基础底座\", \"Name\": \"基础底座\", \"PowerDraw\": 0, \"SubOrderId\": \"sord-e3t9jkm2\", \"SubOrderPayStatus\": 0, \"SubOrderStatus\": \"PENDING\", \"SupportedInstanceFamily\": [], \"SupportedStorageType\": [], \"SupportedUplinkSpeed\": [ 10, 25, 40, 100 ], \"TotalCpu\": 0, \"TotalGpu\": 0, \"TotalMem\": 0, \"TypeFamily\": \"CUSTOM\", \"TypeName\": \"BASE_EQUIPMENT.BASE_FOUNDATION\", \"Weight\": 0 } ], \"DedicatedClusterTypeId\": \"None\", \"DeliverExpectTime\": \"0000-00-00 00:00:00\", \"DeliverFinishTime\": \"0000-00-00 00:00:00\", \"Gpu\": 0, \"Mem\": 0, \"OrderPayPlan\": null, \"OrderSLA\": null, \"OrderStatus\": \"PENDING\", \"OrderType\": \"PUSH\", \"PayStatus\": 0, \"PayType\": \"ONEOFF\", \"PowerDraw\": 0, \"SupportedInstanceFamily\": [ \"None\" ], \"SupportedStorageType\": [ \"None\" ], \"SupportedUplinkSpeed\": [ -1 ], \"TimeSpan\": 3, \"TimeUnit\": \"YEAR\", \"Weight\": 0 } ]",
|
1901
1906
|
"member": "DedicatedClusterOrder",
|
1902
1907
|
"name": "DedicatedClusterOrderSet",
|
1903
1908
|
"output_required": true,
|
@@ -1974,7 +1979,7 @@
|
|
1974
1979
|
{
|
1975
1980
|
"disabled": false,
|
1976
1981
|
"document": "vpn网关监控数据\n注意:此字段可能返回 null,表示取不到有效值。",
|
1977
|
-
"example": "无",
|
1982
|
+
"example": "{ \"InBandwidth\": { \"Timestamps\": [ 1730620800, 1730624400, 1730628000, 1730631600, 1730635200, 1730638800, 1730642400, 1730646000, 1730649600, 1730653200, 1730656800, 1730660400, 1730664000, 1730667600, 1730671200, 1730674800, 1730678400, 1730682000, 1730685600, 1730689200, 1730692800, 1730696400, 1730700000, 1730703600, 1730707200, 1730710800, 1730714400, 1730718000, 1730721600, 1730725200, 1730728800, 1730732400, 1730736000, 1730739600, 1730743200, 1730746800, 1730750400, 1730754000, 1730757600, 1730761200, 1730764800, 1730768400, 1730772000, 1730775600, 1730779200, 1730782800, 1730786400, 1730790000, 1730793600, 1730797200, 1730800800, 1730804400, 1730808000, 1730811600, 1730815200, 1730818800, 1730822400, 1730826000, 1730829600, 1730833200, 1730836800, 1730840400, 1730844000, 1730847600, 1730851200, 1730854800, 1730858400, 1730862000, 1730865600, 1730869200, 1730872800, 1730876400, 1730880000, 1730883600, 1730887200, 1730890800, 1730894400, 1730898000, 1730901600, 1730905200, 1730908800, 1730912400, 1730916000, 1730919600, 1730923200, 1730926800, 1730930400, 1730934000, 1730937600, 1730941200, 1730944800, 1730948400, 1730952000, 1730955600, 1730959200, 1730962800, 1730966400, 1730970000, 1730973600, 1730977200, 1730980800, 1730984400, 1730988000, 1730991600, 1730995200, 1730998800, 1731002400, 1731006000, 1731009600, 1731013200, 1731016800, 1731020400, 1731024000, 1731027600, 1731031200, 1731034800, 1731038400, 1731042000, 1731045600, 1731049200, 1731052800, 1731056400, 1731060000, 1731063600, 1731067200, 1731070800, 1731074400, 1731078000, 1731081600, 1731085200, 1731088800, 1731092400, 1731096000, 1731099600, 1731103200, 1731106800, 1731110400, 1731114000, 1731117600, 1731121200, 1731124800, 1731128400, 1731132000, 1731135600, 1731139200, 1731142800, 1731146400, 1731150000, 1731153600, 1731157200, 1731160800, 1731164400, 1731168000, 1731171600, 1731175200, 1731178800, 1731182400, 1731186000, 1731189600, 1731193200, 1731196800, 1731200400, 1731204000, 1731207600, 1731211200, 1731214800, 1731218400, 1731222000, 1731225600 ], \"Values\": [ 57513800, 68094611.2, 79186521.6, 60534504, 78897427.2, 63237265.6, 79178713.6, 60393168, 81129268, 51220798.4, 81060523.2, 52434900.8, 78564217.6, 59975670.4, 81873972.8, 80544771.2, 81795468.8, 65186712, 80439569.6, 70954862.4, 79333094.4, 77677355.2, 91380812.8, 56897305.6, 79889120, 49745224, 59596936, 64410828, 309474268.8, 63769486.4, 82992758.4, 65433073.6, 58786961.6, 82539596.8, 64908304, 80435241.6, 70007491.2, 57498075.2, 58827907.2, 66269364.8, 67107579.2, 80139716.8, 66853212.8, 82855864, 65938686.4, 57210636, 78715593.6, 95870603.2, 53011934.4, 81546336, 81019800, 80505835.2, 60604449.6, 81215440, 78220001.6, 82425334.4, 56864844.8, 81018763.2, 81355521.6, 56918340.8, 78134118.4, 79408327.2, 81605227.2, 53292964.8, 79475179.2, 55133446.4, 52500392, 147282484.8, 77581524.8, 52168883.2, 79898684.8, 79855960, 81320417.6, 54317814.4, 80578881.6, 80061288, 82889003.2, 78551977.6, 78345451.2, 78937691.2, 85937094.4, 56158705.6, 77940177.6, 77725707.2, 59669937.6, 58775310.4, 78025105.6, 61351566.4, 56525313.6, 79121019.2, 92959604.8, 59355982.4, 94920427.2, 77243414.4, 94681272, 81153572, 62910486.4, 82772734.4, 65417800, 82540843.2, 64158774.4, 65148057.6, 80479744, 82003993.6, 78950216, 80165797.6, 80415985.6, 74961745.6, 78699220.8, 69556329.6, 68660648, 78437993.6, 70334991.2, 78815097.6, 95033219.2, 89046334.4, 80321555.2, 79508270.4, 79257760, 80480252.8, 87541744, 78998846.4, 78616494.4, 76649696.8, 82663540.8, 74417185.6, 83371833.6, 75758566.4, 81349233.6, 97204876.8, 83409332.8, 63912732.8, 69716824, 62615419.2, 84209148.8, 73905688, 77948118.4, 68794940.8, 79513627.2, 79306006.4, 76419441.6, 64419851.2, 79324332.8, 62255126.4, 59583392, 58508554.4, 56799534.4, 82361259.2, 77848576, 77652697.6, 79184798.4, 76229579.2, 81378388.8, 79585252.8, 80168929.6, 82020480, 67726940.8, 64205820.8, 80931279.2, 72156193.6, 83008113.6, 82825956.8, 74081539.2, 73529696, 86476326.4, 96271894.4, 80897329.6, 76712478.4, 0 ] }, \"OutBandwidth\": { \"Timestamps\": [ 1730620800, 1730624400, 1730628000, 1730631600, 1730635200, 1730638800, 1730642400, 1730646000, 1730649600, 1730653200, 1730656800, 1730660400, 1730664000, 1730667600, 1730671200, 1730674800, 1730678400, 1730682000, 1730685600, 1730689200, 1730692800, 1730696400, 1730700000, 1730703600, 1730707200, 1730710800, 1730714400, 1730718000, 1730721600, 1730725200, 1730728800, 1730732400, 1730736000, 1730739600, 1730743200, 1730746800, 1730750400, 1730754000, 1730757600, 1730761200, 1730764800, 1730768400, 1730772000, 1730775600, 1730779200, 1730782800, 1730786400, 1730790000, 1730793600, 1730797200, 1730800800, 1730804400, 1730808000, 1730811600, 1730815200, 1730818800, 1730822400, 1730826000, 1730829600, 1730833200, 1730836800, 1730840400, 1730844000, 1730847600, 1730851200, 1730854800, 1730858400, 1730862000, 1730865600, 1730869200, 1730872800, 1730876400, 1730880000, 1730883600, 1730887200, 1730890800, 1730894400, 1730898000, 1730901600, 1730905200, 1730908800, 1730912400, 1730916000, 1730919600, 1730923200, 1730926800, 1730930400, 1730934000, 1730937600, 1730941200, 1730944800, 1730948400, 1730952000, 1730955600, 1730959200, 1730962800, 1730966400, 1730970000, 1730973600, 1730977200, 1730980800, 1730984400, 1730988000, 1730991600, 1730995200, 1730998800, 1731002400, 1731006000, 1731009600, 1731013200, 1731016800, 1731020400, 1731024000, 1731027600, 1731031200, 1731034800, 1731038400, 1731042000, 1731045600, 1731049200, 1731052800, 1731056400, 1731060000, 1731063600, 1731067200, 1731070800, 1731074400, 1731078000, 1731081600, 1731085200, 1731088800, 1731092400, 1731096000, 1731099600, 1731103200, 1731106800, 1731110400, 1731114000, 1731117600, 1731121200, 1731124800, 1731128400, 1731132000, 1731135600, 1731139200, 1731142800, 1731146400, 1731150000, 1731153600, 1731157200, 1731160800, 1731164400, 1731168000, 1731171600, 1731175200, 1731178800, 1731182400, 1731186000, 1731189600, 1731193200, 1731196800, 1731200400, 1731204000, 1731207600, 1731211200, 1731214800, 1731218400, 1731222000, 1731225600 ], \"Values\": [ 36999115.2, 22211576, 26118236, 24996732.8, 26356196, 21585738.4, 23174764.8, 26288543.2, 26900160.8, 99745402.4, 35897952, 23224077.6, 31193186.4, 26717264, 29806122.4, 27018134.4, 24869877.6, 21821033.6, 97160590.4, 1029837471.2, 826950242.4, 27306068, 783213719.2, 735737281.6, 39429408, 367326570.4, 828035058.4, 21186025.6, 108722878.4, 273322955.2, 40808271.2, 100828276.8, 35679386.4, 25438852, 35213413.6, 25728751.2, 40379624, 31101035.2, 28520564.8, 21724843.2, 25904977.6, 25237004, 291225818.4, 231092901.6, 31492640, 287575102.4, 319184240.8, 961222693.6, 110587819.2, 24934650.4, 45784839.2, 232243744.8, 23227712, 290225629.6, 21282664, 30819294.4, 31482244, 24500372.8, 32165135.2, 32049396.8, 37681712, 30539736, 27284070.4, 27414778.4, 30744979.2, 27339835.2, 45225961.6, 37585009.6, 41766510.4, 26610352.8, 27001920.8, 304289661.6, 293225852.8, 332127696.8, 284271099.2, 339752028, 294501792, 293052457.6, 873748238.4, 294181468.8, 305642092.8, 300915957.6, 301319784.8, 292014061.6, 296302379.2, 297040997.6, 296378999.2, 319333328, 303434059.2, 297750983.2, 291683778.4, 315162956, 416917124.8, 309748029.6, 738242148, 700079303.2, 695702679.2, 699579744.8, 473733113.6, 828144643.2, 518231894.4, 301627165.6, 309032832, 313636580.8, 281889774.4, 281066460.8, 283792223.2, 306457615.2, 303149468, 289305379.2, 294973648, 291938220.8, 305713736, 458142682.4, 839144659.2, 813517673.6, 344749780, 292966759.2, 288344075.2, 295100691.2, 857292094.4, 313324036, 287645835.2, 301090163.2, 288435984, 293894850.4, 301641326.4, 295098173.6, 291204644, 320189738.4, 299422432, 275096212.8, 30181125.6, 26611652, 24890440.8, 21409076, 23864282.4, 26384297.6, 21293265.6, 26109288, 46862366.4, 21076459.2, 25791008, 288045636.8, 296784739.2, 303341800, 297660486.4, 289597639.2, 290814651.2, 296367544.8, 298151473.6, 304698419.2, 307828205.6, 289707242.4, 297436875.2, 294823195.2, 305869428.8, 285937694.4, 301310613.6, 294514848.8, 291559908.8, 301528724.8, 296791919.2, 299264318.4, 299598874.4, 301682541.6, 289346253.6, 304087192.8, 0 ] } }",
|
1978
1983
|
"member": "VpngwBandwidthData",
|
1979
1984
|
"name": "VpngwBandwidthData",
|
1980
1985
|
"output_required": true,
|
@@ -1984,7 +1989,7 @@
|
|
1984
1989
|
{
|
1985
1990
|
"disabled": false,
|
1986
1991
|
"document": "本地网关信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
1987
|
-
"example": "
|
1992
|
+
"example": "{ \"BGPRoute\": \"10.0.0.0/24\", \"LocalIp\": \"10.0.0.0\", \"Protocol\": \"BGP\", \"VpcId\": \"vpc-0eyxjlsz\" }",
|
1988
1993
|
"member": "LocalNetInfo",
|
1989
1994
|
"name": "LocalNetInfo",
|
1990
1995
|
"output_required": true,
|
@@ -1994,7 +1999,7 @@
|
|
1994
1999
|
{
|
1995
2000
|
"disabled": false,
|
1996
2001
|
"document": "vpn网关通道监控数据\n注意:此字段可能返回 null,表示取不到有效值。",
|
1997
|
-
"example": "无",
|
2002
|
+
"example": "[ { \"InBandwidth\": { \"Timestamps\": [ 1730620800, 1730624400, 1730628000, 1730631600, 1730635200, 1730638800, 1730642400, 1730646000, 1730649600, 1730653200, 1730656800, 1730660400, 1730664000, 1730667600, 1730671200, 1730674800, 1730678400, 1730682000, 1730685600, 1730689200, 1730692800, 1730696400, 1730700000, 1730703600, 1730707200, 1730710800, 1730714400, 1730718000, 1730721600, 1730725200, 1730728800, 1730732400, 1730736000, 1730739600, 1730743200, 1730746800, 1730750400, 1730754000, 1730757600, 1730761200, 1730764800, 1730768400, 1730772000, 1730775600, 1730779200, 1730782800, 1730786400, 1730790000, 1730793600, 1730797200, 1730800800, 1730804400, 1730808000, 1730811600, 1730815200, 1730818800, 1730822400, 1730826000, 1730829600, 1730833200, 1730836800, 1730840400, 1730844000, 1730847600, 1730851200, 1730854800, 1730858400, 1730862000, 1730865600, 1730869200, 1730872800, 1730876400, 1730880000, 1730883600, 1730887200, 1730890800, 1730894400, 1730898000, 1730901600, 1730905200, 1730908800, 1730912400, 1730916000, 1730919600, 1730923200, 1730926800, 1730930400, 1730934000, 1730937600, 1730941200, 1730944800, 1730948400, 1730952000, 1730955600, 1730959200, 1730962800, 1730966400, 1730970000, 1730973600, 1730977200, 1730980800, 1730984400, 1730988000, 1730991600, 1730995200, 1730998800, 1731002400, 1731006000, 1731009600, 1731013200, 1731016800, 1731020400, 1731024000, 1731027600, 1731031200, 1731034800, 1731038400, 1731042000, 1731045600, 1731049200, 1731052800, 1731056400, 1731060000, 1731063600, 1731067200, 1731070800, 1731074400, 1731078000, 1731081600, 1731085200, 1731088800, 1731092400, 1731096000, 1731099600, 1731103200, 1731106800, 1731110400, 1731114000, 1731117600, 1731121200, 1731124800, 1731128400, 1731132000, 1731135600, 1731139200, 1731142800, 1731146400, 1731150000, 1731153600, 1731157200, 1731160800, 1731164400, 1731168000, 1731171600, 1731175200, 1731178800, 1731182400, 1731186000, 1731189600, 1731193200, 1731196800, 1731200400, 1731204000, 1731207600, 1731211200, 1731214800, 1731218400, 1731222000, 1731225600 ], \"Values\": [ 3, 3, 3, 3, 3, 2, 3, 2, 3, 3, 3, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 2, 2, 2, 2, 3, 3, 3, 2, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 2, 3, 3, 2, 2, 2, 3, 2, 2, 2, 2, 3, 2, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 2, 3, 2, 2, 2, 2, 3, 2, 2, 2, 3, 2, 0 ] }, \"OutBandwidth\": { \"Timestamps\": [ 1730620800, 1730624400, 1730628000, 1730631600, 1730635200, 1730638800, 1730642400, 1730646000, 1730649600, 1730653200, 1730656800, 1730660400, 1730664000, 1730667600, 1730671200, 1730674800, 1730678400, 1730682000, 1730685600, 1730689200, 1730692800, 1730696400, 1730700000, 1730703600, 1730707200, 1730710800, 1730714400, 1730718000, 1730721600, 1730725200, 1730728800, 1730732400, 1730736000, 1730739600, 1730743200, 1730746800, 1730750400, 1730754000, 1730757600, 1730761200, 1730764800, 1730768400, 1730772000, 1730775600, 1730779200, 1730782800, 1730786400, 1730790000, 1730793600, 1730797200, 1730800800, 1730804400, 1730808000, 1730811600, 1730815200, 1730818800, 1730822400, 1730826000, 1730829600, 1730833200, 1730836800, 1730840400, 1730844000, 1730847600, 1730851200, 1730854800, 1730858400, 1730862000, 1730865600, 1730869200, 1730872800, 1730876400, 1730880000, 1730883600, 1730887200, 1730890800, 1730894400, 1730898000, 1730901600, 1730905200, 1730908800, 1730912400, 1730916000, 1730919600, 1730923200, 1730926800, 1730930400, 1730934000, 1730937600, 1730941200, 1730944800, 1730948400, 1730952000, 1730955600, 1730959200, 1730962800, 1730966400, 1730970000, 1730973600, 1730977200, 1730980800, 1730984400, 1730988000, 1730991600, 1730995200, 1730998800, 1731002400, 1731006000, 1731009600, 1731013200, 1731016800, 1731020400, 1731024000, 1731027600, 1731031200, 1731034800, 1731038400, 1731042000, 1731045600, 1731049200, 1731052800, 1731056400, 1731060000, 1731063600, 1731067200, 1731070800, 1731074400, 1731078000, 1731081600, 1731085200, 1731088800, 1731092400, 1731096000, 1731099600, 1731103200, 1731106800, 1731110400, 1731114000, 1731117600, 1731121200, 1731124800, 1731128400, 1731132000, 1731135600, 1731139200, 1731142800, 1731146400, 1731150000, 1731153600, 1731157200, 1731160800, 1731164400, 1731168000, 1731171600, 1731175200, 1731178800, 1731182400, 1731186000, 1731189600, 1731193200, 1731196800, 1731200400, 1731204000, 1731207600, 1731211200, 1731214800, 1731218400, 1731222000, 1731225600 ], \"Values\": [ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0 ] } }, { \"InBandwidth\": { \"Timestamps\": [ 1730620800, 1730624400, 1730628000, 1730631600, 1730635200, 1730638800, 1730642400, 1730646000, 1730649600, 1730653200, 1730656800, 1730660400, 1730664000, 1730667600, 1730671200, 1730674800, 1730678400, 1730682000, 1730685600, 1730689200, 1730692800, 1730696400, 1730700000, 1730703600, 1730707200, 1730710800, 1730714400, 1730718000, 1730721600, 1730725200, 1730728800, 1730732400, 1730736000, 1730739600, 1730743200, 1730746800, 1730750400, 1730754000, 1730757600, 1730761200, 1730764800, 1730768400, 1730772000, 1730775600, 1730779200, 1730782800, 1730786400, 1730790000, 1730793600, 1730797200, 1730800800, 1730804400, 1730808000, 1730811600, 1730815200, 1730818800, 1730822400, 1730826000, 1730829600, 1730833200, 1730836800, 1730840400, 1730844000, 1730847600, 1730851200, 1730854800, 1730858400, 1730862000, 1730865600, 1730869200, 1730872800, 1730876400, 1730880000, 1730883600, 1730887200, 1730890800, 1730894400, 1730898000, 1730901600, 1730905200, 1730908800, 1730912400, 1730916000, 1730919600, 1730923200, 1730926800, 1730930400, 1730934000, 1730937600, 1730941200, 1730944800, 1730948400, 1730952000, 1730955600, 1730959200, 1730962800, 1730966400, 1730970000, 1730973600, 1730977200, 1730980800, 1730984400, 1730988000, 1730991600, 1730995200, 1730998800, 1731002400, 1731006000, 1731009600, 1731013200, 1731016800, 1731020400, 1731024000, 1731027600, 1731031200, 1731034800, 1731038400, 1731042000, 1731045600, 1731049200, 1731052800, 1731056400, 1731060000, 1731063600, 1731067200, 1731070800, 1731074400, 1731078000, 1731081600, 1731085200, 1731088800, 1731092400, 1731096000, 1731099600, 1731103200, 1731106800, 1731110400, 1731114000, 1731117600, 1731121200, 1731124800, 1731128400, 1731132000, 1731135600, 1731139200, 1731142800, 1731146400, 1731150000, 1731153600, 1731157200, 1731160800, 1731164400, 1731168000, 1731171600, 1731175200, 1731178800, 1731182400, 1731186000, 1731189600, 1731193200, 1731196800, 1731200400, 1731204000, 1731207600, 1731211200, 1731214800, 1731218400, 1731222000, 1731225600 ], \"Values\": [ 27902, 27212, 34068, 35574, 34763, 35373, 29562, 35340, 35225, 34355, 35791, 35595, 34760, 34317, 35281, 34520, 35289, 34290, 34390, 38823, 35067, 35140, 42503, 36539, 34158, 34456, 39232, 35156, 249015, 38536, 35572, 31001, 35056, 35384, 35803, 35833, 35740, 34728, 36121, 34128, 34936, 35885, 35299, 34788, 34992, 35018, 29729, 53373, 32819, 35469, 27599, 35763, 35607, 34508, 34389, 35306, 34701, 35156, 34824, 34725, 26990, 34928, 34544, 34794, 33903, 34865, 35257, 127611, 32624, 34674, 27960, 34319, 35358, 34461, 36056, 34992, 35969, 34758, 34210, 36837, 35938, 33063, 33124, 34617, 34936, 38358, 35416, 35152, 33708, 33658, 35879, 33824, 36567, 43210, 43636, 46429, 35114, 35928, 39920, 34467, 34886, 34723, 39131, 31112, 34796, 37624, 33059, 39443, 37853, 33829, 34404, 36205, 33834, 36399, 41434, 39064, 38236, 33369, 34415, 34783, 40968, 34573, 36284, 33947, 34553, 35586, 34397, 34849, 33322, 37771, 36288, 35050, 29110, 35064, 36701, 34830, 28867, 34549, 34136, 35893, 36196, 34852, 34716, 34749, 34806, 34987, 35181, 35592, 35498, 34400, 34141, 38190, 37542, 34853, 40032, 38876, 41314, 36059, 35347, 25510, 34786, 38482, 34550, 35296, 37584, 38982, 35284, 34912, 0 ] }, \"OutBandwidth\": { \"Timestamps\": [ 1730620800, 1730624400, 1730628000, 1730631600, 1730635200, 1730638800, 1730642400, 1730646000, 1730649600, 1730653200, 1730656800, 1730660400, 1730664000, 1730667600, 1730671200, 1730674800, 1730678400, 1730682000, 1730685600, 1730689200, 1730692800, 1730696400, 1730700000, 1730703600, 1730707200, 1730710800, 1730714400, 1730718000, 1730721600, 1730725200, 1730728800, 1730732400, 1730736000, 1730739600, 1730743200, 1730746800, 1730750400, 1730754000, 1730757600, 1730761200, 1730764800, 1730768400, 1730772000, 1730775600, 1730779200, 1730782800, 1730786400, 1730790000, 1730793600, 1730797200, 1730800800, 1730804400, 1730808000, 1730811600, 1730815200, 1730818800, 1730822400, 1730826000, 1730829600, 1730833200, 1730836800, 1730840400, 1730844000, 1730847600, 1730851200, 1730854800, 1730858400, 1730862000, 1730865600, 1730869200, 1730872800, 1730876400, 1730880000, 1730883600, 1730887200, 1730890800, 1730894400, 1730898000, 1730901600, 1730905200, 1730908800, 1730912400, 1730916000, 1730919600, 1730923200, 1730926800, 1730930400, 1730934000, 1730937600, 1730941200, 1730944800, 1730948400, 1730952000, 1730955600, 1730959200, 1730962800, 1730966400, 1730970000, 1730973600, 1730977200, 1730980800, 1730984400, 1730988000, 1730991600, 1730995200, 1730998800, 1731002400, 1731006000, 1731009600, 1731013200, 1731016800, 1731020400, 1731024000, 1731027600, 1731031200, 1731034800, 1731038400, 1731042000, 1731045600, 1731049200, 1731052800, 1731056400, 1731060000, 1731063600, 1731067200, 1731070800, 1731074400, 1731078000, 1731081600, 1731085200, 1731088800, 1731092400, 1731096000, 1731099600, 1731103200, 1731106800, 1731110400, 1731114000, 1731117600, 1731121200, 1731124800, 1731128400, 1731132000, 1731135600, 1731139200, 1731142800, 1731146400, 1731150000, 1731153600, 1731157200, 1731160800, 1731164400, 1731168000, 1731171600, 1731175200, 1731178800, 1731182400, 1731186000, 1731189600, 1731193200, 1731196800, 1731200400, 1731204000, 1731207600, 1731211200, 1731214800, 1731218400, 1731222000, 1731225600 ], \"Values\": [ 14743, 13036, 13841, 11986, 14205, 12232, 14241, 11255, 32616, 32911, 14676, 11300, 13258, 14360, 10414, 11934, 12258, 11524, 46844, 618757, 441117, 14550, 621280, 587274, 16082, 285697, 566534, 35427, 17471, 249220, 16333, 43087, 16624, 12179, 21936, 13806, 18801, 13401, 12249, 10875, 11303, 11201, 263156, 73029, 18724, 264555, 449618, 686591, 47155, 15872, 11577, 176658, 13757, 266241, 12524, 12406, 12678, 13477, 15617, 19549, 15652, 16489, 16828, 12518, 12430, 13571, 27827, 14885, 14349, 13194, 11612, 264983, 260379, 286792, 260640, 259787, 263219, 261059, 437908, 271498, 264451, 257998, 259888, 260100, 266845, 262762, 263858, 263620, 262946, 260613, 263291, 280029, 301617, 276933, 360990, 392133, 389615, 349783, 398237, 506978, 409018, 262950, 269338, 258466, 265593, 260187, 262383, 262769, 266388, 266964, 268590, 265538, 264164, 317219, 496280, 604524, 261015, 258793, 263620, 272089, 629272, 289891, 261537, 259547, 262861, 266082, 263891, 263102, 261475, 263224, 261281, 16596, 17447, 13329, 12544, 11800, 11304, 12536, 10488, 12197, 17483, 11364, 11322, 257165, 260621, 260356, 260428, 260607, 260234, 262239, 260919, 259631, 258579, 259974, 260478, 268614, 263499, 260490, 261597, 260948, 261713, 262219, 261705, 254206, 260921, 266181, 262548, 262275, 0 ] } } ]",
|
1998
2003
|
"member": "VpngwBandwidthData",
|
1999
2004
|
"name": "VpnConnectionBandwidthData",
|
2000
2005
|
"output_required": true,
|
@@ -2003,33 +2008,33 @@
|
|
2003
2008
|
},
|
2004
2009
|
{
|
2005
2010
|
"disabled": false,
|
2006
|
-
"document": "
|
2007
|
-
"example": "
|
2011
|
+
"document": "宿主机资源概览信息",
|
2012
|
+
"example": "[ { \"CpuAvailable\": 646, \"CpuTotal\": 1008, \"HostTypeFamily\": \"标准型S5\", \"MemAvailable\": 54, \"MemTotal\": 960 }, { \"CpuAvailable\": 0, \"CpuTotal\": 384, \"HostTypeFamily\": \"大数据型BMDK1\", \"MemAvailable\": 0, \"MemTotal\": 1536 }, { \"CpuAvailable\": 144, \"CpuTotal\": 240, \"HostTypeFamily\": \"标准型SK1\", \"MemAvailable\": 672, \"MemTotal\": 864 }, { \"CpuAvailable\": 208, \"CpuTotal\": 540, \"HostTypeFamily\": \"标准型SA2\", \"MemAvailable\": 76, \"MemTotal\": 896 }, { \"CpuAvailable\": 220, \"CpuTotal\": 464, \"HostTypeFamily\": \"标准型SH2\", \"MemAvailable\": 190, \"MemTotal\": 884 }, { \"CpuAvailable\": 102, \"CpuTotal\": 512, \"HostTypeFamily\": \"标准型S6\", \"MemAvailable\": 868, \"MemTotal\": 1880 } ]",
|
2008
2013
|
"member": "HostDetailInfo",
|
2009
2014
|
"name": "HostDetailInfo",
|
2010
2015
|
"output_required": false,
|
2011
2016
|
"type": "list",
|
2012
|
-
"value_allowed_null":
|
2017
|
+
"value_allowed_null": false
|
2013
2018
|
},
|
2014
2019
|
{
|
2015
2020
|
"disabled": false,
|
2016
|
-
"document": "
|
2021
|
+
"document": "热备宿主机数量",
|
2017
2022
|
"example": "1",
|
2018
2023
|
"member": "uint64",
|
2019
2024
|
"name": "HostStandbyCount",
|
2020
2025
|
"output_required": false,
|
2021
2026
|
"type": "int",
|
2022
|
-
"value_allowed_null":
|
2027
|
+
"value_allowed_null": false
|
2023
2028
|
},
|
2024
2029
|
{
|
2025
2030
|
"disabled": false,
|
2026
|
-
"document": "
|
2031
|
+
"document": "普通宿主机数量",
|
2027
2032
|
"example": "1",
|
2028
2033
|
"member": "uint64",
|
2029
2034
|
"name": "HostNormalCount",
|
2030
2035
|
"output_required": false,
|
2031
2036
|
"type": "int",
|
2032
|
-
"value_allowed_null":
|
2037
|
+
"value_allowed_null": false
|
2033
2038
|
},
|
2034
2039
|
{
|
2035
2040
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
@@ -2046,7 +2051,7 @@
|
|
2046
2051
|
{
|
2047
2052
|
"disabled": false,
|
2048
2053
|
"document": "模糊匹配专用集群配置名称",
|
2049
|
-
"example": "
|
2054
|
+
"example": "my-type",
|
2050
2055
|
"member": "string",
|
2051
2056
|
"name": "Name",
|
2052
2057
|
"required": false,
|
@@ -2097,9 +2102,10 @@
|
|
2097
2102
|
{
|
2098
2103
|
"disabled": false,
|
2099
2104
|
"document": "专用集群配置列表",
|
2100
|
-
"example": "
|
2105
|
+
"example": "[{ \t\t\t\"DedicatedClusterTypeId\": \"dctype-lkm17jbu\", \t\t\t\"Description\": \"first type\", \t\t\t\"Name\": \"yuan dedicated\", \t\t\t\"CreateTime\": \"2020-12-16T06:21:41Z\", \t\t\t\"SupportedStorageType\": [], \t\t\t\"SupportedUplinkGiB\": [40, 100], \t\t\t\"SupportedInstanceFamily\": [\"S5\"], \t\t\t\"Weight\": 3000, \t\t\t\"PowerDrawKva\": \"2000.800000\", \"ComputeFormatDesc\": \"M5.21XLARGE700 4、S5.21XLARGE320 2\" \t\t}, { \t\t\t\"DedicatedClusterTypeId\": \"dctype-1yo16f1a\", \t\t\t\"Description\": \"seco type\", \t\t\t\"Name\": \"abc dedicated\", \t\t\t\"CreateTime\": \"2020-12-16T06:33:49Z\", \t\t\t\"SupportedStorageType\": [], \t\t\t\"SupportedUplinkGiB\": [13, 100], \t\t\t\"SupportedInstanceFamily\": [\"S1\", \"S5\"], \t\t\t\"Weight\": 3273, \t\t\t\"PowerDrawKva\": \"4156.700000\", \"ComputeFormatDesc\": \"M5.21XLARGE700 4、S5.21XLARGE320 2\" \t\t}, { \t\t\t\"DedicatedClusterTypeId\": \"dctype-b38d7sl6\", \t\t\t\"Description\": \"heynew\", \t\t\t\"Name\": \"type und\", \t\t\t\"CreateTime\": \"2020-12-16T06:33:49Z\", \t\t\t\"SupportedStorageType\": [], \t\t\t\"SupportedUplinkGiB\": [10, 40], \t\t\t\"SupportedInstanceFamily\": [\"S3\"], \t\t\t\"Weight\": 3724, \t\t\t\"PowerDrawKva\": \"3829.100000\", \"ComputeFormatDesc\": \"M5.21XLARGE700 4、S5.21XLARGE320 2\" \t\t}, { \t\t\t\"DedicatedClusterTypeId\": \"dctype-z387eu8j\", \t\t\t\"Description\": \"third one\", \t\t\t\"Name\": \"unknow\", \t\t\t\"CreateTime\": \"2020-12-16T06:33:49Z\", \t\t\t\"SupportedStorageType\": [], \t\t\t\"SupportedUplinkGiB\": [10, 40], \t\t\t\"SupportedInstanceFamily\": [], \t\t\t\"Weight\": 3724, \t\t\t\"PowerDrawKva\": \"3829.100000\", \"ComputeFormatDesc\": \"M5.21XLARGE700 4、S5.21XLARGE320 2\" \t\t}]",
|
2101
2106
|
"member": "DedicatedClusterType",
|
2102
2107
|
"name": "DedicatedClusterTypeSet",
|
2108
|
+
"output_required": true,
|
2103
2109
|
"type": "list",
|
2104
2110
|
"value_allowed_null": false
|
2105
2111
|
},
|
@@ -2109,6 +2115,7 @@
|
|
2109
2115
|
"example": "20",
|
2110
2116
|
"member": "int64",
|
2111
2117
|
"name": "TotalCount",
|
2118
|
+
"output_required": true,
|
2112
2119
|
"type": "int",
|
2113
2120
|
"value_allowed_null": false
|
2114
2121
|
},
|
@@ -2136,7 +2143,7 @@
|
|
2136
2143
|
{
|
2137
2144
|
"disabled": false,
|
2138
2145
|
"document": "按照可用区名称过滤",
|
2139
|
-
"example": "
|
2146
|
+
"example": "ap-guangzhou",
|
2140
2147
|
"member": "string",
|
2141
2148
|
"name": "Zones",
|
2142
2149
|
"required": false,
|
@@ -2145,7 +2152,7 @@
|
|
2145
2152
|
{
|
2146
2153
|
"disabled": false,
|
2147
2154
|
"document": "按照站点id过滤",
|
2148
|
-
"example": "
|
2155
|
+
"example": "site-378xs3g",
|
2149
2156
|
"member": "string",
|
2150
2157
|
"name": "SiteIds",
|
2151
2158
|
"required": false,
|
@@ -2154,7 +2161,7 @@
|
|
2154
2161
|
{
|
2155
2162
|
"disabled": false,
|
2156
2163
|
"document": "按照专用集群生命周期过滤",
|
2157
|
-
"example": "
|
2164
|
+
"example": "Pending",
|
2158
2165
|
"member": "string",
|
2159
2166
|
"name": "LifecycleStatuses",
|
2160
2167
|
"required": false,
|
@@ -2163,7 +2170,7 @@
|
|
2163
2170
|
{
|
2164
2171
|
"disabled": false,
|
2165
2172
|
"document": "模糊匹配专用集群名称",
|
2166
|
-
"example": "
|
2173
|
+
"example": "my-cluster",
|
2167
2174
|
"member": "string",
|
2168
2175
|
"name": "Name",
|
2169
2176
|
"required": false,
|
@@ -2196,18 +2203,20 @@
|
|
2196
2203
|
{
|
2197
2204
|
"disabled": false,
|
2198
2205
|
"document": "符合查询条件的专用集群列表",
|
2199
|
-
"example": "
|
2206
|
+
"example": "[{ \t\t\t\"DedicatedClusterId\": \"cluster-e88qh1ue\", \t\t\t\"Zone\": \"ap-guangzhou-2\", \t\t\t\"Description\": \"this is a description\", \t\t\t\"Name\": \"wechen-first-dc\", \t\t\t\"LifecycleStatus\": \"PENDING\", \t\t\t\"CreateTime\": \"2020-12-10T06:15:43Z\", \t\t\t\"SiteId\": \"site-38d9ck\" \t\t}]",
|
2200
2207
|
"member": "DedicatedCluster",
|
2201
2208
|
"name": "DedicatedClusterSet",
|
2209
|
+
"output_required": true,
|
2202
2210
|
"type": "list",
|
2203
2211
|
"value_allowed_null": false
|
2204
2212
|
},
|
2205
2213
|
{
|
2206
2214
|
"disabled": false,
|
2207
2215
|
"document": "符合条件的专用集群数量。",
|
2208
|
-
"example": "20
|
2216
|
+
"example": "20",
|
2209
2217
|
"member": "int64",
|
2210
2218
|
"name": "TotalCount",
|
2219
|
+
"output_required": true,
|
2211
2220
|
"type": "int",
|
2212
2221
|
"value_allowed_null": false
|
2213
2222
|
},
|
@@ -2226,7 +2235,7 @@
|
|
2226
2235
|
{
|
2227
2236
|
"disabled": false,
|
2228
2237
|
"document": "传入region列表",
|
2229
|
-
"example": "
|
2238
|
+
"example": "[4]",
|
2230
2239
|
"member": "int64",
|
2231
2240
|
"name": "Regions",
|
2232
2241
|
"required": false,
|
@@ -2241,10 +2250,10 @@
|
|
2241
2250
|
{
|
2242
2251
|
"disabled": false,
|
2243
2252
|
"document": "支持的可用区列表",
|
2244
|
-
"example": "
|
2253
|
+
"example": "[ { \"Zone\": \"ap-shanghai-1\", \"ZoneId\": 200001, \"ZoneName\": \"上海一区\", \"ZoneState\": \"AVAILABLE\" }, { \"Zone\": \"ap-shanghai-2\", \"ZoneId\": 200002, \"ZoneName\": \"上海二区\", \"ZoneState\": \"AVAILABLE\" }, { \"Zone\": \"ap-shanghai-3\", \"ZoneId\": 200003, \"ZoneName\": \"上海三区\", \"ZoneState\": \"AVAILABLE\" }, { \"Zone\": \"ap-shanghai-4\", \"ZoneId\": 200004, \"ZoneName\": \"上海四区\", \"ZoneState\": \"AVAILABLE\" }, { \"Zone\": \"ap-shanghai-5\", \"ZoneId\": 200005, \"ZoneName\": \"上海五区\", \"ZoneState\": \"AVAILABLE\" }, { \"Zone\": \"ap-shanghai-6\", \"ZoneId\": 200006, \"ZoneName\": \"上海六区\", \"ZoneState\": \"AVAILABLE\" }, { \"Zone\": \"ap-shanghai-7\", \"ZoneId\": 200007, \"ZoneName\": \"上海七区\", \"ZoneState\": \"AVAILABLE\" } ]",
|
2245
2254
|
"member": "RegionZoneInfo",
|
2246
2255
|
"name": "ZoneSet",
|
2247
|
-
"
|
2256
|
+
"output_required": true,
|
2248
2257
|
"type": "list",
|
2249
2258
|
"value_allowed_null": false
|
2250
2259
|
},
|
@@ -2290,7 +2299,7 @@
|
|
2290
2299
|
{
|
2291
2300
|
"disabled": false,
|
2292
2301
|
"document": "按照站定名称模糊匹配",
|
2293
|
-
"example": "
|
2302
|
+
"example": "my-site",
|
2294
2303
|
"member": "string",
|
2295
2304
|
"name": "Name",
|
2296
2305
|
"required": false,
|
@@ -2305,9 +2314,10 @@
|
|
2305
2314
|
{
|
2306
2315
|
"disabled": false,
|
2307
2316
|
"document": "站点详情",
|
2308
|
-
"example": "
|
2317
|
+
"example": "[{ \t\t\t\"SiteId\": \"site-98dj3kd\", \t\t\t\"Name\": \"sitename\", \t\t\t\"Description\": \"this is a description\", \t\t\t\"CreateTime\": \"2020-12-25T08:39:57Z\", \t\t\t\"FiberType\": \"MM\", \t\t\t\"UplinkSpeedGbps\": 0, \t\t\t\"UplinkCount\": 0, \t\t\t\"OpticalStandard\": \"MM\", \t\t\t\"RedundantNetworking\": false, \t\t\t\"PowerConnectors\": \"1000Base-SX\", \t\t\t\"PowerFeedDrop\": \"above\", \t\t\t\"PowerDrawKva\": 0.0, \t\t\t\"ConditionRequirement\": false, \t\t\t\"DimensionRequirement\": false, \t\t\t\"NeedHelp\": false, \t\t\t\"BreakerRequirement\": false, \t\t\t\"RedundantPower\": false, \t\t\t\"MaxWeight\": 0, \t\t\t\"AddressLine\": \"Nanshan Road\", \t\t\t\"OptionalAddressLine\": \"详细地址\", \t\t\t\"Country\": \"China\", \t\t\t\"Province\": \"guangdong\", \t\t\t\"City\": \"shenzhen\", \t\t\t\"PostalCode\": 518000 \t\t}]",
|
2309
2318
|
"member": "SiteDetail",
|
2310
2319
|
"name": "SiteDetailSet",
|
2320
|
+
"output_required": true,
|
2311
2321
|
"type": "list",
|
2312
2322
|
"value_allowed_null": false
|
2313
2323
|
},
|
@@ -2317,6 +2327,7 @@
|
|
2317
2327
|
"example": "20",
|
2318
2328
|
"member": "int64",
|
2319
2329
|
"name": "TotalCount",
|
2330
|
+
"output_required": true,
|
2320
2331
|
"type": "int",
|
2321
2332
|
"value_allowed_null": false
|
2322
2333
|
},
|
@@ -2344,7 +2355,7 @@
|
|
2344
2355
|
{
|
2345
2356
|
"disabled": false,
|
2346
2357
|
"document": "模糊匹配站点名称",
|
2347
|
-
"example": "
|
2358
|
+
"example": "first-site",
|
2348
2359
|
"member": "string",
|
2349
2360
|
"name": "Name",
|
2350
2361
|
"required": false,
|
@@ -2377,9 +2388,10 @@
|
|
2377
2388
|
{
|
2378
2389
|
"disabled": false,
|
2379
2390
|
"document": "符合查询条件的站点列表",
|
2380
|
-
"example": "
|
2391
|
+
"example": "[{ \t\t\t\"SiteId\": \"site-98dj3kd\", \t\t\t\"Name\": \"my-site\", \t\t\t\"Description\": \"my first site\", \t\t\t\"CreateTime\": \"2020-12-25T08:39:57Z\" \t\t}]",
|
2381
2392
|
"member": "Site",
|
2382
2393
|
"name": "SiteSet",
|
2394
|
+
"output_required": true,
|
2383
2395
|
"type": "list",
|
2384
2396
|
"value_allowed_null": false
|
2385
2397
|
},
|
@@ -2389,6 +2401,7 @@
|
|
2389
2401
|
"example": "20",
|
2390
2402
|
"member": "int64",
|
2391
2403
|
"name": "TotalCount",
|
2404
|
+
"output_required": true,
|
2392
2405
|
"type": "int",
|
2393
2406
|
"value_allowed_null": false
|
2394
2407
|
},
|
@@ -2406,23 +2419,23 @@
|
|
2406
2419
|
"members": [
|
2407
2420
|
{
|
2408
2421
|
"disabled": false,
|
2409
|
-
"document": "
|
2422
|
+
"document": "时间戳",
|
2410
2423
|
"example": "[0]",
|
2411
2424
|
"member": "float",
|
2412
2425
|
"name": "Timestamps",
|
2413
2426
|
"output_required": false,
|
2414
2427
|
"type": "list",
|
2415
|
-
"value_allowed_null":
|
2428
|
+
"value_allowed_null": false
|
2416
2429
|
},
|
2417
2430
|
{
|
2418
2431
|
"disabled": false,
|
2419
|
-
"document": "
|
2432
|
+
"document": "对应的具体值",
|
2420
2433
|
"example": "[0]",
|
2421
2434
|
"member": "float",
|
2422
2435
|
"name": "Values",
|
2423
2436
|
"output_required": false,
|
2424
2437
|
"type": "list",
|
2425
|
-
"value_allowed_null":
|
2438
|
+
"value_allowed_null": false
|
2426
2439
|
}
|
2427
2440
|
],
|
2428
2441
|
"usage": "out"
|
@@ -2432,53 +2445,53 @@
|
|
2432
2445
|
"members": [
|
2433
2446
|
{
|
2434
2447
|
"disabled": false,
|
2435
|
-
"document": "
|
2448
|
+
"document": "类型族",
|
2436
2449
|
"example": "标准型S5",
|
2437
2450
|
"member": "string",
|
2438
2451
|
"name": "HostTypeFamily",
|
2439
2452
|
"output_required": false,
|
2440
2453
|
"type": "string",
|
2441
|
-
"value_allowed_null":
|
2454
|
+
"value_allowed_null": false
|
2442
2455
|
},
|
2443
2456
|
{
|
2444
2457
|
"disabled": false,
|
2445
|
-
"document": "总CPU
|
2458
|
+
"document": "总CPU",
|
2446
2459
|
"example": "64",
|
2447
2460
|
"member": "float",
|
2448
2461
|
"name": "CpuTotal",
|
2449
2462
|
"output_required": false,
|
2450
2463
|
"type": "float",
|
2451
|
-
"value_allowed_null":
|
2464
|
+
"value_allowed_null": false
|
2452
2465
|
},
|
2453
2466
|
{
|
2454
2467
|
"disabled": false,
|
2455
|
-
"document": "可用CPU
|
2468
|
+
"document": "可用CPU",
|
2456
2469
|
"example": "64",
|
2457
2470
|
"member": "float",
|
2458
2471
|
"name": "CpuAvailable",
|
2459
2472
|
"output_required": false,
|
2460
2473
|
"type": "float",
|
2461
|
-
"value_allowed_null":
|
2474
|
+
"value_allowed_null": false
|
2462
2475
|
},
|
2463
2476
|
{
|
2464
2477
|
"disabled": false,
|
2465
|
-
"document": "
|
2478
|
+
"document": "总内存",
|
2466
2479
|
"example": "320",
|
2467
2480
|
"member": "float",
|
2468
2481
|
"name": "MemTotal",
|
2469
2482
|
"output_required": false,
|
2470
2483
|
"type": "float",
|
2471
|
-
"value_allowed_null":
|
2484
|
+
"value_allowed_null": false
|
2472
2485
|
},
|
2473
2486
|
{
|
2474
2487
|
"disabled": false,
|
2475
|
-
"document": "
|
2488
|
+
"document": "可用内存",
|
2476
2489
|
"example": "320",
|
2477
2490
|
"member": "float",
|
2478
2491
|
"name": "MemAvailable",
|
2479
2492
|
"output_required": false,
|
2480
2493
|
"type": "float",
|
2481
|
-
"value_allowed_null":
|
2494
|
+
"value_allowed_null": false
|
2482
2495
|
}
|
2483
2496
|
],
|
2484
2497
|
"usage": "out"
|
@@ -2654,73 +2667,73 @@
|
|
2654
2667
|
},
|
2655
2668
|
{
|
2656
2669
|
"disabled": false,
|
2657
|
-
"document": "平均cpu
|
2670
|
+
"document": "平均cpu负载百分比",
|
2658
2671
|
"example": "10",
|
2659
2672
|
"member": "float",
|
2660
2673
|
"name": "CpuAverage",
|
2661
2674
|
"output_required": false,
|
2662
2675
|
"type": "float",
|
2663
|
-
"value_allowed_null":
|
2676
|
+
"value_allowed_null": false
|
2664
2677
|
},
|
2665
2678
|
{
|
2666
2679
|
"disabled": false,
|
2667
|
-
"document": "
|
2680
|
+
"document": "平均内存使用率百分比",
|
2668
2681
|
"example": "10",
|
2669
2682
|
"member": "float",
|
2670
2683
|
"name": "MemAverage",
|
2671
2684
|
"output_required": false,
|
2672
2685
|
"type": "float",
|
2673
|
-
"value_allowed_null":
|
2686
|
+
"value_allowed_null": false
|
2674
2687
|
},
|
2675
2688
|
{
|
2676
2689
|
"disabled": false,
|
2677
|
-
"document": "
|
2690
|
+
"document": "平均网络流量",
|
2678
2691
|
"example": "10",
|
2679
2692
|
"member": "float",
|
2680
2693
|
"name": "NetAverage",
|
2681
2694
|
"output_required": false,
|
2682
2695
|
"type": "float",
|
2683
|
-
"value_allowed_null":
|
2696
|
+
"value_allowed_null": false
|
2684
2697
|
},
|
2685
2698
|
{
|
2686
2699
|
"disabled": false,
|
2687
|
-
"document": "cpu
|
2688
|
-
"example": "
|
2700
|
+
"document": "cpu详细监控数据",
|
2701
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
2689
2702
|
"member": "DetailData",
|
2690
2703
|
"name": "CpuDetailData",
|
2691
2704
|
"output_required": false,
|
2692
2705
|
"type": "object",
|
2693
|
-
"value_allowed_null":
|
2706
|
+
"value_allowed_null": false
|
2694
2707
|
},
|
2695
2708
|
{
|
2696
2709
|
"disabled": false,
|
2697
|
-
"document": "
|
2698
|
-
"example": "
|
2710
|
+
"document": "内存详细数据",
|
2711
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
2699
2712
|
"member": "DetailData",
|
2700
2713
|
"name": "MemDetailData",
|
2701
2714
|
"output_required": false,
|
2702
2715
|
"type": "object",
|
2703
|
-
"value_allowed_null":
|
2716
|
+
"value_allowed_null": false
|
2704
2717
|
},
|
2705
2718
|
{
|
2706
2719
|
"disabled": false,
|
2707
|
-
"document": "
|
2708
|
-
"example": "
|
2720
|
+
"document": "网络速率详细数据",
|
2721
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
2709
2722
|
"member": "DetailData",
|
2710
2723
|
"name": "NetRateDetailData",
|
2711
2724
|
"output_required": false,
|
2712
2725
|
"type": "object",
|
2713
|
-
"value_allowed_null":
|
2726
|
+
"value_allowed_null": false
|
2714
2727
|
},
|
2715
2728
|
{
|
2716
2729
|
"disabled": false,
|
2717
|
-
"document": "
|
2718
|
-
"example": "
|
2730
|
+
"document": "网速包详细数据",
|
2731
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
2719
2732
|
"member": "DetailData",
|
2720
2733
|
"name": "NetPacketDetailData",
|
2721
2734
|
"output_required": false,
|
2722
2735
|
"type": "object",
|
2723
|
-
"value_allowed_null":
|
2736
|
+
"value_allowed_null": false
|
2724
2737
|
}
|
2725
2738
|
],
|
2726
2739
|
"usage": "out"
|
@@ -2874,7 +2887,7 @@
|
|
2874
2887
|
},
|
2875
2888
|
{
|
2876
2889
|
"disabled": false,
|
2877
|
-
"document": "大订单ID",
|
2890
|
+
"document": "大订单ID,可以在本地专用集群的基础信息页获取大订单ID",
|
2878
2891
|
"example": "ord-aijx4ets",
|
2879
2892
|
"member": "string",
|
2880
2893
|
"name": "DedicatedClusterOrderId",
|
@@ -2883,8 +2896,8 @@
|
|
2883
2896
|
},
|
2884
2897
|
{
|
2885
2898
|
"disabled": false,
|
2886
|
-
"document": "小订单ID",
|
2887
|
-
"example": "
|
2899
|
+
"document": "小订单ID,进入大订单的详情页,可以看到小订单ID",
|
2900
|
+
"example": "[\"sord-aijxdfasdf\"]",
|
2888
2901
|
"member": "string",
|
2889
2902
|
"name": "SubOrderIds",
|
2890
2903
|
"required": false,
|
@@ -2946,7 +2959,7 @@
|
|
2946
2959
|
},
|
2947
2960
|
{
|
2948
2961
|
"disabled": false,
|
2949
|
-
"document": "
|
2962
|
+
"document": "从机架上方还是下方供电。取值范围:[\"UP\",\"DOWN\"]",
|
2950
2963
|
"example": "UP",
|
2951
2964
|
"member": "string",
|
2952
2965
|
"name": "PowerFeedDrop",
|
@@ -2973,7 +2986,7 @@
|
|
2973
2986
|
},
|
2974
2987
|
{
|
2975
2988
|
"disabled": false,
|
2976
|
-
"document": "网络到腾讯云Region区域的上行链路速度",
|
2989
|
+
"document": "网络到腾讯云Region区域的上行链路速度(Gbps)",
|
2977
2990
|
"example": "10",
|
2978
2991
|
"member": "int64",
|
2979
2992
|
"name": "UplinkSpeedGbps",
|
@@ -3192,17 +3205,17 @@
|
|
3192
3205
|
"example": "1",
|
3193
3206
|
"member": "int64",
|
3194
3207
|
"name": "RegionId",
|
3195
|
-
"
|
3208
|
+
"output_required": true,
|
3196
3209
|
"type": "int",
|
3197
3210
|
"value_allowed_null": false
|
3198
3211
|
},
|
3199
3212
|
{
|
3200
3213
|
"disabled": false,
|
3201
3214
|
"document": "ZoneInfo数组",
|
3202
|
-
"example": "
|
3215
|
+
"example": "[{\"Zone\": \"ap-guangzhou-1\",\"ZoneName\": \"广州一区\",\"ZoneId\": \"100001\",\"ZoneState\": \"AVAILABLE\"}]",
|
3203
3216
|
"member": "ZoneInfo",
|
3204
3217
|
"name": "Zones",
|
3205
|
-
"
|
3218
|
+
"output_required": true,
|
3206
3219
|
"type": "list",
|
3207
3220
|
"value_allowed_null": false
|
3208
3221
|
}
|
@@ -3215,7 +3228,7 @@
|
|
3215
3228
|
{
|
3216
3229
|
"disabled": false,
|
3217
3230
|
"document": "云硬盘仓库id\n注意:此字段可能返回 null,表示取不到有效值。",
|
3218
|
-
"example": "
|
3231
|
+
"example": "set-mm4hzptu",
|
3219
3232
|
"member": "string",
|
3220
3233
|
"name": "SetId",
|
3221
3234
|
"output_required": false,
|
@@ -3225,7 +3238,7 @@
|
|
3225
3238
|
{
|
3226
3239
|
"disabled": false,
|
3227
3240
|
"document": "云硬盘仓库名称\n注意:此字段可能返回 null,表示取不到有效值。",
|
3228
|
-
"example": "
|
3241
|
+
"example": "HCBS_GZCDC_Z133_CDCCBS_Y0SH1125G_D0003",
|
3229
3242
|
"member": "string",
|
3230
3243
|
"name": "SetName",
|
3231
3244
|
"output_required": false,
|
@@ -3235,7 +3248,7 @@
|
|
3235
3248
|
{
|
3236
3249
|
"disabled": false,
|
3237
3250
|
"document": "云硬盘仓库类型\n注意:此字段可能返回 null,表示取不到有效值。",
|
3238
|
-
"example": "
|
3251
|
+
"example": "ssd",
|
3239
3252
|
"member": "string",
|
3240
3253
|
"name": "SetType",
|
3241
3254
|
"output_required": false,
|
@@ -3245,7 +3258,7 @@
|
|
3245
3258
|
{
|
3246
3259
|
"disabled": false,
|
3247
3260
|
"document": "云硬盘仓库容量\n注意:此字段可能返回 null,表示取不到有效值。",
|
3248
|
-
"example": "
|
3261
|
+
"example": "33.4",
|
3249
3262
|
"member": "float",
|
3250
3263
|
"name": "SetSize",
|
3251
3264
|
"output_required": false,
|
@@ -3255,7 +3268,7 @@
|
|
3255
3268
|
{
|
3256
3269
|
"disabled": false,
|
3257
3270
|
"document": "云硬盘仓库状态\n注意:此字段可能返回 null,表示取不到有效值。",
|
3258
|
-
"example": "
|
3271
|
+
"example": "RUNNING",
|
3259
3272
|
"member": "string",
|
3260
3273
|
"name": "SetStatus",
|
3261
3274
|
"output_required": false,
|
@@ -3265,7 +3278,7 @@
|
|
3265
3278
|
{
|
3266
3279
|
"disabled": false,
|
3267
3280
|
"document": "云硬盘仓库创建时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
3268
|
-
"example": "
|
3281
|
+
"example": "2022-12-09 15:20:09",
|
3269
3282
|
"member": "string",
|
3270
3283
|
"name": "CreateTime",
|
3271
3284
|
"output_required": false,
|
@@ -3275,7 +3288,7 @@
|
|
3275
3288
|
{
|
3276
3289
|
"disabled": false,
|
3277
3290
|
"document": "读流量\n注意:此字段可能返回 null,表示取不到有效值。",
|
3278
|
-
"example": "
|
3291
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
3279
3292
|
"member": "DetailData",
|
3280
3293
|
"name": "ReadTraffic",
|
3281
3294
|
"output_required": false,
|
@@ -3285,7 +3298,7 @@
|
|
3285
3298
|
{
|
3286
3299
|
"disabled": false,
|
3287
3300
|
"document": "写流量\n注意:此字段可能返回 null,表示取不到有效值。",
|
3288
|
-
"example": "
|
3301
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
3289
3302
|
"member": "DetailData",
|
3290
3303
|
"name": "WriteTraffic",
|
3291
3304
|
"output_required": false,
|
@@ -3295,7 +3308,7 @@
|
|
3295
3308
|
{
|
3296
3309
|
"disabled": false,
|
3297
3310
|
"document": "读IO\n注意:此字段可能返回 null,表示取不到有效值。",
|
3298
|
-
"example": "
|
3311
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
3299
3312
|
"member": "DetailData",
|
3300
3313
|
"name": "ReadIO",
|
3301
3314
|
"output_required": false,
|
@@ -3305,7 +3318,7 @@
|
|
3305
3318
|
{
|
3306
3319
|
"disabled": false,
|
3307
3320
|
"document": "写IO\n注意:此字段可能返回 null,表示取不到有效值。",
|
3308
|
-
"example": "
|
3321
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
3309
3322
|
"member": "DetailData",
|
3310
3323
|
"name": "WriteIO",
|
3311
3324
|
"output_required": false,
|
@@ -3315,7 +3328,7 @@
|
|
3315
3328
|
{
|
3316
3329
|
"disabled": false,
|
3317
3330
|
"document": "平均等待时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
3318
|
-
"example": "
|
3331
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
3319
3332
|
"member": "DetailData",
|
3320
3333
|
"name": "Await",
|
3321
3334
|
"output_required": false,
|
@@ -3325,7 +3338,7 @@
|
|
3325
3338
|
{
|
3326
3339
|
"disabled": false,
|
3327
3340
|
"document": "利用率\n注意:此字段可能返回 null,表示取不到有效值。",
|
3328
|
-
"example": "
|
3341
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
3329
3342
|
"member": "DetailData",
|
3330
3343
|
"name": "Util",
|
3331
3344
|
"output_required": false,
|
@@ -3341,40 +3354,40 @@
|
|
3341
3354
|
{
|
3342
3355
|
"disabled": false,
|
3343
3356
|
"document": "站点名称",
|
3344
|
-
"example": "",
|
3357
|
+
"example": "my-site",
|
3345
3358
|
"member": "string",
|
3346
3359
|
"name": "Name",
|
3347
|
-
"
|
3360
|
+
"output_required": true,
|
3348
3361
|
"type": "string",
|
3349
3362
|
"value_allowed_null": false
|
3350
3363
|
},
|
3351
3364
|
{
|
3352
3365
|
"disabled": false,
|
3353
3366
|
"document": "站点id",
|
3354
|
-
"example": "",
|
3367
|
+
"example": "site-98dj3kd",
|
3355
3368
|
"member": "string",
|
3356
3369
|
"name": "SiteId",
|
3357
|
-
"
|
3370
|
+
"output_required": true,
|
3358
3371
|
"type": "string",
|
3359
3372
|
"value_allowed_null": false
|
3360
3373
|
},
|
3361
3374
|
{
|
3362
3375
|
"disabled": false,
|
3363
3376
|
"document": "站点描述\n注意:此字段可能返回 null,表示取不到有效值。",
|
3364
|
-
"example": "",
|
3377
|
+
"example": "my first site",
|
3365
3378
|
"member": "string",
|
3366
3379
|
"name": "Description",
|
3367
|
-
"
|
3380
|
+
"output_required": true,
|
3368
3381
|
"type": "string",
|
3369
3382
|
"value_allowed_null": true
|
3370
3383
|
},
|
3371
3384
|
{
|
3372
3385
|
"disabled": false,
|
3373
3386
|
"document": "站点创建时间",
|
3374
|
-
"example": "",
|
3387
|
+
"example": "2020-12-25T08:39:57Z",
|
3375
3388
|
"member": "datetime_iso",
|
3376
3389
|
"name": "CreateTime",
|
3377
|
-
"
|
3390
|
+
"output_required": true,
|
3378
3391
|
"type": "string",
|
3379
3392
|
"value_allowed_null": false
|
3380
3393
|
}
|
@@ -3390,7 +3403,7 @@
|
|
3390
3403
|
"example": "\"site-u37d8sh\"",
|
3391
3404
|
"member": "string",
|
3392
3405
|
"name": "SiteId",
|
3393
|
-
"
|
3406
|
+
"output_required": true,
|
3394
3407
|
"type": "string",
|
3395
3408
|
"value_allowed_null": false
|
3396
3409
|
},
|
@@ -3400,7 +3413,7 @@
|
|
3400
3413
|
"example": "\"my-site\"",
|
3401
3414
|
"member": "string",
|
3402
3415
|
"name": "Name",
|
3403
|
-
"
|
3416
|
+
"output_required": true,
|
3404
3417
|
"type": "string",
|
3405
3418
|
"value_allowed_null": false
|
3406
3419
|
},
|
@@ -3410,7 +3423,7 @@
|
|
3410
3423
|
"example": "\"this site is good\"",
|
3411
3424
|
"member": "string",
|
3412
3425
|
"name": "Description",
|
3413
|
-
"
|
3426
|
+
"output_required": true,
|
3414
3427
|
"type": "string",
|
3415
3428
|
"value_allowed_null": false
|
3416
3429
|
},
|
@@ -3420,7 +3433,7 @@
|
|
3420
3433
|
"example": "\"2020-12-25T10:26:11Z\"",
|
3421
3434
|
"member": "datetime_iso",
|
3422
3435
|
"name": "CreateTime",
|
3423
|
-
"
|
3436
|
+
"output_required": true,
|
3424
3437
|
"type": "string",
|
3425
3438
|
"value_allowed_null": false
|
3426
3439
|
},
|
@@ -3430,7 +3443,7 @@
|
|
3430
3443
|
"example": "\"MM\"",
|
3431
3444
|
"member": "string",
|
3432
3445
|
"name": "FiberType",
|
3433
|
-
"
|
3446
|
+
"output_required": true,
|
3434
3447
|
"type": "string",
|
3435
3448
|
"value_allowed_null": false
|
3436
3449
|
},
|
@@ -3440,7 +3453,7 @@
|
|
3440
3453
|
"example": "0",
|
3441
3454
|
"member": "int64",
|
3442
3455
|
"name": "UplinkSpeedGbps",
|
3443
|
-
"
|
3456
|
+
"output_required": true,
|
3444
3457
|
"type": "int",
|
3445
3458
|
"value_allowed_null": false
|
3446
3459
|
},
|
@@ -3450,7 +3463,7 @@
|
|
3450
3463
|
"example": "0",
|
3451
3464
|
"member": "int64",
|
3452
3465
|
"name": "UplinkCount",
|
3453
|
-
"
|
3466
|
+
"output_required": true,
|
3454
3467
|
"type": "int",
|
3455
3468
|
"value_allowed_null": false
|
3456
3469
|
},
|
@@ -3460,7 +3473,7 @@
|
|
3460
3473
|
"example": "\"MM\"",
|
3461
3474
|
"member": "string",
|
3462
3475
|
"name": "OpticalStandard",
|
3463
|
-
"
|
3476
|
+
"output_required": true,
|
3464
3477
|
"type": "string",
|
3465
3478
|
"value_allowed_null": false
|
3466
3479
|
},
|
@@ -3470,7 +3483,7 @@
|
|
3470
3483
|
"example": "false",
|
3471
3484
|
"member": "bool",
|
3472
3485
|
"name": "RedundantNetworking",
|
3473
|
-
"
|
3486
|
+
"output_required": true,
|
3474
3487
|
"type": "bool",
|
3475
3488
|
"value_allowed_null": false
|
3476
3489
|
},
|
@@ -3480,7 +3493,7 @@
|
|
3480
3493
|
"example": "\"MM\"",
|
3481
3494
|
"member": "string",
|
3482
3495
|
"name": "PowerConnectors",
|
3483
|
-
"
|
3496
|
+
"output_required": true,
|
3484
3497
|
"type": "string",
|
3485
3498
|
"value_allowed_null": false
|
3486
3499
|
},
|
@@ -3490,7 +3503,7 @@
|
|
3490
3503
|
"example": "\"above\"",
|
3491
3504
|
"member": "string",
|
3492
3505
|
"name": "PowerFeedDrop",
|
3493
|
-
"
|
3506
|
+
"output_required": true,
|
3494
3507
|
"type": "string",
|
3495
3508
|
"value_allowed_null": false
|
3496
3509
|
},
|
@@ -3500,7 +3513,7 @@
|
|
3500
3513
|
"example": "0.0",
|
3501
3514
|
"member": "float",
|
3502
3515
|
"name": "PowerDrawKva",
|
3503
|
-
"
|
3516
|
+
"output_required": true,
|
3504
3517
|
"type": "float",
|
3505
3518
|
"value_allowed_null": false
|
3506
3519
|
},
|
@@ -3510,7 +3523,7 @@
|
|
3510
3523
|
"example": "false",
|
3511
3524
|
"member": "bool",
|
3512
3525
|
"name": "ConditionRequirement",
|
3513
|
-
"
|
3526
|
+
"output_required": true,
|
3514
3527
|
"type": "bool",
|
3515
3528
|
"value_allowed_null": false
|
3516
3529
|
},
|
@@ -3520,7 +3533,7 @@
|
|
3520
3533
|
"example": "false",
|
3521
3534
|
"member": "bool",
|
3522
3535
|
"name": "DimensionRequirement",
|
3523
|
-
"
|
3536
|
+
"output_required": true,
|
3524
3537
|
"type": "bool",
|
3525
3538
|
"value_allowed_null": false
|
3526
3539
|
},
|
@@ -3530,7 +3543,7 @@
|
|
3530
3543
|
"example": "0",
|
3531
3544
|
"member": "int64",
|
3532
3545
|
"name": "MaxWeight",
|
3533
|
-
"
|
3546
|
+
"output_required": true,
|
3534
3547
|
"type": "int",
|
3535
3548
|
"value_allowed_null": false
|
3536
3549
|
},
|
@@ -3540,17 +3553,17 @@
|
|
3540
3553
|
"example": "\"Furong Road\"",
|
3541
3554
|
"member": "string",
|
3542
3555
|
"name": "AddressLine",
|
3543
|
-
"
|
3556
|
+
"output_required": true,
|
3544
3557
|
"type": "string",
|
3545
3558
|
"value_allowed_null": false
|
3546
3559
|
},
|
3547
3560
|
{
|
3548
3561
|
"disabled": false,
|
3549
3562
|
"document": "站点所在地区的详细地址信息(补充)",
|
3550
|
-
"example": "
|
3563
|
+
"example": "305号",
|
3551
3564
|
"member": "string",
|
3552
3565
|
"name": "OptionalAddressLine",
|
3553
|
-
"
|
3566
|
+
"output_required": true,
|
3554
3567
|
"type": "string",
|
3555
3568
|
"value_allowed_null": false
|
3556
3569
|
},
|
@@ -3560,7 +3573,7 @@
|
|
3560
3573
|
"example": "true",
|
3561
3574
|
"member": "bool",
|
3562
3575
|
"name": "NeedHelp",
|
3563
|
-
"
|
3576
|
+
"output_required": true,
|
3564
3577
|
"type": "bool",
|
3565
3578
|
"value_allowed_null": false
|
3566
3579
|
},
|
@@ -3570,7 +3583,7 @@
|
|
3570
3583
|
"example": "false",
|
3571
3584
|
"member": "bool",
|
3572
3585
|
"name": "BreakerRequirement",
|
3573
|
-
"
|
3586
|
+
"output_required": true,
|
3574
3587
|
"type": "bool",
|
3575
3588
|
"value_allowed_null": false
|
3576
3589
|
},
|
@@ -3580,7 +3593,7 @@
|
|
3580
3593
|
"example": "false",
|
3581
3594
|
"member": "bool",
|
3582
3595
|
"name": "RedundantPower",
|
3583
|
-
"
|
3596
|
+
"output_required": true,
|
3584
3597
|
"type": "bool",
|
3585
3598
|
"value_allowed_null": false
|
3586
3599
|
},
|
@@ -3590,7 +3603,7 @@
|
|
3590
3603
|
"example": "\"China\"",
|
3591
3604
|
"member": "string",
|
3592
3605
|
"name": "Country",
|
3593
|
-
"
|
3606
|
+
"output_required": true,
|
3594
3607
|
"type": "string",
|
3595
3608
|
"value_allowed_null": false
|
3596
3609
|
},
|
@@ -3600,7 +3613,7 @@
|
|
3600
3613
|
"example": "\"Hunan\"",
|
3601
3614
|
"member": "string",
|
3602
3615
|
"name": "Province",
|
3603
|
-
"
|
3616
|
+
"output_required": true,
|
3604
3617
|
"type": "string",
|
3605
3618
|
"value_allowed_null": false
|
3606
3619
|
},
|
@@ -3610,7 +3623,7 @@
|
|
3610
3623
|
"example": "\"Changsha\"",
|
3611
3624
|
"member": "string",
|
3612
3625
|
"name": "City",
|
3613
|
-
"
|
3626
|
+
"output_required": true,
|
3614
3627
|
"type": "string",
|
3615
3628
|
"value_allowed_null": false
|
3616
3629
|
},
|
@@ -3620,7 +3633,7 @@
|
|
3620
3633
|
"example": "414012",
|
3621
3634
|
"member": "int64",
|
3622
3635
|
"name": "PostalCode",
|
3623
|
-
"
|
3636
|
+
"output_required": true,
|
3624
3637
|
"type": "int",
|
3625
3638
|
"value_allowed_null": false
|
3626
3639
|
}
|
@@ -3633,20 +3646,20 @@
|
|
3633
3646
|
{
|
3634
3647
|
"disabled": false,
|
3635
3648
|
"document": "出带宽流量\n注意:此字段可能返回 null,表示取不到有效值。",
|
3636
|
-
"example": "
|
3649
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
3637
3650
|
"member": "OutBandwidth",
|
3638
3651
|
"name": "OutBandwidth",
|
3639
|
-
"
|
3652
|
+
"output_required": true,
|
3640
3653
|
"type": "object",
|
3641
3654
|
"value_allowed_null": true
|
3642
3655
|
},
|
3643
3656
|
{
|
3644
3657
|
"disabled": false,
|
3645
3658
|
"document": "入带宽流量",
|
3646
|
-
"example": "
|
3659
|
+
"example": "{\"Timestamps\": [1693274400],\"Values\": [0]}",
|
3647
3660
|
"member": "InBandwidth",
|
3648
3661
|
"name": "InBandwidth",
|
3649
|
-
"
|
3662
|
+
"output_required": true,
|
3650
3663
|
"type": "object",
|
3651
3664
|
"value_allowed_null": false
|
3652
3665
|
}
|
@@ -3659,40 +3672,40 @@
|
|
3659
3672
|
{
|
3660
3673
|
"disabled": false,
|
3661
3674
|
"document": "可用区名称",
|
3662
|
-
"example": "",
|
3675
|
+
"example": "ap-guangzhou-1",
|
3663
3676
|
"member": "string",
|
3664
3677
|
"name": "Zone",
|
3665
|
-
"
|
3678
|
+
"output_required": true,
|
3666
3679
|
"type": "string",
|
3667
3680
|
"value_allowed_null": false
|
3668
3681
|
},
|
3669
3682
|
{
|
3670
3683
|
"disabled": false,
|
3671
3684
|
"document": "可用区描述",
|
3672
|
-
"example": "",
|
3685
|
+
"example": "广州一区",
|
3673
3686
|
"member": "string",
|
3674
3687
|
"name": "ZoneName",
|
3675
|
-
"
|
3688
|
+
"output_required": true,
|
3676
3689
|
"type": "string",
|
3677
3690
|
"value_allowed_null": false
|
3678
3691
|
},
|
3679
3692
|
{
|
3680
3693
|
"disabled": false,
|
3681
3694
|
"document": "可用区ID",
|
3682
|
-
"example": "",
|
3695
|
+
"example": "100001",
|
3683
3696
|
"member": "int64",
|
3684
3697
|
"name": "ZoneId",
|
3685
|
-
"
|
3698
|
+
"output_required": true,
|
3686
3699
|
"type": "int",
|
3687
3700
|
"value_allowed_null": false
|
3688
3701
|
},
|
3689
3702
|
{
|
3690
3703
|
"disabled": false,
|
3691
3704
|
"document": "可用区状态,包含AVAILABLE和UNAVAILABLE。AVAILABLE代表可用,UNAVAILABLE代表不可用。",
|
3692
|
-
"example": "",
|
3705
|
+
"example": "AVAILABLE",
|
3693
3706
|
"member": "string",
|
3694
3707
|
"name": "ZoneState",
|
3695
|
-
"
|
3708
|
+
"output_required": true,
|
3696
3709
|
"type": "string",
|
3697
3710
|
"value_allowed_null": false
|
3698
3711
|
}
|