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
@@ -1,12 +1,5 @@
|
|
1
1
|
{
|
2
2
|
"actions": {
|
3
|
-
"CreateAudit": {
|
4
|
-
"document": "参数要求:\n1、如果IsCreateNewBucket的值存在的话,cosRegion和cosBucketName都是必填参数。\n2、如果IsEnableCmqNotify的值是1的话,IsCreateNewQueue、CmqRegion和CmqQueueName都是必填参数。\n3、如果IsEnableCmqNotify的值是0的话,IsCreateNewQueue、CmqRegion和CmqQueueName都不能传。\n4、如果IsEnableKmsEncry的值是1的话,KmsRegion和KeyId属于必填项",
|
5
|
-
"input": "CreateAuditRequest",
|
6
|
-
"name": "创建跟踪集",
|
7
|
-
"output": "CreateAuditResponse",
|
8
|
-
"status": "online"
|
9
|
-
},
|
10
3
|
"CreateAuditTrack": {
|
11
4
|
"document": "创建操作审计跟踪集",
|
12
5
|
"input": "CreateAuditTrackRequest",
|
@@ -14,11 +7,11 @@
|
|
14
7
|
"output": "CreateAuditTrackResponse",
|
15
8
|
"status": "online"
|
16
9
|
},
|
17
|
-
"
|
18
|
-
"document": "
|
19
|
-
"input": "
|
20
|
-
"name": "
|
21
|
-
"output": "
|
10
|
+
"CreateEventsAuditTrack": {
|
11
|
+
"document": "创建操作审计跟踪集",
|
12
|
+
"input": "CreateEventsAuditTrackRequest",
|
13
|
+
"name": "创建操作审计跟踪集(多事件)",
|
14
|
+
"output": "CreateEventsAuditTrackResponse",
|
22
15
|
"status": "online"
|
23
16
|
},
|
24
17
|
"DeleteAuditTrack": {
|
@@ -78,16 +71,16 @@
|
|
78
71
|
"status": "online"
|
79
72
|
},
|
80
73
|
"ListCmqEnableRegion": {
|
81
|
-
"document": "
|
74
|
+
"document": "查询操作审计支持的cmq的可用区",
|
82
75
|
"input": "ListCmqEnableRegionRequest",
|
83
|
-
"name": "
|
76
|
+
"name": "查询操作审计支持的cmq的可用区",
|
84
77
|
"output": "ListCmqEnableRegionResponse",
|
85
78
|
"status": "online"
|
86
79
|
},
|
87
80
|
"ListCosEnableRegion": {
|
88
|
-
"document": "
|
81
|
+
"document": "查询操作审计支持的cos可用区",
|
89
82
|
"input": "ListCosEnableRegionRequest",
|
90
|
-
"name": "
|
83
|
+
"name": "查询操作审计支持的cos可用区",
|
91
84
|
"output": "ListCosEnableRegionResponse",
|
92
85
|
"status": "online"
|
93
86
|
},
|
@@ -112,6 +105,13 @@
|
|
112
105
|
"output": "ModifyAuditTrackResponse",
|
113
106
|
"status": "online"
|
114
107
|
},
|
108
|
+
"ModifyEventsAuditTrack": {
|
109
|
+
"document": "修改操作审计跟踪集",
|
110
|
+
"input": "ModifyEventsAuditTrackRequest",
|
111
|
+
"name": "修改操作审计跟踪集(多事件)",
|
112
|
+
"output": "ModifyEventsAuditTrackResponse",
|
113
|
+
"status": "online"
|
114
|
+
},
|
115
115
|
"StartLogging": {
|
116
116
|
"document": "开启跟踪集",
|
117
117
|
"input": "StartLoggingRequest",
|
@@ -248,191 +248,141 @@
|
|
248
248
|
"members": [
|
249
249
|
{
|
250
250
|
"disabled": false,
|
251
|
-
"document": "
|
251
|
+
"document": "地域描述\n注意:此字段可能返回 null,表示取不到有效值。",
|
252
252
|
"example": "xx",
|
253
253
|
"member": "string",
|
254
254
|
"name": "CmqRegionName",
|
255
|
+
"output_required": false,
|
255
256
|
"required": false,
|
256
257
|
"type": "string",
|
257
|
-
"value_allowed_null":
|
258
|
+
"value_allowed_null": true
|
258
259
|
},
|
259
260
|
{
|
260
261
|
"disabled": false,
|
261
|
-
"document": "cmq
|
262
|
+
"document": "cmq地域\n注意:此字段可能返回 null,表示取不到有效值。",
|
262
263
|
"example": "xx",
|
263
264
|
"member": "string",
|
264
265
|
"name": "CmqRegion",
|
266
|
+
"output_required": false,
|
265
267
|
"required": false,
|
266
268
|
"type": "string",
|
267
|
-
"value_allowed_null":
|
269
|
+
"value_allowed_null": true
|
268
270
|
}
|
269
271
|
],
|
270
|
-
"usage": "
|
272
|
+
"usage": "both"
|
271
273
|
},
|
272
274
|
"CosRegionInfo": {
|
273
275
|
"document": "cos地域信息",
|
274
276
|
"members": [
|
275
277
|
{
|
276
278
|
"disabled": false,
|
277
|
-
"document": "cos
|
279
|
+
"document": "cos地域\n注意:此字段可能返回 null,表示取不到有效值。",
|
278
280
|
"example": "xx",
|
279
281
|
"member": "string",
|
280
282
|
"name": "CosRegion",
|
283
|
+
"output_required": false,
|
281
284
|
"required": false,
|
282
285
|
"type": "string",
|
283
|
-
"value_allowed_null":
|
286
|
+
"value_allowed_null": true
|
284
287
|
},
|
285
288
|
{
|
286
289
|
"disabled": false,
|
287
|
-
"document": "
|
290
|
+
"document": "地域描述\n注意:此字段可能返回 null,表示取不到有效值。",
|
288
291
|
"example": "xx",
|
289
292
|
"member": "string",
|
290
293
|
"name": "CosRegionName",
|
294
|
+
"output_required": false,
|
291
295
|
"required": false,
|
292
296
|
"type": "string",
|
293
|
-
"value_allowed_null":
|
297
|
+
"value_allowed_null": true
|
294
298
|
}
|
295
299
|
],
|
296
|
-
"usage": "
|
300
|
+
"usage": "both"
|
297
301
|
},
|
298
|
-
"
|
299
|
-
"document": "
|
302
|
+
"CreateAuditTrackRequest": {
|
303
|
+
"document": "CreateAuditTrack请求参数结构体",
|
300
304
|
"members": [
|
301
305
|
{
|
302
306
|
"disabled": false,
|
303
|
-
"document": "
|
304
|
-
"example": "
|
305
|
-
"member": "int64",
|
306
|
-
"name": "IsEnableCmqNotify",
|
307
|
-
"required": true,
|
308
|
-
"type": "int"
|
309
|
-
},
|
310
|
-
{
|
311
|
-
"disabled": false,
|
312
|
-
"document": "管理事件的读写属性。1:只读,2:只写,3:全部。",
|
313
|
-
"example": "1",
|
314
|
-
"member": "int64",
|
315
|
-
"name": "ReadWriteAttribute",
|
316
|
-
"required": true,
|
317
|
-
"type": "int"
|
318
|
-
},
|
319
|
-
{
|
320
|
-
"disabled": false,
|
321
|
-
"document": "跟踪集名称。3-128字符,只能包含 ASCII 编码字母 a-z,A-Z,数字 0-9,下划线 _。",
|
322
|
-
"example": "xx",
|
323
|
-
"member": "string",
|
324
|
-
"name": "AuditName",
|
325
|
-
"required": true,
|
326
|
-
"type": "string"
|
327
|
-
},
|
328
|
-
{
|
329
|
-
"disabled": false,
|
330
|
-
"document": "cos地域。目前支持的地域可以使用ListCosEnableRegion来获取。",
|
331
|
-
"example": "xx",
|
307
|
+
"document": "跟踪集名称,仅支持大小写字母、数字、-以及_的组合,3-48个字符",
|
308
|
+
"example": "操作审计",
|
332
309
|
"member": "string",
|
333
|
-
"name": "
|
310
|
+
"name": "Name",
|
334
311
|
"required": true,
|
335
312
|
"type": "string"
|
336
313
|
},
|
337
314
|
{
|
338
315
|
"disabled": false,
|
339
|
-
"document": "
|
316
|
+
"document": "跟踪集状态(未开启:0;开启:1)",
|
340
317
|
"example": "1",
|
341
|
-
"member": "
|
342
|
-
"name": "
|
318
|
+
"member": "uint64",
|
319
|
+
"name": "Status",
|
343
320
|
"required": true,
|
344
321
|
"type": "int"
|
345
322
|
},
|
346
323
|
{
|
347
324
|
"disabled": false,
|
348
|
-
"document": "cos
|
349
|
-
"example": "
|
350
|
-
"member": "
|
351
|
-
"name": "
|
325
|
+
"document": "数据投递存储(目前支持 cos、cls)",
|
326
|
+
"example": "cos",
|
327
|
+
"member": "Storage",
|
328
|
+
"name": "Storage",
|
352
329
|
"required": true,
|
353
|
-
"type": "
|
354
|
-
},
|
355
|
-
{
|
356
|
-
"disabled": false,
|
357
|
-
"document": "CMK的全局唯一标识符,如果不是新创建的kms,该值是必填值。可以通过ListKeyAliasByRegion来获取。云审计不会校验KeyId的合法性,请您谨慎填写,避免给您的数据造成损失。",
|
358
|
-
"example": "xx",
|
359
|
-
"member": "string",
|
360
|
-
"name": "KeyId",
|
361
|
-
"required": false,
|
362
|
-
"type": "string"
|
363
|
-
},
|
364
|
-
{
|
365
|
-
"disabled": false,
|
366
|
-
"document": "队列名称。队列名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。如果IsEnableCmqNotify值是1的话,此值属于必填字段。如果不是新创建的队列,云审计不会去校验该队列是否真的存在,请谨慎填写,避免日志通知不成功,导致您的数据丢失。",
|
367
|
-
"example": "xx",
|
368
|
-
"member": "string",
|
369
|
-
"name": "CmqQueueName",
|
370
|
-
"required": false,
|
371
|
-
"type": "string"
|
330
|
+
"type": "object"
|
372
331
|
},
|
373
332
|
{
|
374
333
|
"disabled": false,
|
375
|
-
"document": "
|
376
|
-
"example": "
|
334
|
+
"document": "跟踪事件类型(读:Read;写:Write;全部:*)",
|
335
|
+
"example": "Read",
|
377
336
|
"member": "string",
|
378
|
-
"name": "
|
379
|
-
"required":
|
337
|
+
"name": "ActionType",
|
338
|
+
"required": true,
|
380
339
|
"type": "string"
|
381
340
|
},
|
382
341
|
{
|
383
342
|
"disabled": false,
|
384
|
-
"document": "
|
385
|
-
"example": "
|
386
|
-
"member": "int64",
|
387
|
-
"name": "IsEnableKmsEncry",
|
388
|
-
"required": false,
|
389
|
-
"type": "int"
|
390
|
-
},
|
391
|
-
{
|
392
|
-
"disabled": false,
|
393
|
-
"document": "队列所在的地域。可以通过ListCmqEnableRegion获取支持的cmq地域。如果IsEnableCmqNotify值是1的话,此值属于必填字段。",
|
394
|
-
"example": "xx",
|
343
|
+
"document": "跟踪事件所属产品(支持全部产品或单个产品,如:cos,全部:*)",
|
344
|
+
"example": "*",
|
395
345
|
"member": "string",
|
396
|
-
"name": "
|
397
|
-
"required":
|
346
|
+
"name": "ResourceType",
|
347
|
+
"required": true,
|
398
348
|
"type": "string"
|
399
349
|
},
|
400
350
|
{
|
401
351
|
"disabled": false,
|
402
|
-
"document": "
|
403
|
-
"example": "
|
352
|
+
"document": "跟踪事件接口名列表(ResourceType为 * 时,EventNames必须为全部:[\"*\"];指定ResourceType时,支持全部接口:[\"*\"];支持部分接口:[\"cos\", \"cls\"],接口列表上限10个)",
|
353
|
+
"example": "[*]",
|
404
354
|
"member": "string",
|
405
|
-
"name": "
|
406
|
-
"required":
|
407
|
-
"type": "
|
355
|
+
"name": "EventNames",
|
356
|
+
"required": true,
|
357
|
+
"type": "list"
|
408
358
|
},
|
409
359
|
{
|
410
360
|
"disabled": false,
|
411
|
-
"document": "
|
361
|
+
"document": "是否开启将集团成员操作日志投递到集团管理账号或者可信服务管理账号(0:未开启,1:开启,只能集团管理账号或者可信服务管理账号开启此项功能) ",
|
412
362
|
"example": "1",
|
413
|
-
"member": "
|
414
|
-
"name": "
|
363
|
+
"member": "uint64",
|
364
|
+
"name": "TrackForAllMembers",
|
415
365
|
"required": false,
|
416
366
|
"type": "int"
|
417
367
|
}
|
418
368
|
],
|
419
369
|
"type": "object"
|
420
370
|
},
|
421
|
-
"
|
422
|
-
"document": "
|
371
|
+
"CreateAuditTrackResponse": {
|
372
|
+
"document": "CreateAuditTrack返回参数结构体",
|
423
373
|
"members": [
|
424
374
|
{
|
425
375
|
"disabled": false,
|
426
|
-
"document": "
|
376
|
+
"document": "跟踪集 ID",
|
427
377
|
"example": "1",
|
428
|
-
"member": "
|
429
|
-
"name": "
|
430
|
-
"
|
378
|
+
"member": "uint64",
|
379
|
+
"name": "TrackId",
|
380
|
+
"output_required": true,
|
431
381
|
"type": "int",
|
432
382
|
"value_allowed_null": false
|
433
383
|
},
|
434
384
|
{
|
435
|
-
"document": "唯一请求 ID
|
385
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
436
386
|
"member": "string",
|
437
387
|
"name": "RequestId",
|
438
388
|
"type": "string"
|
@@ -440,36 +390,18 @@
|
|
440
390
|
],
|
441
391
|
"type": "object"
|
442
392
|
},
|
443
|
-
"
|
444
|
-
"document": "
|
393
|
+
"CreateEventsAuditTrackRequest": {
|
394
|
+
"document": "CreateEventsAuditTrack请求参数结构体",
|
445
395
|
"members": [
|
446
396
|
{
|
447
397
|
"disabled": false,
|
448
398
|
"document": "跟踪集名称,仅支持大小写字母、数字、-以及_的组合,3-48个字符",
|
449
|
-
"example": "
|
399
|
+
"example": "操作审计",
|
450
400
|
"member": "string",
|
451
401
|
"name": "Name",
|
452
402
|
"required": true,
|
453
403
|
"type": "string"
|
454
404
|
},
|
455
|
-
{
|
456
|
-
"disabled": false,
|
457
|
-
"document": "跟踪事件类型(读:Read;写:Write;全部:*)",
|
458
|
-
"example": "Read",
|
459
|
-
"member": "string",
|
460
|
-
"name": "ActionType",
|
461
|
-
"required": true,
|
462
|
-
"type": "string"
|
463
|
-
},
|
464
|
-
{
|
465
|
-
"disabled": false,
|
466
|
-
"document": "跟踪事件所属产品(支持全部产品或单个产品,如:cos,全部:*)",
|
467
|
-
"example": "*",
|
468
|
-
"member": "string",
|
469
|
-
"name": "ResourceType",
|
470
|
-
"required": true,
|
471
|
-
"type": "string"
|
472
|
-
},
|
473
405
|
{
|
474
406
|
"disabled": false,
|
475
407
|
"document": "跟踪集状态(未开启:0;开启:1)",
|
@@ -479,15 +411,6 @@
|
|
479
411
|
"required": true,
|
480
412
|
"type": "int"
|
481
413
|
},
|
482
|
-
{
|
483
|
-
"disabled": false,
|
484
|
-
"document": "跟踪事件接口名列表(ResourceType为 * 时,EventNames必须为全部:[\"*\"];指定ResourceType时,支持全部接口:[\"*\"];支持部分接口:[\"cos\", \"cls\"],接口列表上限10个)",
|
485
|
-
"example": "[*]",
|
486
|
-
"member": "string",
|
487
|
-
"name": "EventNames",
|
488
|
-
"required": true,
|
489
|
-
"type": "list"
|
490
|
-
},
|
491
414
|
{
|
492
415
|
"disabled": false,
|
493
416
|
"document": "数据投递存储(目前支持 cos、cls)",
|
@@ -497,6 +420,15 @@
|
|
497
420
|
"required": true,
|
498
421
|
"type": "object"
|
499
422
|
},
|
423
|
+
{
|
424
|
+
"disabled": false,
|
425
|
+
"document": "数据过滤条件",
|
426
|
+
"example": "无",
|
427
|
+
"member": "Filter",
|
428
|
+
"name": "Filters",
|
429
|
+
"required": true,
|
430
|
+
"type": "object"
|
431
|
+
},
|
500
432
|
{
|
501
433
|
"disabled": false,
|
502
434
|
"document": "是否开启将集团成员操作日志投递到集团管理账号或者可信服务管理账号(0:未开启,1:开启,只能集团管理账号或者可信服务管理账号开启此项功能) ",
|
@@ -509,8 +441,8 @@
|
|
509
441
|
],
|
510
442
|
"type": "object"
|
511
443
|
},
|
512
|
-
"
|
513
|
-
"document": "
|
444
|
+
"CreateEventsAuditTrackResponse": {
|
445
|
+
"document": "CreateEventsAuditTrack返回参数结构体",
|
514
446
|
"members": [
|
515
447
|
{
|
516
448
|
"disabled": false,
|
@@ -523,44 +455,7 @@
|
|
523
455
|
"value_allowed_null": false
|
524
456
|
},
|
525
457
|
{
|
526
|
-
"document": "唯一请求 ID
|
527
|
-
"member": "string",
|
528
|
-
"name": "RequestId",
|
529
|
-
"type": "string"
|
530
|
-
}
|
531
|
-
],
|
532
|
-
"type": "object"
|
533
|
-
},
|
534
|
-
"DeleteAuditRequest": {
|
535
|
-
"document": "DeleteAudit请求参数结构体",
|
536
|
-
"members": [
|
537
|
-
{
|
538
|
-
"disabled": false,
|
539
|
-
"document": "跟踪集名称",
|
540
|
-
"example": "xx",
|
541
|
-
"member": "string",
|
542
|
-
"name": "AuditName",
|
543
|
-
"required": true,
|
544
|
-
"type": "string"
|
545
|
-
}
|
546
|
-
],
|
547
|
-
"type": "object"
|
548
|
-
},
|
549
|
-
"DeleteAuditResponse": {
|
550
|
-
"document": "DeleteAudit返回参数结构体",
|
551
|
-
"members": [
|
552
|
-
{
|
553
|
-
"disabled": false,
|
554
|
-
"document": "是否删除成功",
|
555
|
-
"example": "1",
|
556
|
-
"member": "int64",
|
557
|
-
"name": "IsSuccess",
|
558
|
-
"required": true,
|
559
|
-
"type": "int",
|
560
|
-
"value_allowed_null": false
|
561
|
-
},
|
562
|
-
{
|
563
|
-
"document": "唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。",
|
458
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
564
459
|
"member": "string",
|
565
460
|
"name": "RequestId",
|
566
461
|
"type": "string"
|
@@ -587,7 +482,7 @@
|
|
587
482
|
"document": "DeleteAuditTrack返回参数结构体",
|
588
483
|
"members": [
|
589
484
|
{
|
590
|
-
"document": "唯一请求 ID
|
485
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
591
486
|
"member": "string",
|
592
487
|
"name": "RequestId",
|
593
488
|
"type": "string"
|
@@ -744,7 +639,7 @@
|
|
744
639
|
"value_allowed_null": false
|
745
640
|
},
|
746
641
|
{
|
747
|
-
"document": "唯一请求 ID
|
642
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
748
643
|
"member": "string",
|
749
644
|
"name": "RequestId",
|
750
645
|
"type": "string"
|
@@ -851,7 +746,17 @@
|
|
851
746
|
"value_allowed_null": true
|
852
747
|
},
|
853
748
|
{
|
854
|
-
"
|
749
|
+
"disabled": false,
|
750
|
+
"document": "数据投递过滤条件\n注意:此字段可能返回 null,表示取不到有效值。",
|
751
|
+
"example": "无",
|
752
|
+
"member": "Filter",
|
753
|
+
"name": "Filters",
|
754
|
+
"output_required": false,
|
755
|
+
"type": "object",
|
756
|
+
"value_allowed_null": true
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
855
760
|
"member": "string",
|
856
761
|
"name": "RequestId",
|
857
762
|
"type": "string"
|
@@ -907,7 +812,7 @@
|
|
907
812
|
"value_allowed_null": false
|
908
813
|
},
|
909
814
|
{
|
910
|
-
"document": "唯一请求 ID
|
815
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
911
816
|
"member": "string",
|
912
817
|
"name": "RequestId",
|
913
818
|
"type": "string"
|
@@ -1019,7 +924,7 @@
|
|
1019
924
|
"value_allowed_null": true
|
1020
925
|
},
|
1021
926
|
{
|
1022
|
-
"document": "唯一请求 ID
|
927
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1023
928
|
"member": "string",
|
1024
929
|
"name": "RequestId",
|
1025
930
|
"type": "string"
|
@@ -1203,6 +1108,23 @@
|
|
1203
1108
|
],
|
1204
1109
|
"usage": "both"
|
1205
1110
|
},
|
1111
|
+
"Filter": {
|
1112
|
+
"document": "跟踪集数据投递筛选条件",
|
1113
|
+
"members": [
|
1114
|
+
{
|
1115
|
+
"disabled": false,
|
1116
|
+
"document": "资源筛选条件\n注意:此字段可能返回 null,表示取不到有效值。",
|
1117
|
+
"example": "无",
|
1118
|
+
"member": "ResourceField",
|
1119
|
+
"name": "ResourceFields",
|
1120
|
+
"output_required": false,
|
1121
|
+
"required": false,
|
1122
|
+
"type": "list",
|
1123
|
+
"value_allowed_null": true
|
1124
|
+
}
|
1125
|
+
],
|
1126
|
+
"usage": "both"
|
1127
|
+
},
|
1206
1128
|
"GetAttributeKeyRequest": {
|
1207
1129
|
"document": "GetAttributeKey请求参数结构体",
|
1208
1130
|
"members": [
|
@@ -1232,7 +1154,7 @@
|
|
1232
1154
|
"value_allowed_null": false
|
1233
1155
|
},
|
1234
1156
|
{
|
1235
|
-
"document": "唯一请求 ID
|
1157
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1236
1158
|
"member": "string",
|
1237
1159
|
"name": "RequestId",
|
1238
1160
|
"type": "string"
|
@@ -1259,7 +1181,7 @@
|
|
1259
1181
|
"value_allowed_null": false
|
1260
1182
|
},
|
1261
1183
|
{
|
1262
|
-
"document": "唯一请求 ID
|
1184
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1263
1185
|
"member": "string",
|
1264
1186
|
"name": "RequestId",
|
1265
1187
|
"type": "string"
|
@@ -1312,7 +1234,7 @@
|
|
1312
1234
|
"value_allowed_null": true
|
1313
1235
|
},
|
1314
1236
|
{
|
1315
|
-
"document": "唯一请求 ID
|
1237
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1316
1238
|
"member": "string",
|
1317
1239
|
"name": "RequestId",
|
1318
1240
|
"type": "string"
|
@@ -1340,16 +1262,16 @@
|
|
1340
1262
|
"members": [
|
1341
1263
|
{
|
1342
1264
|
"disabled": false,
|
1343
|
-
"document": "
|
1265
|
+
"document": "操作审计支持的cmq的可用区",
|
1344
1266
|
"example": "xx",
|
1345
1267
|
"member": "CmqRegionInfo",
|
1346
1268
|
"name": "EnableRegions",
|
1347
|
-
"
|
1269
|
+
"output_required": true,
|
1348
1270
|
"type": "list",
|
1349
1271
|
"value_allowed_null": false
|
1350
1272
|
},
|
1351
1273
|
{
|
1352
|
-
"document": "唯一请求 ID
|
1274
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1353
1275
|
"member": "string",
|
1354
1276
|
"name": "RequestId",
|
1355
1277
|
"type": "string"
|
@@ -1377,16 +1299,16 @@
|
|
1377
1299
|
"members": [
|
1378
1300
|
{
|
1379
1301
|
"disabled": false,
|
1380
|
-
"document": "
|
1302
|
+
"document": "操作审计支持的cos可用区",
|
1381
1303
|
"example": "xx",
|
1382
1304
|
"member": "CosRegionInfo",
|
1383
1305
|
"name": "EnableRegions",
|
1384
|
-
"
|
1306
|
+
"output_required": true,
|
1385
1307
|
"type": "list",
|
1386
1308
|
"value_allowed_null": false
|
1387
1309
|
},
|
1388
1310
|
{
|
1389
|
-
"document": "唯一请求 ID
|
1311
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1390
1312
|
"member": "string",
|
1391
1313
|
"name": "RequestId",
|
1392
1314
|
"type": "string"
|
@@ -1451,7 +1373,7 @@
|
|
1451
1373
|
"value_allowed_null": false
|
1452
1374
|
},
|
1453
1375
|
{
|
1454
|
-
"document": "唯一请求 ID
|
1376
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1455
1377
|
"member": "string",
|
1456
1378
|
"name": "RequestId",
|
1457
1379
|
"type": "string"
|
@@ -1509,7 +1431,7 @@
|
|
1509
1431
|
},
|
1510
1432
|
{
|
1511
1433
|
"disabled": false,
|
1512
|
-
"document": "
|
1434
|
+
"document": "操作审计模式,有效值:standard | quick,其中standard是标准模式,quick是极速模式。默认为标准模式",
|
1513
1435
|
"example": "standard ",
|
1514
1436
|
"member": "string",
|
1515
1437
|
"name": "Mode",
|
@@ -1528,7 +1450,7 @@
|
|
1528
1450
|
"example": "xxxxxxx",
|
1529
1451
|
"member": "string",
|
1530
1452
|
"name": "NextToken",
|
1531
|
-
"
|
1453
|
+
"output_required": true,
|
1532
1454
|
"type": "string",
|
1533
1455
|
"value_allowed_null": true
|
1534
1456
|
},
|
@@ -1538,7 +1460,7 @@
|
|
1538
1460
|
"example": "无",
|
1539
1461
|
"member": "Event",
|
1540
1462
|
"name": "Events",
|
1541
|
-
"
|
1463
|
+
"output_required": true,
|
1542
1464
|
"type": "list",
|
1543
1465
|
"value_allowed_null": true
|
1544
1466
|
},
|
@@ -1548,12 +1470,22 @@
|
|
1548
1470
|
"example": "1",
|
1549
1471
|
"member": "bool",
|
1550
1472
|
"name": "ListOver",
|
1551
|
-
"
|
1473
|
+
"output_required": true,
|
1552
1474
|
"type": "bool",
|
1553
1475
|
"value_allowed_null": true
|
1554
1476
|
},
|
1555
1477
|
{
|
1556
|
-
"
|
1478
|
+
"disabled": false,
|
1479
|
+
"document": "数量\n注意:此字段可能返回 null,表示取不到有效值。",
|
1480
|
+
"example": "2",
|
1481
|
+
"member": "uint64",
|
1482
|
+
"name": "TotalCount",
|
1483
|
+
"output_required": true,
|
1484
|
+
"type": "int",
|
1485
|
+
"value_allowed_null": true
|
1486
|
+
},
|
1487
|
+
{
|
1488
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1557
1489
|
"member": "string",
|
1558
1490
|
"name": "RequestId",
|
1559
1491
|
"type": "string"
|
@@ -1602,7 +1534,7 @@
|
|
1602
1534
|
{
|
1603
1535
|
"disabled": false,
|
1604
1536
|
"document": "跟踪集名称,仅支持大小写字母、数字、-以及_的组合,3-48个字符",
|
1605
|
-
"example": "
|
1537
|
+
"example": "操作审计",
|
1606
1538
|
"member": "string",
|
1607
1539
|
"name": "Name",
|
1608
1540
|
"required": false,
|
@@ -1669,7 +1601,79 @@
|
|
1669
1601
|
"document": "ModifyAuditTrack返回参数结构体",
|
1670
1602
|
"members": [
|
1671
1603
|
{
|
1672
|
-
"document": "唯一请求 ID
|
1604
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1605
|
+
"member": "string",
|
1606
|
+
"name": "RequestId",
|
1607
|
+
"type": "string"
|
1608
|
+
}
|
1609
|
+
],
|
1610
|
+
"type": "object"
|
1611
|
+
},
|
1612
|
+
"ModifyEventsAuditTrackRequest": {
|
1613
|
+
"document": "ModifyEventsAuditTrack请求参数结构体",
|
1614
|
+
"members": [
|
1615
|
+
{
|
1616
|
+
"disabled": false,
|
1617
|
+
"document": "跟踪集 ID",
|
1618
|
+
"example": "1",
|
1619
|
+
"member": "uint64",
|
1620
|
+
"name": "TrackId",
|
1621
|
+
"required": true,
|
1622
|
+
"type": "int"
|
1623
|
+
},
|
1624
|
+
{
|
1625
|
+
"disabled": false,
|
1626
|
+
"document": "跟踪集名称,仅支持大小写字母、数字、-以及_的组合,3-48个字符",
|
1627
|
+
"example": "操作审计",
|
1628
|
+
"member": "string",
|
1629
|
+
"name": "Name",
|
1630
|
+
"required": false,
|
1631
|
+
"type": "string"
|
1632
|
+
},
|
1633
|
+
{
|
1634
|
+
"disabled": false,
|
1635
|
+
"document": "跟踪集状态(未开启:0;开启:1)",
|
1636
|
+
"example": "1",
|
1637
|
+
"member": "uint64",
|
1638
|
+
"name": "Status",
|
1639
|
+
"required": false,
|
1640
|
+
"type": "int"
|
1641
|
+
},
|
1642
|
+
{
|
1643
|
+
"disabled": false,
|
1644
|
+
"document": "数据投递存储(目前支持 cos、cls)",
|
1645
|
+
"example": "cos",
|
1646
|
+
"member": "Storage",
|
1647
|
+
"name": "Storage",
|
1648
|
+
"required": false,
|
1649
|
+
"type": "object"
|
1650
|
+
},
|
1651
|
+
{
|
1652
|
+
"disabled": false,
|
1653
|
+
"document": "是否开启将集团成员操作日志投递到集团管理账号或者可信服务管理账号(0:未开启,1:开启,只能集团管理账号或者可信服务管理账号开启此项功能)",
|
1654
|
+
"example": "1",
|
1655
|
+
"member": "uint64",
|
1656
|
+
"name": "TrackForAllMembers",
|
1657
|
+
"required": false,
|
1658
|
+
"type": "int"
|
1659
|
+
},
|
1660
|
+
{
|
1661
|
+
"disabled": false,
|
1662
|
+
"document": "多产品筛选过滤条件",
|
1663
|
+
"example": "无",
|
1664
|
+
"member": "Filter",
|
1665
|
+
"name": "Filters",
|
1666
|
+
"required": false,
|
1667
|
+
"type": "object"
|
1668
|
+
}
|
1669
|
+
],
|
1670
|
+
"type": "object"
|
1671
|
+
},
|
1672
|
+
"ModifyEventsAuditTrackResponse": {
|
1673
|
+
"document": "ModifyEventsAuditTrack返回参数结构体",
|
1674
|
+
"members": [
|
1675
|
+
{
|
1676
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1673
1677
|
"member": "string",
|
1674
1678
|
"name": "RequestId",
|
1675
1679
|
"type": "string"
|
@@ -1705,6 +1709,45 @@
|
|
1705
1709
|
],
|
1706
1710
|
"usage": "both"
|
1707
1711
|
},
|
1712
|
+
"ResourceField": {
|
1713
|
+
"document": "资源筛选条件",
|
1714
|
+
"members": [
|
1715
|
+
{
|
1716
|
+
"disabled": false,
|
1717
|
+
"document": "跟踪事件所属产品(支持全部产品或单个产品,如:cam,全部:*)\n注意:此字段可能返回 null,表示取不到有效值。",
|
1718
|
+
"example": "无",
|
1719
|
+
"member": "string",
|
1720
|
+
"name": "ResourceType",
|
1721
|
+
"output_required": false,
|
1722
|
+
"required": true,
|
1723
|
+
"type": "string",
|
1724
|
+
"value_allowed_null": true
|
1725
|
+
},
|
1726
|
+
{
|
1727
|
+
"disabled": false,
|
1728
|
+
"document": "跟踪事件类型(读:Read;写:Write;全部:*)\n注意:此字段可能返回 null,表示取不到有效值。",
|
1729
|
+
"example": "无",
|
1730
|
+
"member": "string",
|
1731
|
+
"name": "ActionType",
|
1732
|
+
"output_required": false,
|
1733
|
+
"required": true,
|
1734
|
+
"type": "string",
|
1735
|
+
"value_allowed_null": true
|
1736
|
+
},
|
1737
|
+
{
|
1738
|
+
"disabled": false,
|
1739
|
+
"document": "跟踪事件接口名列表(ResourceType为 * 时,EventNames必须为全部:[\"\"];指定ResourceType时,支持全部接口:[\"\"];支持部分接口:[\"cos\", \"cls\"],接口列表上限10个)\n注意:此字段可能返回 null,表示取不到有效值。",
|
1740
|
+
"example": "无",
|
1741
|
+
"member": "string",
|
1742
|
+
"name": "EventNames",
|
1743
|
+
"output_required": false,
|
1744
|
+
"required": true,
|
1745
|
+
"type": "list",
|
1746
|
+
"value_allowed_null": true
|
1747
|
+
}
|
1748
|
+
],
|
1749
|
+
"usage": "both"
|
1750
|
+
},
|
1708
1751
|
"StartLoggingRequest": {
|
1709
1752
|
"document": "StartLogging请求参数结构体",
|
1710
1753
|
"members": [
|
@@ -1734,7 +1777,7 @@
|
|
1734
1777
|
"value_allowed_null": false
|
1735
1778
|
},
|
1736
1779
|
{
|
1737
|
-
"document": "唯一请求 ID
|
1780
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1738
1781
|
"member": "string",
|
1739
1782
|
"name": "RequestId",
|
1740
1783
|
"type": "string"
|
@@ -1771,7 +1814,7 @@
|
|
1771
1814
|
"value_allowed_null": false
|
1772
1815
|
},
|
1773
1816
|
{
|
1774
|
-
"document": "唯一请求 ID
|
1817
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1775
1818
|
"member": "string",
|
1776
1819
|
"name": "RequestId",
|
1777
1820
|
"type": "string"
|
@@ -2074,7 +2117,7 @@
|
|
2074
2117
|
"value_allowed_null": false
|
2075
2118
|
},
|
2076
2119
|
{
|
2077
|
-
"document": "唯一请求 ID
|
2120
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
2078
2121
|
"member": "string",
|
2079
2122
|
"name": "RequestId",
|
2080
2123
|
"type": "string"
|