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
@@ -369,7 +369,7 @@
|
|
369
369
|
{
|
370
370
|
"disabled": false,
|
371
371
|
"document": "命令执行路径。",
|
372
|
-
"example": "/",
|
372
|
+
"example": "/root",
|
373
373
|
"member": "string",
|
374
374
|
"name": "WorkingDirectory",
|
375
375
|
"output_required": true,
|
@@ -419,7 +419,7 @@
|
|
419
419
|
{
|
420
420
|
"disabled": false,
|
421
421
|
"document": "自定义参数的默认取值。",
|
422
|
-
"example": "{
|
422
|
+
"example": "{\"varA\": \"222\"}",
|
423
423
|
"member": "string",
|
424
424
|
"name": "DefaultParameters",
|
425
425
|
"output_required": true,
|
@@ -428,23 +428,23 @@
|
|
428
428
|
},
|
429
429
|
{
|
430
430
|
"disabled": false,
|
431
|
-
"document": "
|
431
|
+
"document": "自定义参数的默认取值。",
|
432
432
|
"example": "[ { \"name\": \"test01\", \"value\": \"12345\", \"description\": \"for test01\" }, { \"name\": \"test02\", \"value\": \"12345\", \"description\": \"for test02\" } ]",
|
433
433
|
"member": "DefaultParameterConf",
|
434
434
|
"name": "DefaultParameterConfs",
|
435
435
|
"output_required": false,
|
436
436
|
"type": "list",
|
437
|
-
"value_allowed_null":
|
437
|
+
"value_allowed_null": false
|
438
438
|
},
|
439
439
|
{
|
440
440
|
"disabled": false,
|
441
|
-
"document": "
|
441
|
+
"document": "命令关联的场景",
|
442
442
|
"example": "[\"sc-12345678\"]",
|
443
443
|
"member": "string",
|
444
444
|
"name": "Scenes",
|
445
445
|
"output_required": false,
|
446
446
|
"type": "list",
|
447
|
-
"value_allowed_null":
|
447
|
+
"value_allowed_null": false
|
448
448
|
},
|
449
449
|
{
|
450
450
|
"disabled": false,
|
@@ -469,7 +469,7 @@
|
|
469
469
|
{
|
470
470
|
"disabled": false,
|
471
471
|
"document": "命令关联的标签列表。",
|
472
|
-
"example": "
|
472
|
+
"example": "[]",
|
473
473
|
"member": "Tag",
|
474
474
|
"name": "Tags",
|
475
475
|
"output_required": true,
|
@@ -654,7 +654,7 @@
|
|
654
654
|
{
|
655
655
|
"disabled": false,
|
656
656
|
"document": "启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\\\"varA\\\": \\\"222\\\"}。\nkey为自定义参数名称,value为该参数的默认取值。kv均为字符串型。\n如果InvokeCommand时未提供参数取值,将使用这里的默认值进行替换。\n自定义参数最多20个。\n自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。",
|
657
|
-
"example": "{
|
657
|
+
"example": "{\"varA\": \"222\"}",
|
658
658
|
"member": "string",
|
659
659
|
"name": "DefaultParameters",
|
660
660
|
"required": false,
|
@@ -790,7 +790,7 @@
|
|
790
790
|
{
|
791
791
|
"disabled": false,
|
792
792
|
"document": "周期执行器设置,当创建周期执行器时,必须指定此参数。",
|
793
|
-
"example": "
|
793
|
+
"example": "{ \"Policy\":\"ONCE\", \"InvokeTime\":\"2021-09-01T00:00:00+08:00\" }",
|
794
794
|
"member": "ScheduleSettings",
|
795
795
|
"name": "ScheduleSettings",
|
796
796
|
"required": false,
|
@@ -808,7 +808,7 @@
|
|
808
808
|
"example": "ivk-b7s3qa5l",
|
809
809
|
"member": "string",
|
810
810
|
"name": "InvokerId",
|
811
|
-
"
|
811
|
+
"output_required": true,
|
812
812
|
"type": "string",
|
813
813
|
"value_allowed_null": false
|
814
814
|
},
|
@@ -909,36 +909,36 @@
|
|
909
909
|
"members": [
|
910
910
|
{
|
911
911
|
"disabled": false,
|
912
|
-
"document": "
|
912
|
+
"document": "参数名。",
|
913
913
|
"example": "name",
|
914
914
|
"member": "string",
|
915
915
|
"name": "ParameterName",
|
916
|
-
"output_required":
|
916
|
+
"output_required": false,
|
917
917
|
"required": true,
|
918
918
|
"type": "string",
|
919
|
-
"value_allowed_null":
|
919
|
+
"value_allowed_null": false
|
920
920
|
},
|
921
921
|
{
|
922
922
|
"disabled": false,
|
923
|
-
"document": "
|
923
|
+
"document": "参数默认值。",
|
924
924
|
"example": "value",
|
925
925
|
"member": "string",
|
926
926
|
"name": "ParameterValue",
|
927
|
-
"output_required":
|
927
|
+
"output_required": false,
|
928
928
|
"required": true,
|
929
929
|
"type": "string",
|
930
|
-
"value_allowed_null":
|
930
|
+
"value_allowed_null": false
|
931
931
|
},
|
932
932
|
{
|
933
933
|
"disabled": false,
|
934
|
-
"document": "
|
934
|
+
"document": "参数描述。",
|
935
935
|
"example": "This is a parameter.",
|
936
936
|
"member": "string",
|
937
937
|
"name": "ParameterDescription",
|
938
|
-
"output_required":
|
938
|
+
"output_required": false,
|
939
939
|
"required": false,
|
940
940
|
"type": "string",
|
941
|
-
"value_allowed_null":
|
941
|
+
"value_allowed_null": false
|
942
942
|
}
|
943
943
|
],
|
944
944
|
"usage": "both"
|
@@ -1092,8 +1092,8 @@
|
|
1092
1092
|
},
|
1093
1093
|
{
|
1094
1094
|
"disabled": false,
|
1095
|
-
"document": "
|
1096
|
-
"example": "
|
1095
|
+
"document": "<li>agent-status - String - 是否必填:否 -(过滤条件)按照agent状态过滤,取值:Online 在线,Offline 离线。</li><br><li>environment - String - 是否必填:否 -(过滤条件)按照agent运行环境查询,取值:Linux, Windows。</li><br><li>instance-id - String - 是否必填:否 -(过滤条件)按照实例ID过滤。</li>",
|
1096
|
+
"example": "[ { \"Name\": \"instance-id\", \"Values\": [\"ins-zcewfho0\"] }]",
|
1097
1097
|
"member": "Filter",
|
1098
1098
|
"name": "Filters",
|
1099
1099
|
"required": false,
|
@@ -1126,7 +1126,7 @@
|
|
1126
1126
|
{
|
1127
1127
|
"disabled": false,
|
1128
1128
|
"document": "Agent 信息列表。",
|
1129
|
-
"example": "
|
1129
|
+
"example": "[ { \"AgentStatus\": \"Offline\", \"Environment\": \"Windows\", \"InstanceId\": \"rins-lpuf78i4\", \"LastHeartbeatTime\": \"2024-10-25T03:21:08Z\", \"SupportFeatures\": [ \"SESSION_MANAGER\" ], \"Version\": \"1.0.17\" }]",
|
1130
1130
|
"member": "AutomationAgentInfo",
|
1131
1131
|
"name": "AutomationAgentSet",
|
1132
1132
|
"output_required": true,
|
@@ -1167,7 +1167,7 @@
|
|
1167
1167
|
{
|
1168
1168
|
"disabled": false,
|
1169
1169
|
"document": "过滤条件。\n<li> command-id - String - 是否必填:否 -(过滤条件)按照命令ID过滤。</li>\n<li> command-name - String - 是否必填:否 -(过滤条件)按照命令名称过滤。</li>\n<li> command-type - String - 是否必填:否 -(过滤条件)按照命令类型过滤,取值为 SHELL 或 POWERSHELL。</li>\n<li> scene-id - String - 是否必填:否 -(过滤条件)按照场景ID过滤。</li>\n<li> created-by - String - 是否必填:否 -(过滤条件)按照命令创建者过滤,取值为 TAT 或 USER,TAT 代表公共命令,USER 代表由用户创建的命令。</li>\n<li> tag-key - String - 是否必填:否 -(过滤条件)按照标签键进行过滤。</li>\n<li> tag-value - String - 是否必填:否 -(过滤条件)按照标签值进行过滤。</li>\n<li> tag:tag-key - String - 是否必填:否 -(过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。使用请参考示例4</li>\n\n每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `CommandIds` 和 `Filters` 。",
|
1170
|
-
"example": "
|
1170
|
+
"example": "[ { \"Name\": \"command-id\", \"Values\": [\"cmd-nrncl292\"] } ]",
|
1171
1171
|
"member": "Filter",
|
1172
1172
|
"name": "Filters",
|
1173
1173
|
"required": false,
|
@@ -1210,7 +1210,7 @@
|
|
1210
1210
|
{
|
1211
1211
|
"disabled": false,
|
1212
1212
|
"document": "命令详情列表。",
|
1213
|
-
"example": "
|
1213
|
+
"example": "[{ \"CommandId\": \"cmd-fqk6gaqy\", \"CommandName\": \"anchorpeng-test002\", \"CommandType\": \"SHELL\", \"Content\": \"ZWNobyB7e3Rlc3R9fQ==\", \"CreatedBy\": \"USER\", \"CreatedTime\": \"2023-08-28T08:13:51Z\", \"DefaultParameterConfs\": [ { \"ParameterDescription\": \"for test\", \"ParameterName\": \"test\", \"ParameterValue\": \"666\" } ], \"DefaultParameters\": \"\", \"Description\": \"\", \"EnableParameter\": true, \"FormattedDescription\": \"\", \"OutputCOSBucketUrl\": \"\", \"OutputCOSKeyPrefix\": \"\", \"Scenes\": [], \"Tags\": [], \"Timeout\": 60, \"UpdatedTime\": \"2023-08-28T08:13:51Z\", \"Username\": \"root\", \"WorkingDirectory\": \"/root\" }]",
|
1214
1214
|
"member": "Command",
|
1215
1215
|
"name": "CommandSet",
|
1216
1216
|
"output_required": true,
|
@@ -1241,7 +1241,7 @@
|
|
1241
1241
|
{
|
1242
1242
|
"disabled": false,
|
1243
1243
|
"document": "过滤条件。<br>\n\n<li> invocation-id - String - 是否必填:否 -(过滤条件)按照执行活动ID过滤。</li> <li> invocation-task-id - String - 是否必填:否 -(过滤条件)按照执行任务ID过滤。</li> <li> instance-id - String - 是否必填:否 -(过滤条件)按照实例ID过滤。</li> <li> command-id - String - 是否必填:否 -(过滤条件)按照命令ID过滤。</li> <br>每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `InvocationTaskIds` 和 `Filters` 。",
|
1244
|
-
"example": "
|
1244
|
+
"example": "[ { \"Name\": \"instance-id\", \"Values\": [\"ins-zcewfho0\"] } ]",
|
1245
1245
|
"member": "Filter",
|
1246
1246
|
"name": "Filters",
|
1247
1247
|
"required": false,
|
@@ -1293,7 +1293,7 @@
|
|
1293
1293
|
{
|
1294
1294
|
"disabled": false,
|
1295
1295
|
"document": "执行任务列表。",
|
1296
|
-
"example": "
|
1296
|
+
"example": "[{ \"CommandDocument\": { \"CommandType\": \"POWERSHELL\", \"Content\": \"cHdk\", \"OutputCOSBucketUrl\": \"\", \"OutputCOSKeyPrefix\": \"\", \"Timeout\": 60, \"Username\": \"System\", \"WorkingDirectory\": \"C:\\\\Program Files\\\\qcloud\\\\tat_agent\\\\workdir\" }, \"CommandId\": \"cmd-f3epw86m\", \"CreatedTime\": \"2024-10-25T03:18:37Z\", \"EndTime\": \"2024-10-25T03:18:39Z\", \"ErrorInfo\": \"\", \"InstanceId\": \"rins-lpuf78i4\", \"InvocationId\": \"inv-fc91n6g7k1\", \"InvocationSource\": \"USER\", \"InvocationTaskId\": \"invt-fc91n6g7k2\", \"StartTime\": \"2024-10-25T03:18:38Z\", \"TaskResult\": { \"Dropped\": 0, \"ExecEndTime\": \"2024-10-25T03:18:39Z\", \"ExecStartTime\": \"2024-10-25T03:18:38Z\", \"ExitCode\": 0, \"Output\": \"\", \"OutputUploadCOSErrorInfo\": \"\", \"OutputUrl\": \"\" }, \"TaskStatus\": \"SUCCESS\", \"UpdatedTime\": \"2024-10-25T03:18:39Z\" }]",
|
1297
1297
|
"member": "InvocationTask",
|
1298
1298
|
"name": "InvocationTaskSet",
|
1299
1299
|
"output_required": true,
|
@@ -1324,7 +1324,7 @@
|
|
1324
1324
|
{
|
1325
1325
|
"disabled": false,
|
1326
1326
|
"document": "过滤条件。<br>\n\n<li> invocation-id - String - 是否必填:否 -(过滤条件)按照执行活动ID过滤。</li>\n <li> command-id - String - 是否必填:否 -(过滤条件)按照命令ID过滤。</li> \n<li> command-created-by - String - 是否必填:否 -(过滤条件)按照执行的命令类型过滤,取值为 TAT 或 USER,TAT 代表公共命令,USER 代表由用户创建的命令。</li>\n <li> instance-kind - String - 是否必填:否 -(过滤条件)按照运行实例类型过滤,取值为 CVM 或 LIGHTHOUSE,CVM 代表实例为云服务器, LIGHTHOUSE 代表实例为轻量应用服务器。</li>\n <br>每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `InvocationIds` 和 `Filters` 。",
|
1327
|
-
"example": "
|
1327
|
+
"example": "[ { \"Name\": \"instance-id\", \"Values\": [\"ins-zcewfho0\"] } ]",
|
1328
1328
|
"member": "Filter",
|
1329
1329
|
"name": "Filters",
|
1330
1330
|
"required": false,
|
@@ -1367,7 +1367,7 @@
|
|
1367
1367
|
{
|
1368
1368
|
"disabled": false,
|
1369
1369
|
"document": "执行活动列表。",
|
1370
|
-
"example": "
|
1370
|
+
"example": "[{ \"CommandContent\": \"cHdk\", \"CommandId\": \"cmd-kpfoo6py\", \"CommandType\": \"SHELL\", \"CreatedTime\": \"2024-10-25T03:18:37Z\", \"DefaultParameters\": \"\", \"Description\": \"\", \"EndTime\": \"2024-10-25T03:18:38Z\", \"InstanceKind\": \"REGISTERINST\", \"InvocationId\": \"inv-hc91n6ga8c\", \"InvocationSource\": \"USER\", \"InvocationStatus\": \"SUCCESS\", \"InvocationTaskBasicInfoSet\": [ { \"InstanceId\": \"rins-0c54k0xs\", \"InvocationTaskId\": \"invt-hc91n6ga8d\", \"TaskStatus\": \"SUCCESS\" } ], \"OutputCOSBucketUrl\": \"\", \"OutputCOSKeyPrefix\": \"\", \"Parameters\": \"\", \"StartTime\": \"2024-10-25T03:18:37Z\", \"Timeout\": 60, \"UpdatedTime\": \"2024-10-25T03:18:38Z\", \"Username\": \"root\", \"WorkingDirectory\": \"/root\" }]",
|
1371
1371
|
"member": "Invocation",
|
1372
1372
|
"name": "InvocationSet",
|
1373
1373
|
"output_required": true,
|
@@ -1425,17 +1425,17 @@
|
|
1425
1425
|
"example": "10",
|
1426
1426
|
"member": "uint64",
|
1427
1427
|
"name": "TotalCount",
|
1428
|
-
"
|
1428
|
+
"output_required": true,
|
1429
1429
|
"type": "int",
|
1430
1430
|
"value_allowed_null": false
|
1431
1431
|
},
|
1432
1432
|
{
|
1433
1433
|
"disabled": false,
|
1434
1434
|
"document": "执行器执行历史记录。",
|
1435
|
-
"example": "
|
1435
|
+
"example": "[ { \"InvocationId\": \"inv-sca38601ud\", \"InvokeTime\": \"2024-10-25T22:24:13Z\", \"InvokerId\": \"ivk-ngqk4bda\", \"Reason\": \"start an invocation at scheduled time.\", \"Result\": \"SUCCESS\" }]",
|
1436
1436
|
"member": "InvokerRecord",
|
1437
1437
|
"name": "InvokerRecordSet",
|
1438
|
-
"
|
1438
|
+
"output_required": true,
|
1439
1439
|
"type": "list",
|
1440
1440
|
"value_allowed_null": false
|
1441
1441
|
},
|
@@ -1462,8 +1462,8 @@
|
|
1462
1462
|
},
|
1463
1463
|
{
|
1464
1464
|
"disabled": false,
|
1465
|
-
"document": "
|
1466
|
-
"example": "
|
1465
|
+
"document": "过滤条件:<li> invoker-id - String - 是否必填:否 - (过滤条件)按执行器ID过滤。</li> <li> command-id - String - 是否必填:否 - (过滤条件)按命令ID过滤。</li> <li> type - String - 是否必填:否 - (过滤条件)按执行器类型过滤。</li>",
|
1466
|
+
"example": "[ { \"Name\": \"command-id\", \"Values\": [\"cmd-nrncl292\"] } ]",
|
1467
1467
|
"member": "Filter",
|
1468
1468
|
"name": "Filters",
|
1469
1469
|
"required": false,
|
@@ -1499,17 +1499,17 @@
|
|
1499
1499
|
"example": "10",
|
1500
1500
|
"member": "uint64",
|
1501
1501
|
"name": "TotalCount",
|
1502
|
-
"
|
1502
|
+
"output_required": true,
|
1503
1503
|
"type": "int",
|
1504
1504
|
"value_allowed_null": false
|
1505
1505
|
},
|
1506
1506
|
{
|
1507
1507
|
"disabled": false,
|
1508
1508
|
"document": "执行器信息。",
|
1509
|
-
"example": "
|
1509
|
+
"example": "[ { \"CommandId\": \"cmd-lvj80ae8\", \"CreatedTime\": \"2024-10-25T03:26:04Z\", \"Enable\": true, \"InstanceIds\": [ \"ins-6t770knh\" ], \"InvokerId\": \"ivk-ngqk4bda\", \"Name\": \"test\", \"Parameters\": \"\", \"ScheduleSettings\": { \"InvokeTime\": \"\", \"Policy\": \"ONCE\", \"Recurrence\": \"\" }, \"Type\": \"SCHEDULE\", \"UpdatedTime\": \"2024-10-25T22:24:13Z\", \"Username\": \"\" }]",
|
1510
1510
|
"member": "Invoker",
|
1511
1511
|
"name": "InvokerSet",
|
1512
|
-
"
|
1512
|
+
"output_required": true,
|
1513
1513
|
"type": "list",
|
1514
1514
|
"value_allowed_null": false
|
1515
1515
|
},
|
@@ -1543,7 +1543,7 @@
|
|
1543
1543
|
{
|
1544
1544
|
"disabled": false,
|
1545
1545
|
"document": "资源额度列表",
|
1546
|
-
"example": "
|
1546
|
+
"example": "[ { \"ResourceName\": \"COMMAND\", \"ResourceQuotaTotal\": 500, \"ResourceQuotaUsed\": 27 } ]",
|
1547
1547
|
"member": "GeneralResourceQuotaSet",
|
1548
1548
|
"name": "GeneralResourceQuotaSet",
|
1549
1549
|
"output_required": false,
|
@@ -1573,15 +1573,17 @@
|
|
1573
1573
|
"example": "1",
|
1574
1574
|
"member": "uint64",
|
1575
1575
|
"name": "TotalCount",
|
1576
|
+
"output_required": true,
|
1576
1577
|
"type": "int",
|
1577
1578
|
"value_allowed_null": false
|
1578
1579
|
},
|
1579
1580
|
{
|
1580
1581
|
"disabled": false,
|
1581
1582
|
"document": "地域信息列表",
|
1582
|
-
"example": "
|
1583
|
+
"example": "[ { \"Region\": \"ap-guangzhou\", \"RegionName\": \"广州\", \"RegionState\": \"AVAILABLE\" }]",
|
1583
1584
|
"member": "RegionInfo",
|
1584
1585
|
"name": "RegionSet",
|
1586
|
+
"output_required": true,
|
1585
1587
|
"type": "list",
|
1586
1588
|
"value_allowed_null": false
|
1587
1589
|
},
|
@@ -1643,7 +1645,7 @@
|
|
1643
1645
|
{
|
1644
1646
|
"disabled": false,
|
1645
1647
|
"document": "注册码信息列表。\n注意:此字段可能返回 null,表示取不到有效值。",
|
1646
|
-
"example": "
|
1648
|
+
"example": "[ { \"CreatedTime\": \"2024-10-25T03:32:50Z\", \"Description\": \"\", \"Enabled\": false, \"ExpiredTime\": \"2024-10-25T07:32:50Z\", \"InstanceNamePrefix\": \"xxx\", \"IpAddressRange\": \"\", \"RegisterCodeId\": \"67c6df82-fa3e-48fb-9c17-07e3e1e9c2c3\", \"RegisterLimit\": 10, \"RegisteredCount\": 0, \"UpdatedTime\": \"2024-10-25T03:32:50Z\" }]",
|
1647
1649
|
"member": "RegisterCodeInfo",
|
1648
1650
|
"name": "RegisterCodeSet",
|
1649
1651
|
"output_required": true,
|
@@ -1674,7 +1676,7 @@
|
|
1674
1676
|
{
|
1675
1677
|
"disabled": false,
|
1676
1678
|
"document": "过滤器列表。\n\n- instance-name\n\n按照【实例名称】进行过滤。\n类型:String\n必选:否\n\n- instance-id\n\n按照【实例ID】进行过滤。\n类型:String\n必选:否\n\n- register-code-id\n\n按照【注册码ID】进行过滤。\n类型:String\n必选:否\n\n- sys-name\n\n按照【操作系统类型】进行过滤,取值:Linux | Windows。\n类型:String\n必选:否\n\n",
|
1677
|
-
"example": "
|
1679
|
+
"example": "[ { \"name\": \"instance-id\", \"value\": \"67c6df82-fa3e-48fb-9c17-07e3e1e9c2c3\" } ]",
|
1678
1680
|
"member": "Filter",
|
1679
1681
|
"name": "Filters",
|
1680
1682
|
"required": false,
|
@@ -1717,7 +1719,7 @@
|
|
1717
1719
|
{
|
1718
1720
|
"disabled": false,
|
1719
1721
|
"document": "被托管的实例信息的列表。",
|
1720
|
-
"example": "
|
1722
|
+
"example": "[ { \"CreatedTime\": \"2024-08-13T08:05:01Z\", \"HostName\": \"10_2_1_37\", \"InstanceId\": \"rins-5q722wzy\", \"InstanceName\": \"qta-rins-8263-002\", \"LocalIp\": \"10.2.1.37\", \"MachineId\": \"64ec1c6c-904d-42af-a843-9fd32275447f\", \"PublicKey\": \"-----BEGIN RSA PUBLIC KEY-----\\nMIIBCgKCAQEAyAiEY6k4xA2BZ8lSqtFEG5LsVzk7MoS0huipVKxhwZjePnKoiG1K\\n3DSrIk+RlU5RHOHEOSH2kM4fea+GI6YJ70KAK6aNSlUnNOX1kO/wjZCo+crr28ij\\nuMRO9zMCzHW04lknvQsWfL3O59+WwA35H8lBixocTyi1c9hPSXjDPiKqOyTVTPJm\\nfNbHaa7U8D0FFFi0NXexYfZVDExtZfJmYYkGBot8aVOv/sFFmqHMSrgVxdGrWbQ4\\nTJpPvA16eEUi29Ql68DZ2elO31gb1Avlr7FoC+UKIKfYZ8mnThsO5ot/+zMqVFRV\\nodxraUobPkEwfLEv9iRrGcriPn8Vj66fwQIDAQAB\\n-----END RSA PUBLIC KEY-----\\n\", \"RegisterCodeId\": \"b6eff1ff-6f43-4e89-aff1-9b5604fa4620\", \"Status\": \"Offline\", \"SystemName\": \"Windows\", \"UpdatedTime\": \"2024-08-13T08:05:03Z\" }]",
|
1721
1723
|
"member": "RegisterInstanceInfo",
|
1722
1724
|
"name": "RegisterInstanceSet",
|
1723
1725
|
"output_required": true,
|
@@ -1791,7 +1793,7 @@
|
|
1791
1793
|
{
|
1792
1794
|
"disabled": false,
|
1793
1795
|
"document": "场景详情列表。",
|
1794
|
-
"example": "
|
1796
|
+
"example": "[{ \"CreatedBy\": \"TAT\", \"CreatedTime\": \"2024-09-23T07:52:26Z\", \"SceneId\": \"sc-r8ct2mkc\", \"SceneName\": \"Windows\", \"UpdatedTime\": \"2024-09-23T08:12:27Z\" }]",
|
1795
1797
|
"member": "Scene",
|
1796
1798
|
"name": "SceneSet",
|
1797
1799
|
"output_required": true,
|
@@ -1917,36 +1919,36 @@
|
|
1917
1919
|
"members": [
|
1918
1920
|
{
|
1919
1921
|
"disabled": false,
|
1920
|
-
"document": "
|
1922
|
+
"document": "资源名称",
|
1921
1923
|
"example": "COMMAND",
|
1922
1924
|
"member": "string",
|
1923
1925
|
"name": "ResourceName",
|
1924
1926
|
"output_required": false,
|
1925
1927
|
"required": false,
|
1926
1928
|
"type": "string",
|
1927
|
-
"value_allowed_null":
|
1929
|
+
"value_allowed_null": false
|
1928
1930
|
},
|
1929
1931
|
{
|
1930
1932
|
"disabled": false,
|
1931
|
-
"document": "
|
1933
|
+
"document": "已使用额度",
|
1932
1934
|
"example": "200",
|
1933
1935
|
"member": "int64",
|
1934
1936
|
"name": "ResourceQuotaUsed",
|
1935
1937
|
"output_required": false,
|
1936
1938
|
"required": false,
|
1937
1939
|
"type": "int",
|
1938
|
-
"value_allowed_null":
|
1940
|
+
"value_allowed_null": false
|
1939
1941
|
},
|
1940
1942
|
{
|
1941
1943
|
"disabled": false,
|
1942
|
-
"document": "
|
1944
|
+
"document": "总额度",
|
1943
1945
|
"example": "500",
|
1944
1946
|
"member": "int64",
|
1945
1947
|
"name": "ResourceQuotaTotal",
|
1946
1948
|
"output_required": false,
|
1947
1949
|
"required": false,
|
1948
1950
|
"type": "int",
|
1949
|
-
"value_allowed_null":
|
1951
|
+
"value_allowed_null": false
|
1950
1952
|
}
|
1951
1953
|
],
|
1952
1954
|
"usage": "both"
|
@@ -1987,7 +1989,7 @@
|
|
1987
1989
|
{
|
1988
1990
|
"disabled": false,
|
1989
1991
|
"document": "执行任务信息列表。",
|
1990
|
-
"example": "
|
1992
|
+
"example": "[ { \"InstanceId\": \"lhins-71itjmdd\", \"InvocationTaskId\": \"invt-bd1w17gx22\", \"TaskStatus\": \"FAILED\" } ], \"OutputCOSBucketUrl\": \"\", \"OutputCOSKeyPrefix\": \"\", \"Parameters\": \"{}\", \"StartTime\": \"2024-11-13T00:20:32Z\", \"Timeout\": 600, \"UpdatedTime\": \"2024-11-13T00:20:32Z\", \"Username\": \"root\", \"WorkingDirectory\": \"/data\" } ]",
|
1991
1993
|
"member": "InvocationTaskBasicInfo",
|
1992
1994
|
"name": "InvocationTaskBasicInfoSet",
|
1993
1995
|
"output_required": true,
|
@@ -2047,7 +2049,7 @@
|
|
2047
2049
|
{
|
2048
2050
|
"disabled": false,
|
2049
2051
|
"document": "自定义参数取值。",
|
2050
|
-
"example": "{
|
2052
|
+
"example": "{\"varA\": \"222\"}",
|
2051
2053
|
"member": "string",
|
2052
2054
|
"name": "Parameters",
|
2053
2055
|
"output_required": true,
|
@@ -2057,7 +2059,7 @@
|
|
2057
2059
|
{
|
2058
2060
|
"disabled": false,
|
2059
2061
|
"document": "自定义参数的默认取值。",
|
2060
|
-
"example": "{
|
2062
|
+
"example": "{\"varA\": \"222\"}",
|
2061
2063
|
"member": "string",
|
2062
2064
|
"name": "DefaultParameters",
|
2063
2065
|
"output_required": true,
|
@@ -2213,7 +2215,7 @@
|
|
2213
2215
|
{
|
2214
2216
|
"disabled": false,
|
2215
2217
|
"document": "执行结果。",
|
2216
|
-
"example": "
|
2218
|
+
"example": "{ \"Dropped\": 0, \"ExecEndTime\": \"2024-11-13T02:10:32Z\", \"ExecStartTime\": \"2024-11-13T02:10:32Z\", \"ExitCode\": 7, \"Output\": \"\", \"OutputUploadCOSErrorInfo\": \"\", \"OutputUrl\": \"\" }",
|
2217
2219
|
"member": "TaskResult",
|
2218
2220
|
"name": "TaskResult",
|
2219
2221
|
"output_required": true,
|
@@ -2263,7 +2265,7 @@
|
|
2263
2265
|
{
|
2264
2266
|
"disabled": false,
|
2265
2267
|
"document": "执行任务所执行的命令详情。",
|
2266
|
-
"example": "
|
2268
|
+
"example": "{ \"CommandType\": \"SHELL\", \"Content\": \"cHdk\", \"OutputCOSBucketUrl\": \"\", \"OutputCOSKeyPrefix\": \"prefix\", \"Timeout\": 600, \"Username\": \"root\", \"WorkingDirectory\": \"/data\" }",
|
2267
2269
|
"member": "CommandDocument",
|
2268
2270
|
"name": "CommandDocument",
|
2269
2271
|
"output_required": true,
|
@@ -2353,7 +2355,7 @@
|
|
2353
2355
|
{
|
2354
2356
|
"disabled": false,
|
2355
2357
|
"document": "Command 的自定义参数。字段类型为json encoded string。如:{\\\"varA\\\": \\\"222\\\"}。\nkey为自定义参数名称,value为该参数的默认取值。kv均为字符串型。\n如果未提供该参数取值,将使用 Command 的 DefaultParameters 进行替换。\n自定义参数最多20个。\n自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。",
|
2356
|
-
"example": "{
|
2358
|
+
"example": "{\"varA\": \"222\"}",
|
2357
2359
|
"member": "string",
|
2358
2360
|
"name": "Parameters",
|
2359
2361
|
"required": false,
|
@@ -2438,7 +2440,7 @@
|
|
2438
2440
|
"example": "ivk-27yagap9",
|
2439
2441
|
"member": "string",
|
2440
2442
|
"name": "InvokerId",
|
2441
|
-
"
|
2443
|
+
"output_required": true,
|
2442
2444
|
"type": "string",
|
2443
2445
|
"value_allowed_null": false
|
2444
2446
|
},
|
@@ -2448,7 +2450,7 @@
|
|
2448
2450
|
"example": "invoker-test",
|
2449
2451
|
"member": "string",
|
2450
2452
|
"name": "Name",
|
2451
|
-
"
|
2453
|
+
"output_required": true,
|
2452
2454
|
"type": "string",
|
2453
2455
|
"value_allowed_null": false
|
2454
2456
|
},
|
@@ -2458,7 +2460,7 @@
|
|
2458
2460
|
"example": "SCHEDULE",
|
2459
2461
|
"member": "string",
|
2460
2462
|
"name": "Type",
|
2461
|
-
"
|
2463
|
+
"output_required": true,
|
2462
2464
|
"type": "string",
|
2463
2465
|
"value_allowed_null": false
|
2464
2466
|
},
|
@@ -2468,7 +2470,7 @@
|
|
2468
2470
|
"example": "cmd-m7uma92n",
|
2469
2471
|
"member": "string",
|
2470
2472
|
"name": "CommandId",
|
2471
|
-
"
|
2473
|
+
"output_required": true,
|
2472
2474
|
"type": "string",
|
2473
2475
|
"value_allowed_null": false
|
2474
2476
|
},
|
@@ -2478,7 +2480,7 @@
|
|
2478
2480
|
"example": "root",
|
2479
2481
|
"member": "string",
|
2480
2482
|
"name": "Username",
|
2481
|
-
"
|
2483
|
+
"output_required": true,
|
2482
2484
|
"type": "string",
|
2483
2485
|
"value_allowed_null": false
|
2484
2486
|
},
|
@@ -2488,7 +2490,7 @@
|
|
2488
2490
|
"example": "{\"var\": 1}",
|
2489
2491
|
"member": "string",
|
2490
2492
|
"name": "Parameters",
|
2491
|
-
"
|
2493
|
+
"output_required": true,
|
2492
2494
|
"type": "string",
|
2493
2495
|
"value_allowed_null": false
|
2494
2496
|
},
|
@@ -2498,7 +2500,7 @@
|
|
2498
2500
|
"example": "[\"ins-yx05ky8j\"]",
|
2499
2501
|
"member": "string",
|
2500
2502
|
"name": "InstanceIds",
|
2501
|
-
"
|
2503
|
+
"output_required": true,
|
2502
2504
|
"type": "list",
|
2503
2505
|
"value_allowed_null": false
|
2504
2506
|
},
|
@@ -2508,7 +2510,7 @@
|
|
2508
2510
|
"example": "true",
|
2509
2511
|
"member": "bool",
|
2510
2512
|
"name": "Enable",
|
2511
|
-
"
|
2513
|
+
"output_required": true,
|
2512
2514
|
"type": "bool",
|
2513
2515
|
"value_allowed_null": false
|
2514
2516
|
},
|
@@ -2518,7 +2520,7 @@
|
|
2518
2520
|
"example": "无",
|
2519
2521
|
"member": "ScheduleSettings",
|
2520
2522
|
"name": "ScheduleSettings",
|
2521
|
-
"
|
2523
|
+
"output_required": false,
|
2522
2524
|
"type": "object",
|
2523
2525
|
"value_allowed_null": true
|
2524
2526
|
},
|
@@ -2528,7 +2530,7 @@
|
|
2528
2530
|
"example": "2021-08-30T06:42:02Z",
|
2529
2531
|
"member": "datetime_iso",
|
2530
2532
|
"name": "CreatedTime",
|
2531
|
-
"
|
2533
|
+
"output_required": true,
|
2532
2534
|
"type": "string",
|
2533
2535
|
"value_allowed_null": false
|
2534
2536
|
},
|
@@ -2538,7 +2540,7 @@
|
|
2538
2540
|
"example": "2021-08-30T06:42:02Z",
|
2539
2541
|
"member": "datetime_iso",
|
2540
2542
|
"name": "UpdatedTime",
|
2541
|
-
"
|
2543
|
+
"output_required": true,
|
2542
2544
|
"type": "string",
|
2543
2545
|
"value_allowed_null": false
|
2544
2546
|
}
|
@@ -2670,7 +2672,7 @@
|
|
2670
2672
|
{
|
2671
2673
|
"disabled": false,
|
2672
2674
|
"document": "启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\\\"varA\\\": \\\"222\\\"}。\n采取整体全覆盖式修改,即修改时必须提供所有新默认值。\n必须 Command 的 EnableParameter 为 true 时,才允许修改这个值。\nkey为自定义参数名称,value为该参数的默认取值。kv均为字符串型。\n自定义参数最多20个。\n自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。",
|
2673
|
-
"example": "{
|
2675
|
+
"example": "{\"varA\": \"222\"}",
|
2674
2676
|
"member": "string",
|
2675
2677
|
"name": "DefaultParameters",
|
2676
2678
|
"required": false,
|
@@ -2796,7 +2798,7 @@
|
|
2796
2798
|
{
|
2797
2799
|
"disabled": false,
|
2798
2800
|
"document": "待修改的周期执行器设置。",
|
2799
|
-
"example": "
|
2801
|
+
"example": "{ \"Policy\":\"ONCE\", \"InvokeTime\":\"2021-09-01T00:00:00+08:00\" }",
|
2800
2802
|
"member": "ScheduleSettings",
|
2801
2803
|
"name": "ScheduleSettings",
|
2802
2804
|
"required": false,
|
@@ -2949,103 +2951,103 @@
|
|
2949
2951
|
"members": [
|
2950
2952
|
{
|
2951
2953
|
"disabled": false,
|
2952
|
-
"document": "注册码ID
|
2954
|
+
"document": "注册码ID。",
|
2953
2955
|
"example": "d0b7xxxx-a6xx-40x9-898x-44c9f508axxx",
|
2954
2956
|
"member": "string",
|
2955
2957
|
"name": "RegisterCodeId",
|
2956
2958
|
"output_required": true,
|
2957
2959
|
"type": "string",
|
2958
|
-
"value_allowed_null":
|
2960
|
+
"value_allowed_null": false
|
2959
2961
|
},
|
2960
2962
|
{
|
2961
2963
|
"disabled": false,
|
2962
|
-
"document": "
|
2964
|
+
"document": "注册码描述。",
|
2963
2965
|
"example": "此注册码用于注册托管实例。",
|
2964
2966
|
"member": "string",
|
2965
2967
|
"name": "Description",
|
2966
2968
|
"output_required": true,
|
2967
2969
|
"type": "string",
|
2968
|
-
"value_allowed_null":
|
2970
|
+
"value_allowed_null": false
|
2969
2971
|
},
|
2970
2972
|
{
|
2971
2973
|
"disabled": false,
|
2972
|
-
"document": "
|
2974
|
+
"document": "注册实例名称前缀。",
|
2973
2975
|
"example": "register-test",
|
2974
2976
|
"member": "string",
|
2975
2977
|
"name": "InstanceNamePrefix",
|
2976
2978
|
"output_required": true,
|
2977
2979
|
"type": "string",
|
2978
|
-
"value_allowed_null":
|
2980
|
+
"value_allowed_null": false
|
2979
2981
|
},
|
2980
2982
|
{
|
2981
2983
|
"disabled": false,
|
2982
|
-
"document": "
|
2984
|
+
"document": "该注册码允许注册的实例数目。",
|
2983
2985
|
"example": "100",
|
2984
2986
|
"member": "int64",
|
2985
2987
|
"name": "RegisterLimit",
|
2986
2988
|
"output_required": true,
|
2987
2989
|
"type": "int",
|
2988
|
-
"value_allowed_null":
|
2990
|
+
"value_allowed_null": false
|
2989
2991
|
},
|
2990
2992
|
{
|
2991
2993
|
"disabled": false,
|
2992
|
-
"document": "该注册码的过期时间,按照 ISO8601 标准表示,并且使用 UTC 时间。 \n格式为: YYYY-MM-DDThh:mm:ssZ。\n注意:此字段可能返回 null
|
2994
|
+
"document": "该注册码的过期时间,按照 ISO8601 标准表示,并且使用 UTC 时间。 \n格式为: YYYY-MM-DDThh:mm:ssZ。\n注意:此字段可能返回 null,表示取不到有效值。",
|
2993
2995
|
"example": "2023-09-07T13:13:29Z",
|
2994
2996
|
"member": "datetime_iso",
|
2995
2997
|
"name": "ExpiredTime",
|
2996
2998
|
"output_required": true,
|
2997
2999
|
"type": "string",
|
2998
|
-
"value_allowed_null":
|
3000
|
+
"value_allowed_null": false
|
2999
3001
|
},
|
3000
3002
|
{
|
3001
3003
|
"disabled": false,
|
3002
|
-
"document": "该注册码限制tat_agent只能从IpAddressRange
|
3004
|
+
"document": "该注册码限制tat_agent只能从IpAddressRange所描述公网出口进行注册。",
|
3003
3005
|
"example": "133.12.234.0/24",
|
3004
3006
|
"member": "string",
|
3005
3007
|
"name": "IpAddressRange",
|
3006
3008
|
"output_required": true,
|
3007
3009
|
"type": "string",
|
3008
|
-
"value_allowed_null":
|
3010
|
+
"value_allowed_null": false
|
3009
3011
|
},
|
3010
3012
|
{
|
3011
3013
|
"disabled": false,
|
3012
|
-
"document": "
|
3014
|
+
"document": "该注册码是否可用。",
|
3013
3015
|
"example": "true",
|
3014
3016
|
"member": "bool",
|
3015
3017
|
"name": "Enabled",
|
3016
3018
|
"output_required": true,
|
3017
3019
|
"type": "bool",
|
3018
|
-
"value_allowed_null":
|
3020
|
+
"value_allowed_null": false
|
3019
3021
|
},
|
3020
3022
|
{
|
3021
3023
|
"disabled": false,
|
3022
|
-
"document": "
|
3024
|
+
"document": "该注册码已注册数目。",
|
3023
3025
|
"example": "10",
|
3024
3026
|
"member": "int64",
|
3025
3027
|
"name": "RegisteredCount",
|
3026
3028
|
"output_required": true,
|
3027
3029
|
"type": "int",
|
3028
|
-
"value_allowed_null":
|
3030
|
+
"value_allowed_null": false
|
3029
3031
|
},
|
3030
3032
|
{
|
3031
3033
|
"disabled": false,
|
3032
|
-
"document": "注册码创建时间,按照 ISO8601 标准表示,并且使用 UTC 时间。 \n格式为: YYYY-MM-DDThh:mm:ssZ。\n注意:此字段可能返回 null
|
3034
|
+
"document": "注册码创建时间,按照 ISO8601 标准表示,并且使用 UTC 时间。 \n格式为: YYYY-MM-DDThh:mm:ssZ。\n注意:此字段可能返回 null,表示取不到有效值。",
|
3033
3035
|
"example": "2023-12-01 00:00:00",
|
3034
3036
|
"member": "datetime_iso",
|
3035
3037
|
"name": "CreatedTime",
|
3036
3038
|
"output_required": true,
|
3037
3039
|
"type": "string",
|
3038
|
-
"value_allowed_null":
|
3040
|
+
"value_allowed_null": false
|
3039
3041
|
},
|
3040
3042
|
{
|
3041
3043
|
"disabled": false,
|
3042
|
-
"document": "注册码最近一次更新时间,按照 ISO8601 标准表示,并且使用 UTC 时间。 \n格式为: YYYY-MM-DDThh:mm:ssZ。\n注意:此字段可能返回 null
|
3044
|
+
"document": "注册码最近一次更新时间,按照 ISO8601 标准表示,并且使用 UTC 时间。 \n格式为: YYYY-MM-DDThh:mm:ssZ。\n注意:此字段可能返回 null,表示取不到有效值。",
|
3043
3045
|
"example": "2023-12-01 00:00:00",
|
3044
3046
|
"member": "datetime_iso",
|
3045
3047
|
"name": "UpdatedTime",
|
3046
3048
|
"output_required": true,
|
3047
3049
|
"type": "string",
|
3048
|
-
"value_allowed_null":
|
3050
|
+
"value_allowed_null": false
|
3049
3051
|
}
|
3050
3052
|
],
|
3051
3053
|
"usage": "out"
|
@@ -3055,83 +3057,83 @@
|
|
3055
3057
|
"members": [
|
3056
3058
|
{
|
3057
3059
|
"disabled": false,
|
3058
|
-
"document": "注册码ID
|
3060
|
+
"document": "注册码ID。",
|
3059
3061
|
"example": "d0b7xxxx-a6xx-40x9-898x-44c9f508axxx",
|
3060
3062
|
"member": "string",
|
3061
3063
|
"name": "RegisterCodeId",
|
3062
3064
|
"output_required": false,
|
3063
3065
|
"type": "string",
|
3064
|
-
"value_allowed_null":
|
3066
|
+
"value_allowed_null": false
|
3065
3067
|
},
|
3066
3068
|
{
|
3067
3069
|
"disabled": false,
|
3068
|
-
"document": "实例ID
|
3070
|
+
"document": "实例ID。",
|
3069
3071
|
"example": "rins-8d5cxxxx",
|
3070
3072
|
"member": "string",
|
3071
3073
|
"name": "InstanceId",
|
3072
3074
|
"output_required": false,
|
3073
3075
|
"type": "string",
|
3074
|
-
"value_allowed_null":
|
3076
|
+
"value_allowed_null": false
|
3075
3077
|
},
|
3076
3078
|
{
|
3077
3079
|
"disabled": false,
|
3078
|
-
"document": "
|
3080
|
+
"document": "实例名。",
|
3079
3081
|
"example": "register-test",
|
3080
3082
|
"member": "string",
|
3081
3083
|
"name": "InstanceName",
|
3082
|
-
"output_required":
|
3084
|
+
"output_required": true,
|
3083
3085
|
"type": "string",
|
3084
|
-
"value_allowed_null":
|
3086
|
+
"value_allowed_null": false
|
3085
3087
|
},
|
3086
3088
|
{
|
3087
3089
|
"disabled": false,
|
3088
|
-
"document": "机器ID
|
3090
|
+
"document": "机器ID。",
|
3089
3091
|
"example": "00xxxxx-0fxx-xxxx-xxxx-33951xxxxxxx",
|
3090
3092
|
"member": "string",
|
3091
3093
|
"name": "MachineId",
|
3092
3094
|
"output_required": false,
|
3093
3095
|
"type": "string",
|
3094
|
-
"value_allowed_null":
|
3096
|
+
"value_allowed_null": false
|
3095
3097
|
},
|
3096
3098
|
{
|
3097
3099
|
"disabled": false,
|
3098
|
-
"document": "
|
3100
|
+
"document": "系统名。",
|
3099
3101
|
"example": "Linux",
|
3100
3102
|
"member": "string",
|
3101
3103
|
"name": "SystemName",
|
3102
3104
|
"output_required": false,
|
3103
3105
|
"type": "string",
|
3104
|
-
"value_allowed_null":
|
3106
|
+
"value_allowed_null": false
|
3105
3107
|
},
|
3106
3108
|
{
|
3107
3109
|
"disabled": false,
|
3108
|
-
"document": "
|
3110
|
+
"document": "主机名。",
|
3109
3111
|
"example": "VM-0-01-ubuntu",
|
3110
3112
|
"member": "string",
|
3111
3113
|
"name": "HostName",
|
3112
3114
|
"output_required": false,
|
3113
3115
|
"type": "string",
|
3114
|
-
"value_allowed_null":
|
3116
|
+
"value_allowed_null": false
|
3115
3117
|
},
|
3116
3118
|
{
|
3117
3119
|
"disabled": false,
|
3118
|
-
"document": "内网IP
|
3120
|
+
"document": "内网IP。",
|
3119
3121
|
"example": "10.0.0.1",
|
3120
3122
|
"member": "string",
|
3121
3123
|
"name": "LocalIp",
|
3122
3124
|
"output_required": false,
|
3123
3125
|
"type": "string",
|
3124
|
-
"value_allowed_null":
|
3126
|
+
"value_allowed_null": false
|
3125
3127
|
},
|
3126
3128
|
{
|
3127
3129
|
"disabled": false,
|
3128
|
-
"document": "
|
3130
|
+
"document": "公钥。",
|
3129
3131
|
"example": "-----BEGIN RSA PUBLIC KEY-----\\nXXXXX...",
|
3130
3132
|
"member": "string",
|
3131
3133
|
"name": "PublicKey",
|
3132
3134
|
"output_required": false,
|
3133
3135
|
"type": "string",
|
3134
|
-
"value_allowed_null":
|
3136
|
+
"value_allowed_null": false
|
3135
3137
|
},
|
3136
3138
|
{
|
3137
3139
|
"disabled": false,
|
@@ -3145,23 +3147,23 @@
|
|
3145
3147
|
},
|
3146
3148
|
{
|
3147
3149
|
"disabled": false,
|
3148
|
-
"document": "
|
3150
|
+
"document": "创建时间。",
|
3149
3151
|
"example": "2023-12-01 00:00:00",
|
3150
3152
|
"member": "datetime_iso",
|
3151
3153
|
"name": "CreatedTime",
|
3152
3154
|
"output_required": false,
|
3153
3155
|
"type": "string",
|
3154
|
-
"value_allowed_null":
|
3156
|
+
"value_allowed_null": false
|
3155
3157
|
},
|
3156
3158
|
{
|
3157
3159
|
"disabled": false,
|
3158
|
-
"document": "
|
3160
|
+
"document": "上次更新时间。",
|
3159
3161
|
"example": "2023-12-01 00:00:00",
|
3160
3162
|
"member": "datetime_iso",
|
3161
3163
|
"name": "UpdatedTime",
|
3162
3164
|
"output_required": false,
|
3163
3165
|
"type": "string",
|
3164
|
-
"value_allowed_null":
|
3166
|
+
"value_allowed_null": false
|
3165
3167
|
}
|
3166
3168
|
],
|
3167
3169
|
"usage": "out"
|
@@ -3253,7 +3255,7 @@
|
|
3253
3255
|
{
|
3254
3256
|
"disabled": false,
|
3255
3257
|
"document": "启用自定义参数功能时,自定义参数的默认取值。字段类型为json encoded string。如:{\\\"varA\\\": \\\"222\\\"}。\nkey为自定义参数名称,value为该参数的默认取值。kv均为字符串型。\n如果 Parameters 未提供,将使用这里的默认值进行替换。\n自定义参数最多20个。\n自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。",
|
3256
|
-
"example": "{
|
3258
|
+
"example": "{\"varA\": \"222\"}",
|
3257
3259
|
"member": "string",
|
3258
3260
|
"name": "DefaultParameters",
|
3259
3261
|
"required": false,
|
@@ -3271,7 +3273,7 @@
|
|
3271
3273
|
{
|
3272
3274
|
"disabled": false,
|
3273
3275
|
"document": "Command 的自定义参数。字段类型为json encoded string。如:{\\\"varA\\\": \\\"222\\\"}。\nkey为自定义参数名称,value为该参数的默认取值。kv均为字符串型。\n如果未提供该参数取值,将使用 DefaultParameters 进行替换。\n自定义参数最多20个。\n自定义参数名称需符合以下规范:字符数目上限64,可选范围【a-zA-Z0-9-_】。",
|
3274
|
-
"example": "{
|
3276
|
+
"example": "{\"varA\": \"222\"}",
|
3275
3277
|
"member": "string",
|
3276
3278
|
"name": "Parameters",
|
3277
3279
|
"required": false,
|
@@ -3353,58 +3355,58 @@
|
|
3353
3355
|
"members": [
|
3354
3356
|
{
|
3355
3357
|
"disabled": false,
|
3356
|
-
"document": "场景 ID
|
3358
|
+
"document": "场景 ID 。",
|
3357
3359
|
"example": "sc-12345678",
|
3358
3360
|
"member": "string",
|
3359
3361
|
"name": "SceneId",
|
3360
3362
|
"output_required": false,
|
3361
3363
|
"required": false,
|
3362
3364
|
"type": "string",
|
3363
|
-
"value_allowed_null":
|
3365
|
+
"value_allowed_null": false
|
3364
3366
|
},
|
3365
3367
|
{
|
3366
3368
|
"disabled": false,
|
3367
|
-
"document": "
|
3369
|
+
"document": "场景名称。",
|
3368
3370
|
"example": "运维场景",
|
3369
3371
|
"member": "string",
|
3370
3372
|
"name": "SceneName",
|
3371
|
-
"output_required":
|
3373
|
+
"output_required": true,
|
3372
3374
|
"required": false,
|
3373
3375
|
"type": "string",
|
3374
|
-
"value_allowed_null":
|
3376
|
+
"value_allowed_null": false
|
3375
3377
|
},
|
3376
3378
|
{
|
3377
3379
|
"disabled": false,
|
3378
|
-
"document": "
|
3380
|
+
"document": "场景创建者。",
|
3379
3381
|
"example": "USER",
|
3380
3382
|
"member": "string",
|
3381
3383
|
"name": "CreatedBy",
|
3382
|
-
"output_required":
|
3384
|
+
"output_required": true,
|
3383
3385
|
"required": false,
|
3384
3386
|
"type": "string",
|
3385
|
-
"value_allowed_null":
|
3387
|
+
"value_allowed_null": false
|
3386
3388
|
},
|
3387
3389
|
{
|
3388
3390
|
"disabled": false,
|
3389
|
-
"document": "
|
3391
|
+
"document": "创建时间。",
|
3390
3392
|
"example": "2021-05-12T02:49:04Z",
|
3391
3393
|
"member": "string",
|
3392
3394
|
"name": "CreatedTime",
|
3393
3395
|
"output_required": false,
|
3394
3396
|
"required": false,
|
3395
3397
|
"type": "string",
|
3396
|
-
"value_allowed_null":
|
3398
|
+
"value_allowed_null": false
|
3397
3399
|
},
|
3398
3400
|
{
|
3399
3401
|
"disabled": false,
|
3400
|
-
"document": "
|
3402
|
+
"document": "更新时间。",
|
3401
3403
|
"example": "2021-05-12T02:49:04Z",
|
3402
3404
|
"member": "string",
|
3403
3405
|
"name": "UpdatedTime",
|
3404
3406
|
"output_required": false,
|
3405
3407
|
"required": false,
|
3406
3408
|
"type": "string",
|
3407
|
-
"value_allowed_null":
|
3409
|
+
"value_allowed_null": false
|
3408
3410
|
}
|
3409
3411
|
],
|
3410
3412
|
"usage": "both"
|