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
@@ -122,7 +122,7 @@
|
|
122
122
|
"example": "wx66e50f1e*******6f",
|
123
123
|
"member": "string",
|
124
124
|
"name": "AppPackage",
|
125
|
-
"
|
125
|
+
"output_required": true,
|
126
126
|
"type": "string",
|
127
127
|
"value_allowed_null": false
|
128
128
|
},
|
@@ -132,7 +132,7 @@
|
|
132
132
|
"example": "测试小程序",
|
133
133
|
"member": "string",
|
134
134
|
"name": "AppName",
|
135
|
-
"
|
135
|
+
"output_required": true,
|
136
136
|
"type": "string",
|
137
137
|
"value_allowed_null": true
|
138
138
|
},
|
@@ -142,7 +142,7 @@
|
|
142
142
|
"example": "小程序版本",
|
143
143
|
"member": "string",
|
144
144
|
"name": "AppVersion",
|
145
|
-
"
|
145
|
+
"output_required": true,
|
146
146
|
"type": "string",
|
147
147
|
"value_allowed_null": true
|
148
148
|
},
|
@@ -152,7 +152,7 @@
|
|
152
152
|
"example": "2",
|
153
153
|
"member": "int64",
|
154
154
|
"name": "Platform",
|
155
|
-
"
|
155
|
+
"output_required": true,
|
156
156
|
"type": "int",
|
157
157
|
"value_allowed_null": false
|
158
158
|
},
|
@@ -162,7 +162,7 @@
|
|
162
162
|
"example": "诊断报告下载链接",
|
163
163
|
"member": "string",
|
164
164
|
"name": "ReportUrl",
|
165
|
-
"
|
165
|
+
"output_required": true,
|
166
166
|
"type": "string",
|
167
167
|
"value_allowed_null": true
|
168
168
|
},
|
@@ -172,7 +172,7 @@
|
|
172
172
|
"example": "诊断报告名称",
|
173
173
|
"member": "string",
|
174
174
|
"name": "ReportTitle",
|
175
|
-
"
|
175
|
+
"output_required": true,
|
176
176
|
"type": "string",
|
177
177
|
"value_allowed_null": true
|
178
178
|
},
|
@@ -182,7 +182,7 @@
|
|
182
182
|
"example": "诊断堆栈报告下载链接",
|
183
183
|
"member": "string",
|
184
184
|
"name": "BehaviorUrl",
|
185
|
-
"
|
185
|
+
"output_required": true,
|
186
186
|
"type": "string",
|
187
187
|
"value_allowed_null": true
|
188
188
|
},
|
@@ -192,7 +192,7 @@
|
|
192
192
|
"example": "诊断堆栈报告名称",
|
193
193
|
"member": "string",
|
194
194
|
"name": "BehaviorTitle",
|
195
|
-
"
|
195
|
+
"output_required": true,
|
196
196
|
"type": "string",
|
197
197
|
"value_allowed_null": true
|
198
198
|
},
|
@@ -202,7 +202,7 @@
|
|
202
202
|
"example": "5",
|
203
203
|
"member": "int64",
|
204
204
|
"name": "HighRiskCount",
|
205
|
-
"
|
205
|
+
"output_required": true,
|
206
206
|
"type": "int",
|
207
207
|
"value_allowed_null": true
|
208
208
|
},
|
@@ -212,27 +212,27 @@
|
|
212
212
|
"example": "隐私申明文本.txt",
|
213
213
|
"member": "string",
|
214
214
|
"name": "PrivacyTextName",
|
215
|
-
"
|
215
|
+
"output_required": true,
|
216
216
|
"type": "string",
|
217
217
|
"value_allowed_null": true
|
218
218
|
},
|
219
219
|
{
|
220
220
|
"disabled": false,
|
221
221
|
"document": "软件MD5\n注意:此字段可能返回 null,表示取不到有效值。",
|
222
|
-
"example": "
|
222
|
+
"example": "c799****************************593f",
|
223
223
|
"member": "string",
|
224
224
|
"name": "SoftwareMD5",
|
225
|
-
"
|
225
|
+
"output_required": true,
|
226
226
|
"type": "string",
|
227
227
|
"value_allowed_null": true
|
228
228
|
},
|
229
229
|
{
|
230
230
|
"disabled": false,
|
231
231
|
"document": "隐私文本MD5\n注意:此字段可能返回 null,表示取不到有效值。",
|
232
|
-
"example": "
|
232
|
+
"example": "3bc1****************************4523",
|
233
233
|
"member": "string",
|
234
234
|
"name": "PrivacyTextMD5",
|
235
|
-
"
|
235
|
+
"output_required": true,
|
236
236
|
"type": "string",
|
237
237
|
"value_allowed_null": true
|
238
238
|
}
|
@@ -248,7 +248,7 @@
|
|
248
248
|
"example": "1701438134******0",
|
249
249
|
"member": "string",
|
250
250
|
"name": "TaskID",
|
251
|
-
"
|
251
|
+
"output_required": true,
|
252
252
|
"type": "string",
|
253
253
|
"value_allowed_null": false
|
254
254
|
},
|
@@ -258,7 +258,7 @@
|
|
258
258
|
"example": "0",
|
259
259
|
"member": "int64",
|
260
260
|
"name": "TaskType",
|
261
|
-
"
|
261
|
+
"output_required": true,
|
262
262
|
"type": "int",
|
263
263
|
"value_allowed_null": false
|
264
264
|
},
|
@@ -268,7 +268,7 @@
|
|
268
268
|
"example": "0",
|
269
269
|
"member": "int64",
|
270
270
|
"name": "TaskStatus",
|
271
|
-
"
|
271
|
+
"output_required": true,
|
272
272
|
"type": "int",
|
273
273
|
"value_allowed_null": false
|
274
274
|
},
|
@@ -278,7 +278,7 @@
|
|
278
278
|
"example": "内部错误",
|
279
279
|
"member": "string",
|
280
280
|
"name": "TaskErrMsg",
|
281
|
-
"
|
281
|
+
"output_required": true,
|
282
282
|
"type": "string",
|
283
283
|
"value_allowed_null": true
|
284
284
|
},
|
@@ -288,7 +288,7 @@
|
|
288
288
|
"example": "0",
|
289
289
|
"member": "int64",
|
290
290
|
"name": "Source",
|
291
|
-
"
|
291
|
+
"output_required": true,
|
292
292
|
"type": "int",
|
293
293
|
"value_allowed_null": false
|
294
294
|
},
|
@@ -298,7 +298,7 @@
|
|
298
298
|
"example": " 复杂类型",
|
299
299
|
"member": "AppInfoItem",
|
300
300
|
"name": "AppInfo",
|
301
|
-
"
|
301
|
+
"output_required": true,
|
302
302
|
"type": "object",
|
303
303
|
"value_allowed_null": false
|
304
304
|
},
|
@@ -308,7 +308,7 @@
|
|
308
308
|
"example": "2021-09-30 10:57:34",
|
309
309
|
"member": "string",
|
310
310
|
"name": "StartTime",
|
311
|
-
"
|
311
|
+
"output_required": true,
|
312
312
|
"type": "string",
|
313
313
|
"value_allowed_null": false
|
314
314
|
},
|
@@ -318,17 +318,17 @@
|
|
318
318
|
"example": "2021-10-11 14:53:36",
|
319
319
|
"member": "string",
|
320
320
|
"name": "EndTime",
|
321
|
-
"
|
321
|
+
"output_required": true,
|
322
322
|
"type": "string",
|
323
323
|
"value_allowed_null": false
|
324
324
|
},
|
325
325
|
{
|
326
326
|
"disabled": false,
|
327
327
|
"document": "联系人信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
328
|
-
"example": "
|
328
|
+
"example": "张三",
|
329
329
|
"member": "string",
|
330
330
|
"name": "ContactName",
|
331
|
-
"
|
331
|
+
"output_required": true,
|
332
332
|
"type": "string",
|
333
333
|
"value_allowed_null": true
|
334
334
|
}
|
@@ -478,7 +478,7 @@
|
|
478
478
|
{
|
479
479
|
"disabled": false,
|
480
480
|
"document": "联系人信息",
|
481
|
-
"example": "
|
481
|
+
"example": "张三",
|
482
482
|
"member": "string",
|
483
483
|
"name": "ContactName",
|
484
484
|
"required": false,
|
@@ -487,7 +487,7 @@
|
|
487
487
|
{
|
488
488
|
"disabled": false,
|
489
489
|
"document": "联系电话",
|
490
|
-
"example": "
|
490
|
+
"example": "138XXXXXXXX",
|
491
491
|
"member": "string",
|
492
492
|
"name": "TelNumber",
|
493
493
|
"required": false,
|
@@ -496,7 +496,7 @@
|
|
496
496
|
{
|
497
497
|
"disabled": false,
|
498
498
|
"document": "公司名称",
|
499
|
-
"example": "
|
499
|
+
"example": "****科技有限公司",
|
500
500
|
"member": "string",
|
501
501
|
"name": "CorpName",
|
502
502
|
"required": false,
|
@@ -514,7 +514,7 @@
|
|
514
514
|
{
|
515
515
|
"disabled": false,
|
516
516
|
"document": "公司邮箱",
|
517
|
-
"example": "
|
517
|
+
"example": "user****@tencent.com",
|
518
518
|
"member": "string",
|
519
519
|
"name": "Email",
|
520
520
|
"required": false,
|
@@ -532,7 +532,7 @@
|
|
532
532
|
"example": "0",
|
533
533
|
"member": "int64",
|
534
534
|
"name": "Result",
|
535
|
-
"
|
535
|
+
"output_required": true,
|
536
536
|
"type": "int",
|
537
537
|
"value_allowed_null": false
|
538
538
|
},
|
@@ -542,7 +542,7 @@
|
|
542
542
|
"example": "170143813*******360",
|
543
543
|
"member": "string",
|
544
544
|
"name": "TaskID",
|
545
|
-
"
|
545
|
+
"output_required": true,
|
546
546
|
"type": "string",
|
547
547
|
"value_allowed_null": false
|
548
548
|
},
|
@@ -588,7 +588,7 @@
|
|
588
588
|
{
|
589
589
|
"disabled": false,
|
590
590
|
"document": "公司名称",
|
591
|
-
"example": "
|
591
|
+
"example": "****科技有限公司",
|
592
592
|
"member": "string",
|
593
593
|
"name": "CorpName",
|
594
594
|
"required": true,
|
@@ -597,7 +597,7 @@
|
|
597
597
|
{
|
598
598
|
"disabled": false,
|
599
599
|
"document": "手机号码",
|
600
|
-
"example": "
|
600
|
+
"example": "138XXXXXXXX",
|
601
601
|
"member": "string",
|
602
602
|
"name": "Mobile",
|
603
603
|
"required": true,
|
@@ -606,7 +606,7 @@
|
|
606
606
|
{
|
607
607
|
"disabled": false,
|
608
608
|
"document": "电子邮箱",
|
609
|
-
"example": "
|
609
|
+
"example": "user****@tencent.com",
|
610
610
|
"member": "string",
|
611
611
|
"name": "Email",
|
612
612
|
"required": true,
|
@@ -615,7 +615,7 @@
|
|
615
615
|
{
|
616
616
|
"disabled": false,
|
617
617
|
"document": "备注信息",
|
618
|
-
"example": "
|
618
|
+
"example": "Remark备注信息",
|
619
619
|
"member": "string",
|
620
620
|
"name": "Remark",
|
621
621
|
"required": false,
|
@@ -633,7 +633,7 @@
|
|
633
633
|
"example": "0",
|
634
634
|
"member": "int64",
|
635
635
|
"name": "Ret",
|
636
|
-
"
|
636
|
+
"output_required": true,
|
637
637
|
"type": "int",
|
638
638
|
"value_allowed_null": false
|
639
639
|
},
|
@@ -798,7 +798,7 @@
|
|
798
798
|
{
|
799
799
|
"disabled": false,
|
800
800
|
"document": "手机号码",
|
801
|
-
"example": "
|
801
|
+
"example": "138XXXXXXXX",
|
802
802
|
"member": "string",
|
803
803
|
"name": "Mobile",
|
804
804
|
"required": false,
|
@@ -807,7 +807,7 @@
|
|
807
807
|
{
|
808
808
|
"disabled": false,
|
809
809
|
"document": "邮箱地址",
|
810
|
-
"example": "
|
810
|
+
"example": "user****@tencent.com",
|
811
811
|
"member": "string",
|
812
812
|
"name": "Email",
|
813
813
|
"required": false,
|
@@ -816,7 +816,7 @@
|
|
816
816
|
{
|
817
817
|
"disabled": false,
|
818
818
|
"document": "商务合作接口人",
|
819
|
-
"example": "
|
819
|
+
"example": "张三",
|
820
820
|
"member": "string",
|
821
821
|
"name": "SalesPerson",
|
822
822
|
"required": false,
|
@@ -843,7 +843,7 @@
|
|
843
843
|
"example": "0",
|
844
844
|
"member": "int64",
|
845
845
|
"name": "Ret",
|
846
|
-
"
|
846
|
+
"output_required": true,
|
847
847
|
"type": "int",
|
848
848
|
"value_allowed_null": false
|
849
849
|
},
|
@@ -853,7 +853,7 @@
|
|
853
853
|
"example": "170143813*******360",
|
854
854
|
"member": "string",
|
855
855
|
"name": "TaskID",
|
856
|
-
"
|
856
|
+
"output_required": true,
|
857
857
|
"type": "string",
|
858
858
|
"value_allowed_null": false
|
859
859
|
},
|
@@ -890,7 +890,7 @@
|
|
890
890
|
"example": "0",
|
891
891
|
"member": "int64",
|
892
892
|
"name": "Ret",
|
893
|
-
"
|
893
|
+
"output_required": true,
|
894
894
|
"type": "int",
|
895
895
|
"value_allowed_null": false
|
896
896
|
},
|
@@ -900,7 +900,7 @@
|
|
900
900
|
"example": "sv_mps_safety_diagnosis_basic_diagnosis",
|
901
901
|
"member": "string",
|
902
902
|
"name": "ResourceName",
|
903
|
-
"
|
903
|
+
"output_required": true,
|
904
904
|
"type": "string",
|
905
905
|
"value_allowed_null": false
|
906
906
|
},
|
@@ -910,7 +910,7 @@
|
|
910
910
|
"example": "1",
|
911
911
|
"member": "int64",
|
912
912
|
"name": "Total",
|
913
|
-
"
|
913
|
+
"output_required": true,
|
914
914
|
"type": "int",
|
915
915
|
"value_allowed_null": false
|
916
916
|
},
|
@@ -920,7 +920,7 @@
|
|
920
920
|
"example": "1",
|
921
921
|
"member": "int64",
|
922
922
|
"name": "UnusedCount",
|
923
|
-
"
|
923
|
+
"output_required": true,
|
924
924
|
"type": "int",
|
925
925
|
"value_allowed_null": false
|
926
926
|
},
|
@@ -1491,7 +1491,7 @@
|
|
1491
1491
|
"example": "0",
|
1492
1492
|
"member": "int64",
|
1493
1493
|
"name": "Result",
|
1494
|
-
"
|
1494
|
+
"output_required": true,
|
1495
1495
|
"type": "int",
|
1496
1496
|
"value_allowed_null": false
|
1497
1497
|
},
|
@@ -1501,7 +1501,7 @@
|
|
1501
1501
|
"example": "无",
|
1502
1502
|
"member": "AppTaskData",
|
1503
1503
|
"name": "Data",
|
1504
|
-
"
|
1504
|
+
"output_required": true,
|
1505
1505
|
"type": "list",
|
1506
1506
|
"value_allowed_null": true
|
1507
1507
|
},
|
@@ -1511,7 +1511,7 @@
|
|
1511
1511
|
"example": "1",
|
1512
1512
|
"member": "int64",
|
1513
1513
|
"name": "Total",
|
1514
|
-
"
|
1514
|
+
"output_required": true,
|
1515
1515
|
"type": "int",
|
1516
1516
|
"value_allowed_null": true
|
1517
1517
|
},
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"CreateFlySecMiniAppProfessionalScanTask": [
|
20
20
|
{
|
21
21
|
"document": "对小程序全面的进行诊断,包括后台服务安全,UGC合规等",
|
22
|
-
"input": "POST / HTTP/1.1\nHost: mmps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateFlySecMiniAppProfessionalScanTask\n<公共请求参数>\n\n{\n \"MiniAppName\": \"测试小程序\",\n \"Remark\": \"
|
22
|
+
"input": "POST / HTTP/1.1\nHost: mmps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateFlySecMiniAppProfessionalScanTask\n<公共请求参数>\n\n{\n \"MiniAppName\": \"测试小程序\",\n \"Remark\": \"Remark备注信息\",\n \"Mobile\": \"138XXXXXXXX\",\n \"MiniAppID\": \"wx66e50f1e*******6f\",\n \"Mode\": \"2\",\n \"CorpName\": \"****科技有限公司\",\n \"Email\": \"user****@tencent.com\"\n}",
|
23
23
|
"output": "{\n \"Response\": {\n \"RequestId\": \"5e93a212-ca01-0fdc-eedd-5a1fce5e83e6\",\n \"Ret\": 0\n }\n}",
|
24
24
|
"title": "创建小程序安全的深度诊断任务"
|
25
25
|
}
|
@@ -27,7 +27,7 @@
|
|
27
27
|
"CreateFlySecMiniAppScanTask": [
|
28
28
|
{
|
29
29
|
"document": "",
|
30
|
-
"input": "POST / HTTP/1.1\nHost: mmps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateFlySecMiniAppScanTask\n<公共请求参数>\n\n{\n \"MiniAppTestPwd\": \"TestPwd\",\n \"Mobile\": \"
|
30
|
+
"input": "POST / HTTP/1.1\nHost: mmps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateFlySecMiniAppScanTask\n<公共请求参数>\n\n{\n \"MiniAppTestPwd\": \"TestPwd\",\n \"Mobile\": \"138XXXXXXXX\",\n \"Industry\": \"电商\",\n \"SurveyContent\": \"{\\\"wx66e50f1e*******6f\\\":{\\\"1\\\":[\\\"B\\\"],\\\"n\\\":[\\\"A\\\",\\\"B\\\",\\\"D\\\"]}}\",\n \"MiniAppID\": \"wx66e50f1e*******6f\",\n \"Mode\": \"1\",\n \"SalesPerson\": \"王某\",\n \"ScanVersion\": \"0\",\n \"Email\": \"user****@tencent.com\",\n \"MiniAppTestAccount\": \"Test\"\n}",
|
31
31
|
"output": "{\n \"Response\": {\n \"RequestId\": \"xxxxxx\",\n \"Ret\": 0,\n \"TaskID\": \"170143813*******360\"\n }\n}",
|
32
32
|
"title": "创建小程序翼扬安全基础诊断任务"
|
33
33
|
}
|
@@ -100,7 +100,7 @@
|
|
100
100
|
{
|
101
101
|
"document": "",
|
102
102
|
"input": "POST / HTTP/1.1\nHost: mmps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeScanTaskList\n<公共请求参数>\n\n{\n \"TaskStatuses\": \"\\\"0,1,2\\\"\",\n \"PageNo\": \"0\",\n \"PageSize\": \"10\",\n \"TaskTypes\": \"\\\"0,1\\\"\",\n \"Source\": \"-1\",\n \"Platform\": \"2\"\n}",
|
103
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"5e93a212-ca01-0fdc-eedd-5a1fce5e83e6\",\n \"Result\": 0,\n \"Data\": [\n {\n \"TaskID\": \"235414610411261952\",\n \"TaskType\": 0,\n \"TaskStatus\": 0,\n \"TaskErrMsg\": \"\",\n \"Source\": 0,\n \"AppInfo\": {\n \"AppPackage\": \"wx66e50f1e*******6f\",\n \"AppName\": \"测试app1\",\n \"AppVersion\": \"v1.0\",\n \"Platform\": 2,\n \"ReportUrl\": \"
|
103
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"5e93a212-ca01-0fdc-eedd-5a1fce5e83e6\",\n \"Result\": 0,\n \"Data\": [\n {\n \"TaskID\": \"235414610411261952\",\n \"TaskType\": 0,\n \"TaskStatus\": 0,\n \"TaskErrMsg\": \"\",\n \"Source\": 0,\n \"AppInfo\": {\n \"AppPackage\": \"wx66e50f1e*******6f\",\n \"AppName\": \"测试app1\",\n \"AppVersion\": \"v1.0\",\n \"Platform\": 2,\n \"ReportUrl\": \"诊断报告下载链接\",\n \"ReportTitle\": \"诊断报告名称\",\n \"BehaviorUrl\": \"诊断堆栈报告下载链接\",\n \"BehaviorTitle\": \"诊断堆栈报告名称\",\n \"HighRiskCount\": 5,\n \"PrivacyTextName\": \"隐私申明文本.txt\",\n \"SoftwareMD5\": \"c7991677cc********3f\",\n \"PrivacyTextMD5\": \"3bc1efe919********23\"\n },\n \"StartTime\": \"2021-10-11 14:53:36\",\n \"EndTime\": \"2021-10-11 14:53:36\",\n \"ContactName\": \"张三\"\n }\n ],\n \"Total\": 1\n }\n}",
|
104
104
|
"title": "获取隐私合规诊断任务列表"
|
105
105
|
}
|
106
106
|
],
|
@@ -1017,7 +1017,7 @@
|
|
1017
1017
|
},
|
1018
1018
|
{
|
1019
1019
|
"disabled": false,
|
1020
|
-
"document": "私有网络ID
|
1020
|
+
"document": "私有网络ID。请登录 [私有网络控制台](https://console.cloud.tencent.com/vpc) 查询确认正确的ID。 示例值:vpc-pxyzim13",
|
1021
1021
|
"example": "无",
|
1022
1022
|
"member": "string",
|
1023
1023
|
"name": "VpcId",
|
@@ -1026,7 +1026,7 @@
|
|
1026
1026
|
},
|
1027
1027
|
{
|
1028
1028
|
"disabled": false,
|
1029
|
-
"document": "
|
1029
|
+
"document": "私有网络VPC的子网。请登录 [私有网络控制台](https://console.cloud.tencent.com/vpc) 查询子网列表确认正确的 ID。 示例值:subnet-7jbabche",
|
1030
1030
|
"example": "无",
|
1031
1031
|
"member": "string",
|
1032
1032
|
"name": "SubnetId",
|
@@ -1398,7 +1398,7 @@
|
|
1398
1398
|
},
|
1399
1399
|
{
|
1400
1400
|
"disabled": false,
|
1401
|
-
"document": "私有网络ID
|
1401
|
+
"document": "私有网络ID。请登录[私有网络控制台](https://console.cloud.tencent.com/vpc)查询确认正确的ID。 示例值:vpc-pxyzim13",
|
1402
1402
|
"example": "vpc-0akbol5v",
|
1403
1403
|
"member": "string",
|
1404
1404
|
"name": "VpcId",
|
@@ -1407,7 +1407,7 @@
|
|
1407
1407
|
},
|
1408
1408
|
{
|
1409
1409
|
"disabled": false,
|
1410
|
-
"document": "
|
1410
|
+
"document": "私有网络VPC的子网。请登录 [私有网络控制台](https://console.cloud.tencent.com/vpc) 查询子网列表确认正确的 ID。 示例值:subnet-7jbabche",
|
1411
1411
|
"example": "subnet-fyrtjbqw",
|
1412
1412
|
"member": "string",
|
1413
1413
|
"name": "SubnetId",
|
@@ -3827,23 +3827,21 @@
|
|
3827
3827
|
"members": [
|
3828
3828
|
{
|
3829
3829
|
"disabled": false,
|
3830
|
-
"document": "购买实例的时长,单位:月。取值范围:1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 36。默认为1
|
3831
|
-
"example": "",
|
3830
|
+
"document": "购买实例的时长,单位:月。取值范围:1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 36。默认为1。",
|
3831
|
+
"example": "无",
|
3832
3832
|
"member": "int64",
|
3833
3833
|
"name": "Period",
|
3834
3834
|
"required": false,
|
3835
|
-
"type": "int"
|
3836
|
-
"value_allowed_null": false
|
3835
|
+
"type": "int"
|
3837
3836
|
},
|
3838
3837
|
{
|
3839
3838
|
"disabled": false,
|
3840
|
-
"document": "自动续费标识。取值范围:\
|
3841
|
-
"example": "",
|
3839
|
+
"document": "自动续费标识。取值范围:\n- NOTIFY_AND_AUTO_RENEW:通知过期且自动续费。在账户余额充足的情况下,实例到期后将按月自动续费。\n- NOTIFY_AND_MANUAL_RENEW:通知过期不自动续费。默认为NOTIFY_AND_MANUAL_RENEW。\n- DISABLE_NOTIFY_AND_MANUAL_RENEW:不通知过期不自动续费。",
|
3840
|
+
"example": "无",
|
3842
3841
|
"member": "string",
|
3843
3842
|
"name": "RenewFlag",
|
3844
3843
|
"required": false,
|
3845
|
-
"type": "string"
|
3846
|
-
"value_allowed_null": false
|
3844
|
+
"type": "string"
|
3847
3845
|
}
|
3848
3846
|
],
|
3849
3847
|
"usage": "in"
|