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
@@ -721,50 +721,50 @@
|
|
721
721
|
{
|
722
722
|
"disabled": false,
|
723
723
|
"document": "后付费配额列表",
|
724
|
-
"example": "[]",
|
724
|
+
"example": "[ { \"TotalQuota\": 300, \"UsedQuota\": 5, \"RemainingQuota\": 295, \"Zone\": \"ap-shanghai-5\" } ]",
|
725
725
|
"member": "PostPaidQuota",
|
726
726
|
"name": "PostPaidQuotaSet",
|
727
|
-
"
|
727
|
+
"output_required": true,
|
728
728
|
"type": "list",
|
729
729
|
"value_allowed_null": false
|
730
730
|
},
|
731
731
|
{
|
732
732
|
"disabled": false,
|
733
733
|
"document": "预付费配额列表",
|
734
|
-
"example": "[]",
|
734
|
+
"example": "[ { \"TotalQuota\": 300, \"UsedQuota\": 5, \"RemainingQuota\": 295, \"OnceQuota\": 500, \"Zone\": \"ap-shanghai-5\" } ]",
|
735
735
|
"member": "PrePaidQuota",
|
736
736
|
"name": "PrePaidQuotaSet",
|
737
|
-
"
|
737
|
+
"output_required": true,
|
738
738
|
"type": "list",
|
739
739
|
"value_allowed_null": false
|
740
740
|
},
|
741
741
|
{
|
742
742
|
"disabled": false,
|
743
743
|
"document": "spot配额列表",
|
744
|
-
"example": "[]",
|
744
|
+
"example": " [ { \"TotalQuota\": 300, \"UsedQuota\": 5, \"RemainingQuota\": 295, \"Zone\": \"ap-shanghai-5\" } ]",
|
745
745
|
"member": "SpotPaidQuota",
|
746
746
|
"name": "SpotPaidQuotaSet",
|
747
|
-
"
|
747
|
+
"output_required": true,
|
748
748
|
"type": "list",
|
749
749
|
"value_allowed_null": false
|
750
750
|
},
|
751
751
|
{
|
752
752
|
"disabled": false,
|
753
753
|
"document": "镜像配额列表",
|
754
|
-
"example": "[]",
|
754
|
+
"example": " [ { \"TotalQuota\": 300, \"UsedQuota\": 5 } ]",
|
755
755
|
"member": "ImageQuota",
|
756
756
|
"name": "ImageQuotaSet",
|
757
|
-
"
|
757
|
+
"output_required": true,
|
758
758
|
"type": "list",
|
759
759
|
"value_allowed_null": false
|
760
760
|
},
|
761
761
|
{
|
762
762
|
"disabled": false,
|
763
763
|
"document": "置放群组配额列表",
|
764
|
-
"example": "[]",
|
764
|
+
"example": " [ { \"GroupQuota\": 50, \"CvmInHostGroupQuota\": 5, \"CvmInSwitchGroupQuota\": 5, \"CvmInRackGroupQuota\": \"5\", \"CurrentNum\": \"3\" } ]",
|
765
765
|
"member": "DisasterRecoverGroupQuota",
|
766
766
|
"name": "DisasterRecoverGroupQuotaSet",
|
767
|
-
"
|
767
|
+
"output_required": true,
|
768
768
|
"type": "list",
|
769
769
|
"value_allowed_null": false
|
770
770
|
}
|
@@ -780,17 +780,17 @@
|
|
780
780
|
"example": "ap-guangzhou",
|
781
781
|
"member": "string",
|
782
782
|
"name": "Region",
|
783
|
-
"
|
783
|
+
"output_required": true,
|
784
784
|
"type": "string",
|
785
785
|
"value_allowed_null": false
|
786
786
|
},
|
787
787
|
{
|
788
788
|
"disabled": false,
|
789
789
|
"document": "配额数据",
|
790
|
-
"example": "{}",
|
790
|
+
"example": "{ \"PrePaidQuotaSet\": [ { \"TotalQuota\": 300, \"UsedQuota\": 5, \"RemainingQuota\": 295, \"OnceQuota\": 500, \"Zone\": \"ap-shanghai-5\" } ], \"PostPaidQuotaSet\": [ { \"TotalQuota\": 300, \"UsedQuota\": 5, \"RemainingQuota\": 295, \"Zone\": \"ap-shanghai-5\" } ] }",
|
791
791
|
"member": "AccountQuota",
|
792
792
|
"name": "AccountQuota",
|
793
|
-
"
|
793
|
+
"output_required": true,
|
794
794
|
"type": "object",
|
795
795
|
"value_allowed_null": false
|
796
796
|
}
|
@@ -832,6 +832,39 @@
|
|
832
832
|
"required": false,
|
833
833
|
"type": "object",
|
834
834
|
"value_allowed_null": true
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"disabled": false,
|
838
|
+
"document": "定时器ID。",
|
839
|
+
"example": "57z0f8ef-8112-460f-8203-fab753580f68",
|
840
|
+
"member": "string",
|
841
|
+
"name": "ActionTimerId",
|
842
|
+
"output_required": true,
|
843
|
+
"required": false,
|
844
|
+
"type": "string",
|
845
|
+
"value_allowed_null": false
|
846
|
+
},
|
847
|
+
{
|
848
|
+
"disabled": false,
|
849
|
+
"document": "定时器状态,取值范围:\n\nUNDO:未触发\nDOING:触发中\nDONE:已经触发\n",
|
850
|
+
"example": "UNDO",
|
851
|
+
"member": "string",
|
852
|
+
"name": "Status",
|
853
|
+
"output_required": true,
|
854
|
+
"required": false,
|
855
|
+
"type": "string",
|
856
|
+
"value_allowed_null": false
|
857
|
+
},
|
858
|
+
{
|
859
|
+
"disabled": false,
|
860
|
+
"document": "定时器对应的实例ID。",
|
861
|
+
"example": "ins-dpa3e3at",
|
862
|
+
"member": "string",
|
863
|
+
"name": "InstanceId",
|
864
|
+
"output_required": true,
|
865
|
+
"required": false,
|
866
|
+
"type": "string",
|
867
|
+
"value_allowed_null": false
|
835
868
|
}
|
836
869
|
],
|
837
870
|
"usage": "both"
|
@@ -842,7 +875,7 @@
|
|
842
875
|
{
|
843
876
|
"disabled": false,
|
844
877
|
"document": "实例所在的位置。通过该参数可以指定实例所属可用区,所属项目等属性。",
|
845
|
-
"example": "
|
878
|
+
"example": "{ \"Zone\": \"ap-shanghai-2\" }",
|
846
879
|
"member": "Placement",
|
847
880
|
"name": "Placement",
|
848
881
|
"required": true,
|
@@ -851,7 +884,7 @@
|
|
851
884
|
{
|
852
885
|
"disabled": false,
|
853
886
|
"document": "用于保证请求幂等性的字符串。",
|
854
|
-
"example": "
|
887
|
+
"example": "a521b4e4-c903-4d37-9de6-8906e3ad8eb7",
|
855
888
|
"member": "string",
|
856
889
|
"name": "ClientToken",
|
857
890
|
"required": false,
|
@@ -860,7 +893,7 @@
|
|
860
893
|
{
|
861
894
|
"disabled": false,
|
862
895
|
"document": "预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。",
|
863
|
-
"example": "
|
896
|
+
"example": "{ \"Period\": 1, \"RenewFlag\": \"NOTIFY_AND_MANUAL_RENEW\", \"TimeUnit\": \"MONTH\" }",
|
864
897
|
"member": "ChargePrepaid",
|
865
898
|
"name": "HostChargePrepaid",
|
866
899
|
"required": false,
|
@@ -896,7 +929,7 @@
|
|
896
929
|
{
|
897
930
|
"disabled": false,
|
898
931
|
"document": "标签描述列表。通过指定该参数可以同时绑定标签到相应的资源实例。",
|
899
|
-
"example": "
|
932
|
+
"example": "[ { \"ResourceType\": \"host\", \"Tags\": [ { \"Key\": \"myTag\", \"Value\": \"cloud\" } ] } ]",
|
900
933
|
"member": "TagSpecification",
|
901
934
|
"name": "TagSpecification",
|
902
935
|
"required": false,
|
@@ -914,7 +947,7 @@
|
|
914
947
|
"example": "[\"host-lan4lb2k\"]",
|
915
948
|
"member": "string",
|
916
949
|
"name": "HostIdSet",
|
917
|
-
"
|
950
|
+
"output_required": true,
|
918
951
|
"type": "list",
|
919
952
|
"value_allowed_null": false
|
920
953
|
},
|
@@ -932,7 +965,7 @@
|
|
932
965
|
"members": [
|
933
966
|
{
|
934
967
|
"disabled": false,
|
935
|
-
"document": "一个或多个待操作的实例ID,每次请求批量实例的上限为100。<br>可以通过以下方式获取可用的实例ID:<br><li>通过登录[控制台](https://console.cloud.tencent.com/cvm/index)查询实例ID
|
968
|
+
"document": "一个或多个待操作的实例ID,每次请求批量实例的上限为100。<br>可以通过以下方式获取可用的实例ID:<br><li>通过登录[控制台](https://console.cloud.tencent.com/cvm/index)查询实例ID。</li><li>通过调用接口 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) ,取返回信息中的`InstanceId`获取实例ID。</li>",
|
936
969
|
"example": "[\"ins-1e4r6y8i\",\"ins-3e56fg78\"]",
|
937
970
|
"member": "string",
|
938
971
|
"name": "InstanceIds",
|
@@ -941,7 +974,7 @@
|
|
941
974
|
},
|
942
975
|
{
|
943
976
|
"disabled": false,
|
944
|
-
"document": "一个或多个待操作的密钥对ID,每次请求批量密钥对的上限为100。密钥对ID形如:`skey-3glfot13`。<br>可以通过以下方式获取可用的密钥ID:<br><li>通过登录[控制台](https://console.cloud.tencent.com/cvm/sshkey)查询密钥ID
|
977
|
+
"document": "一个或多个待操作的密钥对ID,每次请求批量密钥对的上限为100。密钥对ID形如:`skey-3glfot13`。<br>可以通过以下方式获取可用的密钥ID:<br><li>通过登录[控制台](https://console.cloud.tencent.com/cvm/sshkey)查询密钥ID。</li><li>通过调用接口 [DescribeKeyPairs](https://cloud.tencent.com/document/api/213/15699) ,取返回信息中的`KeyId`获取密钥对ID。</li>",
|
945
978
|
"example": "[\"skey-4e5ty7i8\"]",
|
946
979
|
"member": "string",
|
947
980
|
"name": "KeyIds",
|
@@ -950,7 +983,7 @@
|
|
950
983
|
},
|
951
984
|
{
|
952
985
|
"disabled": false,
|
953
|
-
"document": "是否对运行中的实例选择强制关机。建议对运行中的实例先手动关机,然后再绑定密钥。取值范围:<br><li>true
|
986
|
+
"document": "是否对运行中的实例选择强制关机。建议对运行中的实例先手动关机,然后再绑定密钥。取值范围:<br><li>true:表示在正常关机失败后进行强制关机。</li><li>false:表示在正常关机失败后不进行强制关机。</li>默认取值:false。",
|
954
987
|
"example": "true",
|
955
988
|
"member": "bool",
|
956
989
|
"name": "ForceStop",
|
@@ -1014,7 +1047,7 @@
|
|
1014
1047
|
{
|
1015
1048
|
"disabled": false,
|
1016
1049
|
"document": "购买实例的时长,单位:月。取值范围:1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 36。",
|
1017
|
-
"example": "",
|
1050
|
+
"example": "1",
|
1018
1051
|
"member": "uint64",
|
1019
1052
|
"name": "Period",
|
1020
1053
|
"required": true,
|
@@ -1022,8 +1055,8 @@
|
|
1022
1055
|
},
|
1023
1056
|
{
|
1024
1057
|
"disabled": false,
|
1025
|
-
"document": "自动续费标识。取值范围:<
|
1026
|
-
"example": "",
|
1058
|
+
"document": "自动续费标识。取值范围:<li>NOTIFY_AND_AUTO_RENEW:通知过期且自动续费</li><li>NOTIFY_AND_MANUAL_RENEW:通知过期不自动续费</li><li>DISABLE_NOTIFY_AND_MANUAL_RENEW:不通知过期不自动续费</li><br>默认取值:NOTIFY_AND_AUTO_RENEW。若该参数指定为NOTIFY_AND_AUTO_RENEW,在账户余额充足的情况下,实例到期后将按月自动续费。",
|
1059
|
+
"example": "NOTIFY_AND_AUTO_RENEW",
|
1027
1060
|
"member": "string",
|
1028
1061
|
"name": "RenewFlag",
|
1029
1062
|
"required": false,
|
@@ -1455,7 +1488,7 @@
|
|
1455
1488
|
{
|
1456
1489
|
"disabled": false,
|
1457
1490
|
"document": "转换的目标操系统信息,仅在入参 DryRun 为 true 时返回。\n注意:此字段可能返回 null,表示取不到有效值。",
|
1458
|
-
"example": "
|
1491
|
+
"example": "[ { \"TargetOSType\": \"TencentOS\", \"TargetOSVersion\": \"2.4\" } ]",
|
1459
1492
|
"member": "TargetOS",
|
1460
1493
|
"name": "SupportTargetOSList",
|
1461
1494
|
"output_required": false,
|
@@ -1465,7 +1498,7 @@
|
|
1465
1498
|
{
|
1466
1499
|
"disabled": false,
|
1467
1500
|
"document": "操作系统转换的任务 ID\n注意:此字段可能返回 null,表示取不到有效值。",
|
1468
|
-
"example": "
|
1501
|
+
"example": "12345678",
|
1469
1502
|
"member": "string",
|
1470
1503
|
"name": "TaskId",
|
1471
1504
|
"output_required": false,
|
@@ -1529,7 +1562,7 @@
|
|
1529
1562
|
{
|
1530
1563
|
"disabled": false,
|
1531
1564
|
"document": "用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。<br>更多详细信息请参阅:如何保证幂等性。",
|
1532
|
-
"example": "
|
1565
|
+
"example": "a521b4e4-c903-4d37-9de6-8906e3ad8eb7\t",
|
1533
1566
|
"member": "string",
|
1534
1567
|
"name": "ClientToken",
|
1535
1568
|
"required": false,
|
@@ -1825,7 +1858,7 @@
|
|
1825
1858
|
{
|
1826
1859
|
"disabled": false,
|
1827
1860
|
"document": "标签描述列表。通过指定该参数可以同时绑定标签到密钥对。",
|
1828
|
-
"example": "
|
1861
|
+
"example": "[ { \"ResourceType\": \"keypair\", \"Tags\": [ { \"Key\": \"myTag\", \"Value\": \"cloud\" } ] } ]",
|
1829
1862
|
"member": "TagSpecification",
|
1830
1863
|
"name": "TagSpecification",
|
1831
1864
|
"required": false,
|
@@ -1840,7 +1873,7 @@
|
|
1840
1873
|
{
|
1841
1874
|
"disabled": false,
|
1842
1875
|
"document": "密钥对信息。",
|
1843
|
-
"example": "
|
1876
|
+
"example": "{ \"KeyId\": \"skey-mv9yzyjj\", \"KeyName\": \"Tencent\", \"ProjectId\": 0, \"PublicKey\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDP0***4itUKOJQIK69c1Asy1UO88cxEbujR5Jbr0e/Ey1v4ZKAUzDnsBnFlf4hKPA1YvMB8RBYj4GcLtM7PrKnBNNram8rgl73X/klOO8oqKv+J/XUA7KHH1Y6wcn1RTRTMdDHbGhW1q/UpfeylNTbf+wEIWhEfaL5FKQm4hqCw== skey_112168\", \"PrivateKey\": \"-----BEGIN RSA PRIVATE KEY-----\\nMIICXgIBAAKBgQ***w2T4itUKOJQIK69c1Asy1UO88cxEbujR5Jbr0e/Ey1v4ZK\\nAUzDnsBnFlf4hKPA1YvMB8RBYj4GcLtM7PrKnBNNram8rgl73X/klOO8oqKv+J/X\\nUA7KHH1Y6wcn1RTRTMdDHbGhW1q/UpfeylNTbf+wEIWhEfaL5FKQm4hqCwIDAQAB\\nAoGBAJEvSu5SaCD02hs0F2C4Aln2E2/qjMoDEa7spcEVfUhdaNX8ZLvk5pUvnikm\\nwfSb7a71QUIcFu66zKxBK4kVcirBRCR8nTAQbQ6AhXQYP+y6ihZ9Z/g6BBEeqCpV\\nuGPmKnhdxdJ8Al2huEZKJFUQhKM8XdP7dqn6yFDm0L2sTK6RAkEA9IbhP4/2CVSC\\n6d8j5nj3ejPx25R3wc4G+st1tZn1O/TRqUknbVEvsxZC63bRjHiw086QIWr61L8f\\nqQBLZ58DMwJBANmRv3aHVxv5sMlV0F3hD5ZgWEDIIjxD7oiBzU1rqvF6OpTQc1cF\\nrnwxAXDtYYJ75B8qQEL1ph/zIE5YW0hlfckCQQCyVTwpUyCopU3kqqxQBaDXKtMU\\nxS6h1VQZzBDIpMPJOj8+Ku/qNe+HuJCNkVY6EDtF/bv340GTrt+0LVbQ95MpAkEA\\nxcvwUdTXB9LnuxKuHTsoDaFHepW4MivcJvRC7njM7z4dFf+wbFP4/mUbF0xoUtVJ\\nXl/uDjH/tpo1K6S+UEIcqQJAfLQywCQdZ/qOJn0PwxiOhwniikSnZuZPNSw8T+kg\\n/oxijESOLAJBnt3S/g+D530Enjitvfc9mEB7mh0VmwWvPg==\\n-----END RSA PRIVATE KEY-----\\n\" }",
|
1844
1877
|
"member": "KeyPair",
|
1845
1878
|
"name": "KeyPair",
|
1846
1879
|
"output_required": true,
|
@@ -1871,7 +1904,7 @@
|
|
1871
1904
|
{
|
1872
1905
|
"disabled": false,
|
1873
1906
|
"document": "实例所在的位置。通过该参数可以指定实例所属可用区,所属项目,所属宿主机(在专用宿主机上创建子机时指定)等属性。",
|
1874
|
-
"example": "
|
1907
|
+
"example": "{ \"Zone\": \"ap-guangzhou-6\" }",
|
1875
1908
|
"member": "Placement",
|
1876
1909
|
"name": "Placement",
|
1877
1910
|
"required": true,
|
@@ -1907,7 +1940,7 @@
|
|
1907
1940
|
{
|
1908
1941
|
"disabled": false,
|
1909
1942
|
"document": "实例系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。",
|
1910
|
-
"example": "
|
1943
|
+
"example": "{ \"DiskSize\": 50 }",
|
1911
1944
|
"member": "SystemDisk",
|
1912
1945
|
"name": "SystemDisk",
|
1913
1946
|
"required": false,
|
@@ -1916,7 +1949,7 @@
|
|
1916
1949
|
{
|
1917
1950
|
"disabled": false,
|
1918
1951
|
"document": "实例数据盘配置信息。若不指定该参数,则默认不购买数据盘。支持购买的时候指定21块数据盘,其中最多包含1块LOCAL_BASIC数据盘或者LOCAL_SSD数据盘,最多包含20块CLOUD_BASIC数据盘、CLOUD_PREMIUM数据盘或者CLOUD_SSD数据盘。",
|
1919
|
-
"example": "
|
1952
|
+
"example": "[ { \"DiskSize\": 50, \"DiskType\": \"CLOUD_PREMIUM\" } ]",
|
1920
1953
|
"member": "DataDisk",
|
1921
1954
|
"name": "DataDisks",
|
1922
1955
|
"required": false,
|
@@ -1925,7 +1958,7 @@
|
|
1925
1958
|
{
|
1926
1959
|
"disabled": false,
|
1927
1960
|
"document": "私有网络相关信息配置。通过该参数可以指定私有网络的ID,子网ID等信息。若不指定该参数,则默认使用基础网络。若在此参数中指定了私有网络IP,即表示每个实例的主网卡IP;同时,InstanceCount参数必须与私有网络IP的个数一致且不能大于20。",
|
1928
|
-
"example": "
|
1961
|
+
"example": "{ \"VpcId\": \"vpc-rhfaxx31\", \"SubnetId\": \"subnet-x7vxgqe\" }",
|
1929
1962
|
"member": "VirtualPrivateCloud",
|
1930
1963
|
"name": "VirtualPrivateCloud",
|
1931
1964
|
"required": false,
|
@@ -1934,7 +1967,7 @@
|
|
1934
1967
|
{
|
1935
1968
|
"disabled": false,
|
1936
1969
|
"document": "公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。",
|
1937
|
-
"example": "
|
1970
|
+
"example": "{ \"PublicIpAssigned\": \"false\" }",
|
1938
1971
|
"member": "InternetAccessible",
|
1939
1972
|
"name": "InternetAccessible",
|
1940
1973
|
"required": false,
|
@@ -1961,7 +1994,7 @@
|
|
1961
1994
|
{
|
1962
1995
|
"disabled": false,
|
1963
1996
|
"document": "实例登录设置。通过该参数可以设置实例的登录方式密码、密钥或保持镜像的原始登录设置。默认情况下会随机生成密码,并以站内信方式知会到用户。",
|
1964
|
-
"example": "
|
1997
|
+
"example": "{ \"KeyIds\": [ \"skey-9tzxxb4j\" ] }",
|
1965
1998
|
"member": "LoginSettings",
|
1966
1999
|
"name": "LoginSettings",
|
1967
2000
|
"required": false,
|
@@ -1979,7 +2012,7 @@
|
|
1979
2012
|
{
|
1980
2013
|
"disabled": false,
|
1981
2014
|
"document": "增强服务。通过该参数可以指定是否开启云安全、云监控等服务。若不指定该参数,则默认公共镜像开启云监控、云安全服务;自定义镜像与镜像市场镜像默认不开启云监控,云安全服务,而使用镜像里保留的服务。",
|
1982
|
-
"example": "
|
2015
|
+
"example": "{ \"SecurityService\": { \"Enabled\": \"true\" } }",
|
1983
2016
|
"member": "EnhancedService",
|
1984
2017
|
"name": "EnhancedService",
|
1985
2018
|
"required": false,
|
@@ -1988,7 +2021,7 @@
|
|
1988
2021
|
{
|
1989
2022
|
"disabled": false,
|
1990
2023
|
"document": "用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。",
|
1991
|
-
"example": "
|
2024
|
+
"example": "a521b4e4-c903-4d37-9de6-8906e3ad8eb7",
|
1992
2025
|
"member": "string",
|
1993
2026
|
"name": "ClientToken",
|
1994
2027
|
"required": false,
|
@@ -1997,7 +2030,7 @@
|
|
1997
2030
|
{
|
1998
2031
|
"disabled": false,
|
1999
2032
|
"document": "云服务器的主机名。<br><li>点号(.)和短横线(-)不能作为 HostName 的首尾字符,不能连续使用。</li><li>Windows 实例:名字符长度为[2, 15],允许字母(不限制大小写)、数字和短横线(-)组成,不支持点号(.),不能全是数字。</li><li>其他类型(Linux 等)实例:字符长度为[2, 60],允许支持多个点号,点之间为一段,每段允许字母(不限制大小写)、数字和短横线(-)组成。</li>",
|
2000
|
-
"example": "
|
2033
|
+
"example": "myHost",
|
2001
2034
|
"member": "string",
|
2002
2035
|
"name": "HostName",
|
2003
2036
|
"required": false,
|
@@ -2006,7 +2039,7 @@
|
|
2006
2039
|
{
|
2007
2040
|
"disabled": false,
|
2008
2041
|
"document": "定时任务。通过该参数可以为实例指定定时任务,目前仅支持定时销毁。",
|
2009
|
-
"example": "
|
2042
|
+
"example": "{ \"TimerAction\": \"TerminateInstances\", \"ActionTime\": \"2024-05-29T11:26:40Z\t\" }",
|
2010
2043
|
"member": "ActionTimer",
|
2011
2044
|
"name": "ActionTimer",
|
2012
2045
|
"required": false,
|
@@ -2024,7 +2057,7 @@
|
|
2024
2057
|
{
|
2025
2058
|
"disabled": false,
|
2026
2059
|
"document": "标签描述列表。通过指定该参数可以同时绑定标签到相应的资源实例,当前仅支持绑定标签到云服务器实例。",
|
2027
|
-
"example": "
|
2060
|
+
"example": "[ { \"ResourceType\": \"instance\", \"Tags\": [ { \"Key\": \"myTag\", \"Value\": \"cloud\" } ] } ]",
|
2028
2061
|
"member": "TagSpecification",
|
2029
2062
|
"name": "TagSpecification",
|
2030
2063
|
"required": false,
|
@@ -2033,7 +2066,7 @@
|
|
2033
2066
|
{
|
2034
2067
|
"disabled": false,
|
2035
2068
|
"document": "实例的市场相关选项,如竞价实例相关参数,若指定实例的付费模式为竞价付费则该参数必传。",
|
2036
|
-
"example": "
|
2069
|
+
"example": "{ \"SpotOptions\": { \"MaxPrice\": \"1000\" } }",
|
2037
2070
|
"member": "InstanceMarketOptionsRequest",
|
2038
2071
|
"name": "InstanceMarketOptions",
|
2039
2072
|
"required": false,
|
@@ -2087,7 +2120,7 @@
|
|
2087
2120
|
{
|
2088
2121
|
"disabled": false,
|
2089
2122
|
"document": "预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。",
|
2090
|
-
"example": "
|
2123
|
+
"example": "{ \"Period\": 36, \"RenewFlag\": \"NOTIFY_AND_AUTO_RENEW\" }",
|
2091
2124
|
"member": "InstanceChargePrepaid",
|
2092
2125
|
"name": "InstanceChargePrepaid",
|
2093
2126
|
"required": false,
|
@@ -2133,7 +2166,7 @@
|
|
2133
2166
|
{
|
2134
2167
|
"disabled": false,
|
2135
2168
|
"document": "实例所在的位置。通过该参数可以指定实例所属可用区,所属项目,所属宿主机(在专用宿主机上创建子机时指定)等属性。",
|
2136
|
-
"example": "
|
2169
|
+
"example": "{ \"Zone\": \"ap-guangzhou-6\" }\t",
|
2137
2170
|
"member": "Placement",
|
2138
2171
|
"name": "Placement",
|
2139
2172
|
"required": true,
|
@@ -2142,7 +2175,7 @@
|
|
2142
2175
|
{
|
2143
2176
|
"disabled": false,
|
2144
2177
|
"document": "启动模板ID,新版本将基于该实例启动模板ID创建。",
|
2145
|
-
"example": "
|
2178
|
+
"example": "lt-86v7g7g8",
|
2146
2179
|
"member": "string",
|
2147
2180
|
"name": "LaunchTemplateId",
|
2148
2181
|
"required": true,
|
@@ -2177,7 +2210,7 @@
|
|
2177
2210
|
},
|
2178
2211
|
{
|
2179
2212
|
"disabled": false,
|
2180
|
-
"document": "指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。镜像类型分为四种:<br/><li>公共镜像</li><li>自定义镜像</li><li>共享镜像</li><li
|
2213
|
+
"document": "指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。镜像类型分为四种:<br/><li>公共镜像</li><li>自定义镜像</li><li>共享镜像</li><li>云镜像市场</li><br/>可通过以下方式获取可用的镜像ID:<br/><li>`公共镜像`、`自定义镜像`、`共享镜像`的镜像ID可通过登录[控制台](https://console.cloud.tencent.com/cvm/image?rid=1&imageType=PUBLIC_IMAGE)查询;`云镜像市场`的镜像ID可通过[云市场](https://market.cloud.tencent.com/list)查询。</li><li>通过调用接口 [DescribeImages](https://cloud.tencent.com/document/api/213/15715) ,传入InstanceType获取当前机型支持的镜像列表,取返回信息中的`ImageId`字段。</li>",
|
2181
2214
|
"example": "img-irmer45l",
|
2182
2215
|
"member": "string",
|
2183
2216
|
"name": "ImageId",
|
@@ -2187,7 +2220,7 @@
|
|
2187
2220
|
{
|
2188
2221
|
"disabled": false,
|
2189
2222
|
"document": "实例系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。",
|
2190
|
-
"example": "
|
2223
|
+
"example": "{ \"DiskSize\": 50 }",
|
2191
2224
|
"member": "SystemDisk",
|
2192
2225
|
"name": "SystemDisk",
|
2193
2226
|
"required": false,
|
@@ -2196,7 +2229,7 @@
|
|
2196
2229
|
{
|
2197
2230
|
"disabled": false,
|
2198
2231
|
"document": "实例数据盘配置信息。若不指定该参数,则默认不购买数据盘。支持购买的时候指定21块数据盘,其中最多包含1块LOCAL_BASIC数据盘或者LOCAL_SSD数据盘,最多包含20块CLOUD_BASIC数据盘、CLOUD_PREMIUM数据盘或者CLOUD_SSD数据盘。",
|
2199
|
-
"example": "
|
2232
|
+
"example": "[ { \"DiskSize\": 50, \"DiskType\": \"CLOUD_PREMIUM\" } ]",
|
2200
2233
|
"member": "DataDisk",
|
2201
2234
|
"name": "DataDisks",
|
2202
2235
|
"required": false,
|
@@ -2205,7 +2238,7 @@
|
|
2205
2238
|
{
|
2206
2239
|
"disabled": false,
|
2207
2240
|
"document": "私有网络相关信息配置。通过该参数可以指定私有网络的ID,子网ID等信息。若不指定该参数,则默认使用基础网络。若在此参数中指定了私有网络IP,即表示每个实例的主网卡IP;同时,InstanceCount参数必须与私有网络IP的个数一致且不能大于20。",
|
2208
|
-
"example": "
|
2241
|
+
"example": "{ \"VpcId\": \"vpc-rhfaxx31\", \"SubnetId\": \"subnet-x7vxgqe\" }",
|
2209
2242
|
"member": "VirtualPrivateCloud",
|
2210
2243
|
"name": "VirtualPrivateCloud",
|
2211
2244
|
"required": false,
|
@@ -2214,7 +2247,7 @@
|
|
2214
2247
|
{
|
2215
2248
|
"disabled": false,
|
2216
2249
|
"document": "公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。",
|
2217
|
-
"example": "
|
2250
|
+
"example": "{ \"PublicIpAssigned\": \"false\" }",
|
2218
2251
|
"member": "InternetAccessible",
|
2219
2252
|
"name": "InternetAccessible",
|
2220
2253
|
"required": false,
|
@@ -2241,7 +2274,7 @@
|
|
2241
2274
|
{
|
2242
2275
|
"disabled": false,
|
2243
2276
|
"document": "实例登录设置。通过该参数可以设置实例的登录方式密码、密钥或保持镜像的原始登录设置。默认情况下会随机生成密码,并以站内信方式知会到用户。",
|
2244
|
-
"example": "
|
2277
|
+
"example": "{ \"KeyIds\": [ \"skey-9tzxxb4j\" ] }",
|
2245
2278
|
"member": "LoginSettings",
|
2246
2279
|
"name": "LoginSettings",
|
2247
2280
|
"required": false,
|
@@ -2258,8 +2291,8 @@
|
|
2258
2291
|
},
|
2259
2292
|
{
|
2260
2293
|
"disabled": false,
|
2261
|
-
"document": "
|
2262
|
-
"example": "
|
2294
|
+
"document": "增强服务。通过该参数可以指定是否开启云安全、云监控等服务。若不指定该参数,则默认公共镜像开启云监控、云安全服务;自定义镜像与云镜像市场镜像默认不开启云监控,云安全服务,而使用镜像里保留的服务。",
|
2295
|
+
"example": "{ \"SecurityService\": { \"Enabled\": \"true\" } }",
|
2263
2296
|
"member": "EnhancedService",
|
2264
2297
|
"name": "EnhancedService",
|
2265
2298
|
"required": false,
|
@@ -2268,7 +2301,7 @@
|
|
2268
2301
|
{
|
2269
2302
|
"disabled": false,
|
2270
2303
|
"document": "用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。",
|
2271
|
-
"example": "
|
2304
|
+
"example": "a521b4e4-c903-4d37-9de6-8906e3ad8eb7",
|
2272
2305
|
"member": "string",
|
2273
2306
|
"name": "ClientToken",
|
2274
2307
|
"required": false,
|
@@ -2277,7 +2310,7 @@
|
|
2277
2310
|
{
|
2278
2311
|
"disabled": false,
|
2279
2312
|
"document": "云服务器的主机名。<br><li>点号(.)和短横线(-)不能作为 HostName 的首尾字符,不能连续使用。</li><br><li>Windows 实例:名字符长度为[2, 15],允许字母(不限制大小写)、数字和短横线(-)组成,不支持点号(.),不能全是数字。</li><br><li>其他类型(Linux 等)实例:字符长度为[2, 60],允许支持多个点号,点之间为一段,每段允许字母(不限制大小写)、数字和短横线(-)组成。</li>",
|
2280
|
-
"example": "
|
2313
|
+
"example": "myHost",
|
2281
2314
|
"member": "string",
|
2282
2315
|
"name": "HostName",
|
2283
2316
|
"required": false,
|
@@ -2286,7 +2319,7 @@
|
|
2286
2319
|
{
|
2287
2320
|
"disabled": false,
|
2288
2321
|
"document": "定时任务。通过该参数可以为实例指定定时任务,目前仅支持定时销毁。",
|
2289
|
-
"example": "
|
2322
|
+
"example": "{ \"TimerAction\": \"TerminateInstances\", \"ActionTime\": \"2024-05-29T11:26:40Z\t\" }",
|
2290
2323
|
"member": "ActionTimer",
|
2291
2324
|
"name": "ActionTimer",
|
2292
2325
|
"required": false,
|
@@ -2304,7 +2337,7 @@
|
|
2304
2337
|
{
|
2305
2338
|
"disabled": false,
|
2306
2339
|
"document": "标签描述列表。通过指定该参数可以同时绑定标签到相应的资源实例,当前仅支持绑定标签到云服务器实例。",
|
2307
|
-
"example": "
|
2340
|
+
"example": "[ { \"ResourceType\": \"instance\", \"Tags\": [ { \"Key\": \"myTag\", \"Value\": \"cloud\" } ] } ]",
|
2308
2341
|
"member": "TagSpecification",
|
2309
2342
|
"name": "TagSpecification",
|
2310
2343
|
"required": false,
|
@@ -2313,7 +2346,7 @@
|
|
2313
2346
|
{
|
2314
2347
|
"disabled": false,
|
2315
2348
|
"document": "实例的市场相关选项,如竞价实例相关参数,若指定实例的付费模式为竞价付费则该参数必传。",
|
2316
|
-
"example": "
|
2349
|
+
"example": "{ \"SpotOptions\": { \"MaxPrice\": \"1000\" } }",
|
2317
2350
|
"member": "InstanceMarketOptionsRequest",
|
2318
2351
|
"name": "InstanceMarketOptions",
|
2319
2352
|
"required": false,
|
@@ -2367,7 +2400,7 @@
|
|
2367
2400
|
{
|
2368
2401
|
"disabled": false,
|
2369
2402
|
"document": "预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。",
|
2370
|
-
"example": "
|
2403
|
+
"example": "{ \"Period\": 36, \"RenewFlag\": \"NOTIFY_AND_AUTO_RENEW\" }",
|
2371
2404
|
"member": "InstanceChargePrepaid",
|
2372
2405
|
"name": "InstanceChargePrepaid",
|
2373
2406
|
"required": false,
|
@@ -2745,7 +2778,7 @@
|
|
2745
2778
|
{
|
2746
2779
|
"disabled": false,
|
2747
2780
|
"document": "<li><strong>zone</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>可用区</strong>】进行过滤。可用区形如:ap-guangzhou-1。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p><p style=\"padding-left: 30px;\">可选项:<a href=\"https://cloud.tencent.com/document/product/213/6091\">可用区列表</a></p>\n<li><strong>quota-type</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>配额类型</strong>】进行过滤。配额类型形如:PostPaidQuotaSet。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p><p style=\"padding-left: 30px;\">可选项:PostPaidQuotaSet,DisasterRecoverGroupQuotaSet,PrePaidQuotaSet,SpotPaidQuotaSet</p>",
|
2748
|
-
"example": "
|
2781
|
+
"example": "[ { \"Name\": \"quota-type\", \"Values\": [ \"PrePaidQuotaSet\" ] } ]",
|
2749
2782
|
"member": "Filter",
|
2750
2783
|
"name": "Filters",
|
2751
2784
|
"required": false,
|
@@ -2763,15 +2796,17 @@
|
|
2763
2796
|
"example": "1251783334",
|
2764
2797
|
"member": "uint64",
|
2765
2798
|
"name": "AppId",
|
2799
|
+
"output_required": true,
|
2766
2800
|
"type": "int",
|
2767
2801
|
"value_allowed_null": false
|
2768
2802
|
},
|
2769
2803
|
{
|
2770
2804
|
"disabled": false,
|
2771
2805
|
"document": "配额数据",
|
2772
|
-
"example": "
|
2806
|
+
"example": "{ \"PrePaidQuotaSet\": [ { \"TotalQuota\": 300, \"UsedQuota\": 5, \"RemainingQuota\": 295, \"OnceQuota\": 500, \"Zone\": \"ap-shanghai-5\" } ], \"PostPaidQuotaSet\": [ { \"TotalQuota\": 300, \"UsedQuota\": 5, \"RemainingQuota\": 295, \"Zone\": \"ap-shanghai-5\" } ] }",
|
2773
2807
|
"member": "AccountQuotaOverview",
|
2774
2808
|
"name": "AccountQuotaOverview",
|
2809
|
+
"output_required": true,
|
2775
2810
|
"type": "object",
|
2776
2811
|
"value_allowed_null": false
|
2777
2812
|
},
|
@@ -2805,10 +2840,10 @@
|
|
2805
2840
|
{
|
2806
2841
|
"disabled": false,
|
2807
2842
|
"document": "CHC实例禁止操作信息",
|
2808
|
-
"example": "
|
2843
|
+
"example": "[ { \"ChcId\": \"chc-1a2b3c4d\", \"DenyActions\": [ \"ConfigureChcAssistVpc\", \"RunInstances\" ], \"State\": \"INIT\" }, { \"ChcId\": \"chc-adf34aft\", \"DenyActions\": [ \"ConfigureChcAssistVpc\", \"RunInstances\" ], \"State\": \"INIT\" } ]",
|
2809
2844
|
"member": "ChcHostDeniedActions",
|
2810
2845
|
"name": "ChcHostDeniedActionSet",
|
2811
|
-
"
|
2846
|
+
"output_required": true,
|
2812
2847
|
"type": "list",
|
2813
2848
|
"value_allowed_null": false
|
2814
2849
|
},
|
@@ -3003,7 +3038,7 @@
|
|
3003
3038
|
{
|
3004
3039
|
"disabled": false,
|
3005
3040
|
"document": "分散置放群组信息列表。",
|
3006
|
-
"example": "
|
3041
|
+
"example": "[ { \"DisasterRecoverGroupId\": \"ps-21q9ibvr\", \"Name\": \"数据库业务\", \"Type\": \"RACK\", \"CvmQuotaTotal\": 30, \"CurrentNum\": 0, \"InstanceIds\": [], \"CreateTime\": \"2018-04-19T02:47:12Z\" } ]",
|
3007
3042
|
"member": "DisasterRecoverGroup",
|
3008
3043
|
"name": "DisasterRecoverGroupSet",
|
3009
3044
|
"output_required": true,
|
@@ -3034,8 +3069,8 @@
|
|
3034
3069
|
"members": [
|
3035
3070
|
{
|
3036
3071
|
"disabled": false,
|
3037
|
-
"document": "<li><strong>zone</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>可用区</strong>】进行过滤。可用区形如:ap-guangzhou-1。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p><p style=\"padding-left: 30px;\">可选项:<a href=\"https://cloud.tencent.com/document/product/213/6091\">可用区列表</a></p>\n<li><strong>project-id</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>项目ID</strong>】进行过滤,可通过调用[DescribeProject](https://cloud.tencent.com/document/api/
|
3038
|
-
"example": "
|
3072
|
+
"document": "<li><strong>zone</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>可用区</strong>】进行过滤。可用区形如:ap-guangzhou-1。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p><p style=\"padding-left: 30px;\">可选项:<a href=\"https://cloud.tencent.com/document/product/213/6091\">可用区列表</a></p>\n<li><strong>project-id</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>项目ID</strong>】进行过滤,可通过调用[DescribeProject](https://cloud.tencent.com/document/api/651/78725)查询已创建的项目列表或登录[控制台](https://console.cloud.tencent.com/cvm/index)进行查看;也可以调用[AddProject](https://cloud.tencent.com/document/api/651/81952)创建新的项目。项目ID形如:1002189。</p><p style=\"padding-left: 30px;\">类型:Integer</p><p style=\"padding-left: 30px;\">必选:否</p>\n<li><strong>host-id</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>[CDH](https://cloud.tencent.com/document/product/416) ID</strong>】进行过滤。[CDH](https://cloud.tencent.com/document/product/416) ID形如:host-xxxxxxxx。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p>\n<li><strong>host-name</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>CDH实例名称</strong>】进行过滤。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p>\n<li><strong>host-state</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>CDH实例状态</strong>】进行过滤。(PENDING:创建中 | LAUNCH_FAILURE:创建失败 | RUNNING:运行中 | EXPIRED:已过期)</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p>\n<li><strong>host-type</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>CDH机型</strong>】进行过滤。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p>\n<li><strong>tag-key</strong></li> <p style=\"padding-left: 30px;\">按照【<strong>标签键</strong>】进行过滤。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p> <li><strong>tag-value</strong></li> <p style=\"padding-left: 30px;\">按照【<strong>标签值</strong>】进行过滤。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p> <li><strong>tag:tag-key</strong></li> <p style=\"padding-left: 30px;\">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。使用请参考示例。</p>\n每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。",
|
3073
|
+
"example": "[ { \"Name\": \"tag-key\", \"Values\": [ \"myTag\" ] } ]",
|
3039
3074
|
"member": "Filter",
|
3040
3075
|
"name": "Filters",
|
3041
3076
|
"required": false,
|
@@ -3071,17 +3106,17 @@
|
|
3071
3106
|
"example": "1",
|
3072
3107
|
"member": "uint64",
|
3073
3108
|
"name": "TotalCount",
|
3074
|
-
"
|
3109
|
+
"output_required": true,
|
3075
3110
|
"type": "int",
|
3076
3111
|
"value_allowed_null": false
|
3077
3112
|
},
|
3078
3113
|
{
|
3079
3114
|
"disabled": false,
|
3080
3115
|
"document": "cdh实例详细信息列表",
|
3081
|
-
"example": "
|
3116
|
+
"example": "[ { \"Placement\": { \"Zone\": \"ap-guangzhou-5\", \"ProjectId\": 0 }, \"HostId\": \"host-8th3ybbw\", \"HostType\": \"HM50\", \"HostName\": \"myHost\", \"CageId\": \"\", \"HostChargeType\": \"PREPAID\", \"RenewFlag\": \"NOTIFY_AND_AUTO_RENEW\", \"CreatedTime\": \"2024-09-30T03:17:49Z\", \"ExpiredTime\": \"2024-11-30T03:17:51Z\", \"InstanceIds\": [ \"ins-flx4u4ck\", \"ins-p5s3wcq2\" ], \"HostState\": \"RUNNING\", \"Tags\": [], \"HostResource\": { \"CpuTotal\": 336, \"CpuAvailable\": 18, \"MemTotal\": 700, \"MemAvailable\": 40, \"DiskTotal\": 0, \"DiskAvailable\": 0, \"DiskType\": \"\", \"GpuTotal\": 0, \"GpuAvailable\": 0 } } ]",
|
3082
3117
|
"member": "HostItem",
|
3083
3118
|
"name": "HostSet",
|
3084
|
-
"
|
3119
|
+
"output_required": true,
|
3085
3120
|
"type": "list",
|
3086
3121
|
"value_allowed_null": false
|
3087
3122
|
},
|
@@ -3216,7 +3251,7 @@
|
|
3216
3251
|
{
|
3217
3252
|
"disabled": false,
|
3218
3253
|
"document": "镜像信息,没有可用镜像是返回为空\n注意:此字段可能返回 null,表示取不到有效值。",
|
3219
|
-
"example": "
|
3254
|
+
"example": "{ \"ImageId\": \"img-3s7ggx0j\", \"OsName\": \"Ubuntu Server 20.04 LTS 64bit\", \"ImageType\": \"PRIVATE_IMAGE\", \"CreatedTime\": \"2024-11-13T16:24:26Z\", \"ImageName\": \"test-image-1\", \"ImageDescription\": \"\", \"ImageSize\": 50, \"Architecture\": \"x86_64\", \"ImageState\": \"NORMAL\", \"Platform\": \"Ubuntu\", \"ImageCreator\": \"200038031997\", \"ImageSource\": \"CREATE_IMAGE\", \"SyncPercent\": null, \"IsSupportCloudinit\": true, \"SnapshotSet\": [ { \"SnapshotId\": \"snap-4lp2php6\", \"DiskUsage\": \"SYSTEM_DISK\", \"DiskSize\": 50 } ], \"ImageFamily\": \"test-family\", \"ImageDeprecated\": false, \"Tags\": [], \"LicenseType\": \"TencentCloud\" }",
|
3220
3255
|
"member": "Image",
|
3221
3256
|
"name": "Image",
|
3222
3257
|
"output_required": false,
|
@@ -3280,10 +3315,10 @@
|
|
3280
3315
|
{
|
3281
3316
|
"disabled": false,
|
3282
3317
|
"document": "镜像共享信息",
|
3283
|
-
"example": "
|
3318
|
+
"example": "[ { \"CreatedTime\": \"2018-06-10T11:02:50Z\", \"AccountId\": \"101104350000\" } ]",
|
3284
3319
|
"member": "SharePermission",
|
3285
3320
|
"name": "SharePermissionSet",
|
3286
|
-
"
|
3321
|
+
"output_required": true,
|
3287
3322
|
"type": "list",
|
3288
3323
|
"value_allowed_null": false
|
3289
3324
|
},
|
@@ -3461,7 +3496,7 @@
|
|
3461
3496
|
{
|
3462
3497
|
"disabled": false,
|
3463
3498
|
"document": "带宽配置信息列表。",
|
3464
|
-
"example": "
|
3499
|
+
"example": "[ { \"StartTime\": \"2017-03-12T16:00:00Z\", \"EndTime\": \"2017-04-12T16:00:00Z\", \"InternetAccessible\": { \"InternetMaxBandwidthOut\": 50, \"InternetChargeType\": \"BANDWIDTH_PREPAID\" } } ]",
|
3465
3500
|
"member": "InternetBandwidthConfig",
|
3466
3501
|
"name": "InternetBandwidthConfigSet",
|
3467
3502
|
"output_required": true,
|
@@ -3557,7 +3592,7 @@
|
|
3557
3592
|
{
|
3558
3593
|
"disabled": false,
|
3559
3594
|
"document": "定时任务ID列表。",
|
3560
|
-
"example": "
|
3595
|
+
"example": "59337876-b254-4c21-847f-7d57d840d227",
|
3561
3596
|
"member": "string",
|
3562
3597
|
"name": "ActionTimerIds",
|
3563
3598
|
"required": false,
|
@@ -3566,7 +3601,7 @@
|
|
3566
3601
|
{
|
3567
3602
|
"disabled": false,
|
3568
3603
|
"document": "按照一个或者多个实例ID查询。",
|
3569
|
-
"example": "[\"ins-37qv3ucj
|
3604
|
+
"example": "[\"ins-37qv3ucj\"]",
|
3570
3605
|
"member": "string",
|
3571
3606
|
"name": "InstanceIds",
|
3572
3607
|
"required": false,
|
@@ -3574,8 +3609,8 @@
|
|
3574
3609
|
},
|
3575
3610
|
{
|
3576
3611
|
"disabled": false,
|
3577
|
-
"document": "
|
3578
|
-
"example": "
|
3612
|
+
"document": "定时器动作,目前仅支持销毁一个值:TerminateInstances。",
|
3613
|
+
"example": "TerminateInstances",
|
3579
3614
|
"member": "string",
|
3580
3615
|
"name": "TimerAction",
|
3581
3616
|
"required": false,
|
@@ -3584,7 +3619,7 @@
|
|
3584
3619
|
{
|
3585
3620
|
"disabled": false,
|
3586
3621
|
"document": "执行时间的结束范围,用于条件筛选,格式如2018-05-01 19:00:00。",
|
3587
|
-
"example": "
|
3622
|
+
"example": "2024-11-06T08:00:32Z",
|
3588
3623
|
"member": "string",
|
3589
3624
|
"name": "EndActionTime",
|
3590
3625
|
"required": false,
|
@@ -3593,7 +3628,7 @@
|
|
3593
3628
|
{
|
3594
3629
|
"disabled": false,
|
3595
3630
|
"document": "执行时间的开始范围,用于条件筛选,格式如2018-05-01 19:00:00。",
|
3596
|
-
"example": "
|
3631
|
+
"example": "2024-11-06T08:00:32Z",
|
3597
3632
|
"member": "string",
|
3598
3633
|
"name": "StartActionTime",
|
3599
3634
|
"required": false,
|
@@ -3601,8 +3636,8 @@
|
|
3601
3636
|
},
|
3602
3637
|
{
|
3603
3638
|
"disabled": false,
|
3604
|
-
"document": "定时任务状态列表。<br><li>UNDO
|
3605
|
-
"example": "
|
3639
|
+
"document": "定时任务状态列表。<br><li>UNDO:未执行</li> <br><li>DOING:正在执行</li><br><li>DONE:执行完成。</li>",
|
3640
|
+
"example": "UNDO",
|
3606
3641
|
"member": "string",
|
3607
3642
|
"name": "StatusList",
|
3608
3643
|
"required": false,
|
@@ -3620,7 +3655,7 @@
|
|
3620
3655
|
"example": "无",
|
3621
3656
|
"member": "ActionTimer",
|
3622
3657
|
"name": "ActionTimers",
|
3623
|
-
"
|
3658
|
+
"output_required": true,
|
3624
3659
|
"type": "list",
|
3625
3660
|
"value_allowed_null": false
|
3626
3661
|
},
|
@@ -3719,7 +3754,7 @@
|
|
3719
3754
|
{
|
3720
3755
|
"disabled": false,
|
3721
3756
|
"document": "该参数表示调整配置操作(降配)限制次数查询。",
|
3722
|
-
"example": "
|
3757
|
+
"example": "[ { \"Operation\": \"INSTANCE_DEGRADE\", \"InstanceId\": \"ins-r8hr2upy\", \"CurrentCount\": 0, \"LimitCount\": 5 } ]",
|
3723
3758
|
"member": "OperationCountLimit",
|
3724
3759
|
"name": "InstanceOperationLimitSet",
|
3725
3760
|
"output_required": true,
|
@@ -3815,7 +3850,7 @@
|
|
3815
3850
|
{
|
3816
3851
|
"disabled": false,
|
3817
3852
|
"document": "按照一个或者多个实例ID查询。实例ID形如:`ins-11112222`。此参数的具体格式可参考API[简介](https://cloud.tencent.com/document/api/213/15688)的`ids.N`一节)。每次请求的实例的上限为100。",
|
3818
|
-
"example": "[\"ins-r8hr2upy
|
3853
|
+
"example": "[\"ins-r8hr2upy\",\"ins-5d8a23rs\"]",
|
3819
3854
|
"member": "string",
|
3820
3855
|
"name": "InstanceIds",
|
3821
3856
|
"required": false,
|
@@ -3851,15 +3886,17 @@
|
|
3851
3886
|
"example": "2",
|
3852
3887
|
"member": "int64",
|
3853
3888
|
"name": "TotalCount",
|
3889
|
+
"output_required": true,
|
3854
3890
|
"type": "int",
|
3855
3891
|
"value_allowed_null": false
|
3856
3892
|
},
|
3857
3893
|
{
|
3858
3894
|
"disabled": false,
|
3859
3895
|
"document": "[实例状态](https://cloud.tencent.com/document/api/213/15753#InstanceStatus) 列表。",
|
3860
|
-
"example": "
|
3896
|
+
"example": "[ { \"InstanceId\": \"ins-r8hr2upy\", \"InstanceState\": \"RUNNING\" } ]",
|
3861
3897
|
"member": "InstanceStatus",
|
3862
3898
|
"name": "InstanceStatusSet",
|
3899
|
+
"output_required": true,
|
3863
3900
|
"type": "list",
|
3864
3901
|
"value_allowed_null": false
|
3865
3902
|
},
|
@@ -5144,7 +5181,7 @@
|
|
5144
5181
|
{
|
5145
5182
|
"disabled": false,
|
5146
5183
|
"document": "专用宿主机实例所在的位置。通过该参数可以指定实例所属可用区,所属项目等属性。",
|
5147
|
-
"example": "
|
5184
|
+
"example": "{ \"Zone\": \"ap-guangzhou-4\", \"ProjectId\": 0 }",
|
5148
5185
|
"member": "Placement",
|
5149
5186
|
"name": "Placement",
|
5150
5187
|
"output_required": true,
|
@@ -5154,7 +5191,7 @@
|
|
5154
5191
|
{
|
5155
5192
|
"disabled": false,
|
5156
5193
|
"document": "专用宿主机实例ID",
|
5157
|
-
"example": "
|
5194
|
+
"example": "host-6154dm9w",
|
5158
5195
|
"member": "string",
|
5159
5196
|
"name": "HostId",
|
5160
5197
|
"output_required": true,
|
@@ -5164,7 +5201,7 @@
|
|
5164
5201
|
{
|
5165
5202
|
"disabled": false,
|
5166
5203
|
"document": "专用宿主机实例类型",
|
5167
|
-
"example": "
|
5204
|
+
"example": "HS50",
|
5168
5205
|
"member": "string",
|
5169
5206
|
"name": "HostType",
|
5170
5207
|
"output_required": true,
|
@@ -5174,7 +5211,7 @@
|
|
5174
5211
|
{
|
5175
5212
|
"disabled": false,
|
5176
5213
|
"document": "专用宿主机实例名称",
|
5177
|
-
"example": "
|
5214
|
+
"example": "myHost",
|
5178
5215
|
"member": "string",
|
5179
5216
|
"name": "HostName",
|
5180
5217
|
"output_required": true,
|
@@ -5184,7 +5221,7 @@
|
|
5184
5221
|
{
|
5185
5222
|
"disabled": false,
|
5186
5223
|
"document": "专用宿主机实例付费模式",
|
5187
|
-
"example": "
|
5224
|
+
"example": "PREPAID",
|
5188
5225
|
"member": "string",
|
5189
5226
|
"name": "HostChargeType",
|
5190
5227
|
"output_required": true,
|
@@ -5194,7 +5231,7 @@
|
|
5194
5231
|
{
|
5195
5232
|
"disabled": false,
|
5196
5233
|
"document": "专用宿主机实例自动续费标记",
|
5197
|
-
"example": "
|
5234
|
+
"example": "NOTIFY_AND_AUTO_RENEW",
|
5198
5235
|
"member": "string",
|
5199
5236
|
"name": "RenewFlag",
|
5200
5237
|
"output_required": true,
|
@@ -5204,7 +5241,7 @@
|
|
5204
5241
|
{
|
5205
5242
|
"disabled": false,
|
5206
5243
|
"document": "专用宿主机实例创建时间",
|
5207
|
-
"example": "
|
5244
|
+
"example": "2024-11-03T09:47:00Z",
|
5208
5245
|
"member": "datetime_iso",
|
5209
5246
|
"name": "CreatedTime",
|
5210
5247
|
"output_required": true,
|
@@ -5214,7 +5251,7 @@
|
|
5214
5251
|
{
|
5215
5252
|
"disabled": false,
|
5216
5253
|
"document": "专用宿主机实例过期时间",
|
5217
|
-
"example": "
|
5254
|
+
"example": "2024-12-03T09:47:00Z",
|
5218
5255
|
"member": "datetime_iso",
|
5219
5256
|
"name": "ExpiredTime",
|
5220
5257
|
"output_required": true,
|
@@ -5224,7 +5261,7 @@
|
|
5224
5261
|
{
|
5225
5262
|
"disabled": false,
|
5226
5263
|
"document": "专用宿主机实例上已创建云子机的实例id列表",
|
5227
|
-
"example": "
|
5264
|
+
"example": "ins-bv6i4xxx",
|
5228
5265
|
"member": "string",
|
5229
5266
|
"name": "InstanceIds",
|
5230
5267
|
"output_required": true,
|
@@ -5234,7 +5271,7 @@
|
|
5234
5271
|
{
|
5235
5272
|
"disabled": false,
|
5236
5273
|
"document": "专用宿主机实例状态",
|
5237
|
-
"example": "
|
5274
|
+
"example": "RUNNING",
|
5238
5275
|
"member": "string",
|
5239
5276
|
"name": "HostState",
|
5240
5277
|
"output_required": true,
|
@@ -5244,17 +5281,17 @@
|
|
5244
5281
|
{
|
5245
5282
|
"disabled": false,
|
5246
5283
|
"document": "专用宿主机实例IP",
|
5247
|
-
"example": "
|
5284
|
+
"example": "10.0.0.6",
|
5248
5285
|
"member": "string",
|
5249
5286
|
"name": "HostIp",
|
5250
|
-
"output_required":
|
5287
|
+
"output_required": false,
|
5251
5288
|
"type": "string",
|
5252
5289
|
"value_allowed_null": false
|
5253
5290
|
},
|
5254
5291
|
{
|
5255
5292
|
"disabled": false,
|
5256
5293
|
"document": "专用宿主机实例资源信息",
|
5257
|
-
"example": "
|
5294
|
+
"example": "{ \"CpuTotal\": 126, \"CpuAvailable\": 24, \"MemTotal\": 320, \"MemAvailable\": 77, \"DiskTotal\": 0, \"DiskAvailable\": 0, \"DiskType\": \"\", \"GpuTotal\": 0, \"GpuAvailable\": 0 }",
|
5258
5295
|
"member": "HostResource",
|
5259
5296
|
"name": "HostResource",
|
5260
5297
|
"output_required": true,
|
@@ -5264,7 +5301,7 @@
|
|
5264
5301
|
{
|
5265
5302
|
"disabled": false,
|
5266
5303
|
"document": "专用宿主机所属的围笼ID。该字段仅对金融专区围笼内的专用宿主机有效。\n注意:此字段可能返回 null,表示取不到有效值。",
|
5267
|
-
"example": "
|
5304
|
+
"example": "cage-gz-1-2",
|
5268
5305
|
"member": "string",
|
5269
5306
|
"name": "CageId",
|
5270
5307
|
"output_required": true,
|
@@ -5274,7 +5311,7 @@
|
|
5274
5311
|
{
|
5275
5312
|
"disabled": false,
|
5276
5313
|
"document": "专用宿主机关联的标签列表。\n注意:此字段可能返回 null,表示取不到有效值。",
|
5277
|
-
"example": "
|
5314
|
+
"example": "[ { \"ResourceType\": \"cdh\", \"Tags\": [ { \"Key\": \"myTag\", \"Value\": \"cloud\" } ] } ]",
|
5278
5315
|
"member": "Tag",
|
5279
5316
|
"name": "Tags",
|
5280
5317
|
"output_required": true,
|
@@ -5760,6 +5797,21 @@
|
|
5760
5797
|
],
|
5761
5798
|
"usage": "out"
|
5762
5799
|
},
|
5800
|
+
"ImportImageDataDisk": {
|
5801
|
+
"document": "导入镜像的数据盘信息",
|
5802
|
+
"members": [
|
5803
|
+
{
|
5804
|
+
"disabled": false,
|
5805
|
+
"document": "数据盘镜像 COS 链接",
|
5806
|
+
"example": "https://import-img.cos.ap-guangzhou.myqcloud.com/import-img.vpc",
|
5807
|
+
"member": "string",
|
5808
|
+
"name": "ImageUrl",
|
5809
|
+
"required": true,
|
5810
|
+
"type": "string"
|
5811
|
+
}
|
5812
|
+
],
|
5813
|
+
"usage": "in"
|
5814
|
+
},
|
5763
5815
|
"ImportImageRequest": {
|
5764
5816
|
"document": "ImportImage请求参数结构体",
|
5765
5817
|
"members": [
|
@@ -5870,6 +5922,15 @@
|
|
5870
5922
|
"name": "ImageFamily",
|
5871
5923
|
"required": false,
|
5872
5924
|
"type": "string"
|
5925
|
+
},
|
5926
|
+
{
|
5927
|
+
"disabled": false,
|
5928
|
+
"document": "导入的数据盘列表",
|
5929
|
+
"example": "[]",
|
5930
|
+
"member": "ImportImageDataDisk",
|
5931
|
+
"name": "ImportImageDataDiskList",
|
5932
|
+
"required": false,
|
5933
|
+
"type": "list"
|
5873
5934
|
}
|
5874
5935
|
],
|
5875
5936
|
"type": "object"
|
@@ -7786,7 +7847,7 @@
|
|
7786
7847
|
{
|
7787
7848
|
"disabled": false,
|
7788
7849
|
"document": "后续计价单元,后付费模式使用,可取值范围: <br><li>HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:实例按小时后付费(POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR):</li><li>GB:表示计价单元是按每GB来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)。</li>\n注意:此字段可能返回 null,表示取不到有效值。",
|
7789
|
-
"example": "
|
7850
|
+
"example": "HOUR",
|
7790
7851
|
"member": "string",
|
7791
7852
|
"name": "ChargeUnit",
|
7792
7853
|
"output_required": false,
|
@@ -8547,14 +8608,14 @@
|
|
8547
8608
|
"members": [
|
8548
8609
|
{
|
8549
8610
|
"disabled": false,
|
8550
|
-
"document": "实例登录密码。不同操作系统类型密码复杂度限制不一样,具体如下:<li>Linux实例密码必须8到30位,至少包括两项[a-z],[A-Z]、[0-9] 和 [( ) \\` ~ ! @ # $ % ^ & * - + = | { } [ ] : ; ' , . ? / ]中的特殊符号。</li><li>Windows实例密码必须12到30位,至少包括三项[a-z],[A-Z],[0-9] 和 [( ) \\` ~ ! @ # $ % ^ & * - + = | { } [ ] : ; ' , . ? /]中的特殊符号。</li
|
8551
|
-
"example": "
|
8611
|
+
"document": "实例登录密码。不同操作系统类型密码复杂度限制不一样,具体如下:<li>Linux实例密码必须8到30位,至少包括两项[a-z],[A-Z]、[0-9] 和 [( ) \\` ~ ! @ # $ % ^ & * - + = | { } [ ] : ; ' , . ? / ]中的特殊符号。</li><li>Windows实例密码必须12到30位,至少包括三项[a-z],[A-Z],[0-9] 和 [( ) \\` ~ ! @ # $ % ^ & * - + = | { } [ ] : ; ' , . ? /]中的特殊符号。</li>若不指定该参数,则由系统随机生成密码,并通过站内信方式通知到用户。",
|
8612
|
+
"example": "123456@ABC",
|
8552
8613
|
"member": "string",
|
8553
8614
|
"name": "Password",
|
8554
|
-
"output_required":
|
8615
|
+
"output_required": false,
|
8555
8616
|
"required": false,
|
8556
8617
|
"type": "string",
|
8557
|
-
"value_allowed_null":
|
8618
|
+
"value_allowed_null": false
|
8558
8619
|
},
|
8559
8620
|
{
|
8560
8621
|
"disabled": false,
|
@@ -8562,7 +8623,7 @@
|
|
8562
8623
|
"example": "[\"skey-3glfot13\"]",
|
8563
8624
|
"member": "string",
|
8564
8625
|
"name": "KeyIds",
|
8565
|
-
"output_required":
|
8626
|
+
"output_required": false,
|
8566
8627
|
"required": false,
|
8567
8628
|
"type": "list",
|
8568
8629
|
"value_allowed_null": true
|
@@ -8573,7 +8634,7 @@
|
|
8573
8634
|
"example": "abc",
|
8574
8635
|
"member": "string",
|
8575
8636
|
"name": "KeepImageLogin",
|
8576
|
-
"output_required":
|
8637
|
+
"output_required": false,
|
8577
8638
|
"required": false,
|
8578
8639
|
"type": "string",
|
8579
8640
|
"value_allowed_null": true
|
@@ -9389,7 +9450,7 @@
|
|
9389
9450
|
{
|
9390
9451
|
"disabled": false,
|
9391
9452
|
"document": "实例所属的可用区名称。该参数可以通过调用 [DescribeZones](https://cloud.tencent.com/document/product/213/15707) 的返回值中的Zone字段来获取。",
|
9392
|
-
"example": "
|
9453
|
+
"example": "ap-guangzhou-4",
|
9393
9454
|
"member": "string",
|
9394
9455
|
"name": "Zone",
|
9395
9456
|
"output_required": true,
|
@@ -9400,7 +9461,7 @@
|
|
9400
9461
|
{
|
9401
9462
|
"disabled": false,
|
9402
9463
|
"document": "实例所属项目ID。该参数可以通过调用 [DescribeProject](https://cloud.tencent.com/document/api/651/78725) 的返回值中的 projectId 字段来获取。不填为默认项目。",
|
9403
|
-
"example": "
|
9464
|
+
"example": "0",
|
9404
9465
|
"member": "int64",
|
9405
9466
|
"name": "ProjectId",
|
9406
9467
|
"output_required": true,
|
@@ -9414,7 +9475,7 @@
|
|
9414
9475
|
"example": "[\"host-o5i742go\"]",
|
9415
9476
|
"member": "string",
|
9416
9477
|
"name": "HostIds",
|
9417
|
-
"output_required":
|
9478
|
+
"output_required": false,
|
9418
9479
|
"required": false,
|
9419
9480
|
"type": "list",
|
9420
9481
|
"value_allowed_null": false
|
@@ -9425,7 +9486,7 @@
|
|
9425
9486
|
"example": "host-o5i742go",
|
9426
9487
|
"member": "string",
|
9427
9488
|
"name": "HostId",
|
9428
|
-
"output_required":
|
9489
|
+
"output_required": false,
|
9429
9490
|
"required": false,
|
9430
9491
|
"type": "string",
|
9431
9492
|
"value_allowed_null": false
|
@@ -11826,6 +11887,24 @@
|
|
11826
11887
|
"name": "ImageSetRequired",
|
11827
11888
|
"required": false,
|
11828
11889
|
"type": "bool"
|
11890
|
+
},
|
11891
|
+
{
|
11892
|
+
"disabled": false,
|
11893
|
+
"document": "是否复制为加密自定义镜像。\n默认值为 false。\n复制加密自定义镜像仅支持同地域。",
|
11894
|
+
"example": "false",
|
11895
|
+
"member": "bool",
|
11896
|
+
"name": "Encrypt",
|
11897
|
+
"required": false,
|
11898
|
+
"type": "bool"
|
11899
|
+
},
|
11900
|
+
{
|
11901
|
+
"disabled": false,
|
11902
|
+
"document": "加密自定义镜像使用的 KMS 密钥 ID。\n仅当复制加密镜像时,即 Encrypt 为 true 时,此参数有效;\n不指定 KmsKeyId,默认使用 CBS 云产品 KMS 密钥。",
|
11903
|
+
"example": "2bb53791-c2e9-4c42-8772-ecf135a1d92x",
|
11904
|
+
"member": "string",
|
11905
|
+
"name": "KmsKeyId",
|
11906
|
+
"required": false,
|
11907
|
+
"type": "string"
|
11829
11908
|
}
|
11830
11909
|
],
|
11831
11910
|
"type": "object"
|
@@ -11857,7 +11936,7 @@
|
|
11857
11936
|
"members": [
|
11858
11937
|
{
|
11859
11938
|
"disabled": false,
|
11860
|
-
"document": "系统盘类型。系统盘类型限制详见[存储概述](https://cloud.tencent.com/document/product/213/4952)。取值范围:<br
|
11939
|
+
"document": "系统盘类型。系统盘类型限制详见[存储概述](https://cloud.tencent.com/document/product/213/4952)。取值范围:<br>\n<li>LOCAL_BASIC:本地硬盘</li>\n<li>LOCAL_SSD:本地SSD硬盘</li>\n<li>CLOUD_BASIC:普通云硬盘</li>\n<li>CLOUD_SSD:SSD云硬盘</li>\n<li>CLOUD_PREMIUM:高性能云硬盘</li>\n<li>CLOUD_BSSD:通用性SSD云硬盘</li>\n<li>CLOUD_HSSD:增强型SSD云硬盘</li>\n<li>CLOUD_TSSD:极速型SSD云硬盘</li><br>\n默认取值:当前有库存的硬盘类型。",
|
11861
11940
|
"example": "无",
|
11862
11941
|
"member": "string",
|
11863
11942
|
"name": "DiskType",
|
@@ -11894,7 +11973,7 @@
|
|
11894
11973
|
"example": "无",
|
11895
11974
|
"member": "string",
|
11896
11975
|
"name": "CdcId",
|
11897
|
-
"output_required":
|
11976
|
+
"output_required": false,
|
11898
11977
|
"required": false,
|
11899
11978
|
"type": "string",
|
11900
11979
|
"value_allowed_null": true
|