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
@@ -8,11 +8,11 @@
|
|
8
8
|
"status": "online"
|
9
9
|
},
|
10
10
|
"CreateSavingPlanOrder": {
|
11
|
-
"document": "创建节省计划订单,创建订单完成需调用PayDeals接口完成订单支付",
|
11
|
+
"document": "接口迁移到其他业务\n\n创建节省计划订单,创建订单完成需调用PayDeals接口完成订单支付",
|
12
12
|
"input": "CreateSavingPlanOrderRequest",
|
13
13
|
"name": "创建节省计划订单",
|
14
14
|
"output": "CreateSavingPlanOrderResponse",
|
15
|
-
"status": "
|
15
|
+
"status": "deprecated"
|
16
16
|
},
|
17
17
|
"DeleteAllocationTag": {
|
18
18
|
"document": "批量取消设置分账标签",
|
@@ -91,6 +91,13 @@
|
|
91
91
|
"output": "DescribeAllocationTrendByMonthResponse",
|
92
92
|
"status": "online"
|
93
93
|
},
|
94
|
+
"DescribeBillAdjustInfo": {
|
95
|
+
"document": "可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。",
|
96
|
+
"input": "DescribeBillAdjustInfoRequest",
|
97
|
+
"name": "获取账单异常调整信息",
|
98
|
+
"output": "DescribeBillAdjustInfoResponse",
|
99
|
+
"status": "online"
|
100
|
+
},
|
94
101
|
"DescribeBillDetail": {
|
95
102
|
"document": "获取账单明细数据。\n注意事项:\n1.在请求接口时,由于网络不稳定或其它异常,可能会导致请求失败。如果您遇到这种情况,我们建议您在接口请求失败时,手动发起重试操作,这样可以更好地确保您的接口请求能够成功执行。\n2.对于账单明细数据量级很大(例如每月账单明细量级超过20w)的客户,通过 API 调用账单数据效率较低,建议您开通账单数据存储功能,通过存储桶中获取账单文件进行分析。[账单存储至COS桶](https://cloud.tencent.com/document/product/555/61275)",
|
96
103
|
"input": "DescribeBillDetailRequest",
|
@@ -267,11 +274,11 @@
|
|
267
274
|
"status": "online"
|
268
275
|
},
|
269
276
|
"DescribeSavingPlanOverview": {
|
270
|
-
"document": "查用当前用户明细节省计划总览查询时段内的使用情况",
|
277
|
+
"document": "接口迁移到其他业务\n\n查用当前用户明细节省计划总览查询时段内的使用情况",
|
271
278
|
"input": "DescribeSavingPlanOverviewRequest",
|
272
279
|
"name": "查询节省计划总览明细",
|
273
280
|
"output": "DescribeSavingPlanOverviewResponse",
|
274
|
-
"status": "
|
281
|
+
"status": "deprecated"
|
275
282
|
},
|
276
283
|
"DescribeSavingPlanResourceInfo": {
|
277
284
|
"document": "查询节省计划详情",
|
@@ -281,11 +288,11 @@
|
|
281
288
|
"status": "online"
|
282
289
|
},
|
283
290
|
"DescribeSavingPlanUsage": {
|
284
|
-
"document": "查用当前用户明细节省计划查询时段内的使用情况",
|
291
|
+
"document": "接口迁移到其他业务\n\n查用当前用户明细节省计划查询时段内的使用情况",
|
285
292
|
"input": "DescribeSavingPlanUsageRequest",
|
286
293
|
"name": "查询节省计划使用率明细",
|
287
294
|
"output": "DescribeSavingPlanUsageResponse",
|
288
|
-
"status": "
|
295
|
+
"status": "deprecated"
|
289
296
|
},
|
290
297
|
"DescribeTagList": {
|
291
298
|
"document": "获取分账标签",
|
@@ -429,6 +436,78 @@
|
|
429
436
|
],
|
430
437
|
"usage": "out"
|
431
438
|
},
|
439
|
+
"AdjustInfoDetail": {
|
440
|
+
"document": "UIN异常调整明细",
|
441
|
+
"members": [
|
442
|
+
{
|
443
|
+
"disabled": false,
|
444
|
+
"document": "支付者UIN:支付者的账号 ID,账号 ID 是用户在腾讯云的唯一账号标识\n注意:此字段可能返回 null,表示取不到有效值。",
|
445
|
+
"example": "909619400",
|
446
|
+
"member": "string",
|
447
|
+
"name": "PayerUin",
|
448
|
+
"output_required": false,
|
449
|
+
"required": false,
|
450
|
+
"type": "string",
|
451
|
+
"value_allowed_null": true
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"disabled": false,
|
455
|
+
"document": "账单月份,格式:yyyy-MM\n注意:此字段可能返回 null,表示取不到有效值。",
|
456
|
+
"example": "2024-10",
|
457
|
+
"member": "string",
|
458
|
+
"name": "Month",
|
459
|
+
"output_required": false,
|
460
|
+
"required": false,
|
461
|
+
"type": "string",
|
462
|
+
"value_allowed_null": true
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"disabled": false,
|
466
|
+
"document": "调整类型\n调账:manualAdjustment\n补结算:supplementarySettlement\n重结算:reSettlement\n注意:此字段可能返回 null,表示取不到有效值。",
|
467
|
+
"example": "manualAdjustment",
|
468
|
+
"member": "string",
|
469
|
+
"name": "AdjustType",
|
470
|
+
"output_required": false,
|
471
|
+
"required": false,
|
472
|
+
"type": "string",
|
473
|
+
"value_allowed_null": true
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"disabled": false,
|
477
|
+
"document": "调整单号\n注意:此字段可能返回 null,表示取不到有效值。",
|
478
|
+
"example": "2220726096135",
|
479
|
+
"member": "string",
|
480
|
+
"name": "AdjustNum",
|
481
|
+
"output_required": false,
|
482
|
+
"required": false,
|
483
|
+
"type": "string",
|
484
|
+
"value_allowed_null": true
|
485
|
+
},
|
486
|
+
{
|
487
|
+
"disabled": false,
|
488
|
+
"document": "异常调整完成时间,格式:yyyy-MM-dd HH:mm:ss\n注意:此字段可能返回 null,表示取不到有效值。",
|
489
|
+
"example": "2022-12-02 12:39:04",
|
490
|
+
"member": "string",
|
491
|
+
"name": "AdjustCompletionTime",
|
492
|
+
"output_required": false,
|
493
|
+
"required": false,
|
494
|
+
"type": "string",
|
495
|
+
"value_allowed_null": true
|
496
|
+
},
|
497
|
+
{
|
498
|
+
"disabled": false,
|
499
|
+
"document": "调整金额\n注意:此字段可能返回 null,表示取不到有效值。",
|
500
|
+
"example": "333.00000000",
|
501
|
+
"member": "float",
|
502
|
+
"name": "AdjustAmount",
|
503
|
+
"output_required": false,
|
504
|
+
"required": false,
|
505
|
+
"type": "float",
|
506
|
+
"value_allowed_null": true
|
507
|
+
}
|
508
|
+
],
|
509
|
+
"usage": "both"
|
510
|
+
},
|
432
511
|
"AllocationAverageData": {
|
433
512
|
"document": "分账账单趋势图平均值",
|
434
513
|
"members": [
|
@@ -1163,6 +1242,66 @@
|
|
1163
1242
|
"output_required": false,
|
1164
1243
|
"type": "int",
|
1165
1244
|
"value_allowed_null": true
|
1245
|
+
},
|
1246
|
+
{
|
1247
|
+
"disabled": false,
|
1248
|
+
"document": "当前消费项的优惠对象,例如:官网折扣、用户折扣、活动折扣。\n注意:此字段可能返回 null,表示取不到有效值。",
|
1249
|
+
"example": "common",
|
1250
|
+
"member": "string",
|
1251
|
+
"name": "DiscountObject",
|
1252
|
+
"output_required": false,
|
1253
|
+
"type": "string",
|
1254
|
+
"value_allowed_null": true
|
1255
|
+
},
|
1256
|
+
{
|
1257
|
+
"disabled": false,
|
1258
|
+
"document": "当前消费项的优惠类型,例如:折扣、合同价。\n注意:此字段可能返回 null,表示取不到有效值。",
|
1259
|
+
"example": "0",
|
1260
|
+
"member": "string",
|
1261
|
+
"name": "DiscountType",
|
1262
|
+
"output_required": false,
|
1263
|
+
"type": "string",
|
1264
|
+
"value_allowed_null": true
|
1265
|
+
},
|
1266
|
+
{
|
1267
|
+
"disabled": false,
|
1268
|
+
"document": "对优惠类型的补充描述,例如:商务折扣8折,则优惠类型为“折扣”,优惠内容为“0.8”。\n注意:此字段可能返回 null,表示取不到有效值。",
|
1269
|
+
"example": "0",
|
1270
|
+
"member": "string",
|
1271
|
+
"name": "DiscountContent",
|
1272
|
+
"output_required": false,
|
1273
|
+
"type": "string",
|
1274
|
+
"value_allowed_null": true
|
1275
|
+
},
|
1276
|
+
{
|
1277
|
+
"disabled": false,
|
1278
|
+
"document": "SPDeduction\n注意:此字段可能返回 null,表示取不到有效值。",
|
1279
|
+
"example": "0",
|
1280
|
+
"member": "string",
|
1281
|
+
"name": "SPDeduction",
|
1282
|
+
"output_required": false,
|
1283
|
+
"type": "string",
|
1284
|
+
"value_allowed_null": true
|
1285
|
+
},
|
1286
|
+
{
|
1287
|
+
"disabled": false,
|
1288
|
+
"document": "SPDeduction\n注意:此字段可能返回 null,表示取不到有效值。",
|
1289
|
+
"example": "0",
|
1290
|
+
"member": "string",
|
1291
|
+
"name": "SPDeductionRate",
|
1292
|
+
"output_required": false,
|
1293
|
+
"type": "string",
|
1294
|
+
"value_allowed_null": true
|
1295
|
+
},
|
1296
|
+
{
|
1297
|
+
"disabled": false,
|
1298
|
+
"document": "账单月\n注意:此字段可能返回 null,表示取不到有效值。",
|
1299
|
+
"example": "2024-10",
|
1300
|
+
"member": "string",
|
1301
|
+
"name": "BillMonth",
|
1302
|
+
"output_required": false,
|
1303
|
+
"type": "string",
|
1304
|
+
"value_allowed_null": true
|
1166
1305
|
}
|
1167
1306
|
],
|
1168
1307
|
"usage": "out"
|
@@ -2663,6 +2802,76 @@
|
|
2663
2802
|
"output_required": false,
|
2664
2803
|
"type": "string",
|
2665
2804
|
"value_allowed_null": true
|
2805
|
+
},
|
2806
|
+
{
|
2807
|
+
"disabled": false,
|
2808
|
+
"document": "SPDeduction\n注意:此字段可能返回 null,表示取不到有效值。",
|
2809
|
+
"example": "0.00000000",
|
2810
|
+
"member": "string",
|
2811
|
+
"name": "SPDeduction",
|
2812
|
+
"output_required": false,
|
2813
|
+
"type": "string",
|
2814
|
+
"value_allowed_null": true
|
2815
|
+
},
|
2816
|
+
{
|
2817
|
+
"disabled": false,
|
2818
|
+
"document": "节省计划抵扣率:节省计划可用余额额度范围内,节省计划对于此组件打的折扣率\n注意:此字段可能返回 null,表示取不到有效值。",
|
2819
|
+
"example": "0.00000000",
|
2820
|
+
"member": "string",
|
2821
|
+
"name": "SPDeductionRate",
|
2822
|
+
"output_required": false,
|
2823
|
+
"type": "string",
|
2824
|
+
"value_allowed_null": true
|
2825
|
+
},
|
2826
|
+
{
|
2827
|
+
"disabled": false,
|
2828
|
+
"document": "AssociatedOrder\n注意:此字段可能返回 null,表示取不到有效值。",
|
2829
|
+
"example": "无",
|
2830
|
+
"member": "string",
|
2831
|
+
"name": "AssociatedOrder",
|
2832
|
+
"output_required": false,
|
2833
|
+
"type": "string",
|
2834
|
+
"value_allowed_null": true
|
2835
|
+
},
|
2836
|
+
{
|
2837
|
+
"disabled": false,
|
2838
|
+
"document": "当前消费项的优惠对象,例如:官网折扣、用户折扣、活动折扣。\n注意:此字段可能返回 null,表示取不到有效值。",
|
2839
|
+
"example": "common",
|
2840
|
+
"member": "string",
|
2841
|
+
"name": "DiscountObject",
|
2842
|
+
"output_required": false,
|
2843
|
+
"type": "string",
|
2844
|
+
"value_allowed_null": true
|
2845
|
+
},
|
2846
|
+
{
|
2847
|
+
"disabled": false,
|
2848
|
+
"document": "当前消费项的优惠类型,例如:折扣、合同价。\n注意:此字段可能返回 null,表示取不到有效值。",
|
2849
|
+
"example": "0",
|
2850
|
+
"member": "string",
|
2851
|
+
"name": "DiscountType",
|
2852
|
+
"output_required": false,
|
2853
|
+
"type": "string",
|
2854
|
+
"value_allowed_null": true
|
2855
|
+
},
|
2856
|
+
{
|
2857
|
+
"disabled": false,
|
2858
|
+
"document": "对优惠类型的补充描述,例如:商务折扣8折,则优惠类型为“折扣”,优惠内容为“0.8”。\n注意:此字段可能返回 null,表示取不到有效值。",
|
2859
|
+
"example": "0",
|
2860
|
+
"member": "string",
|
2861
|
+
"name": "DiscountContent",
|
2862
|
+
"output_required": false,
|
2863
|
+
"type": "string",
|
2864
|
+
"value_allowed_null": true
|
2865
|
+
},
|
2866
|
+
{
|
2867
|
+
"disabled": false,
|
2868
|
+
"document": "账单月\n注意:此字段可能返回 null,表示取不到有效值。",
|
2869
|
+
"example": "2024-10",
|
2870
|
+
"member": "string",
|
2871
|
+
"name": "BillMonth",
|
2872
|
+
"output_required": false,
|
2873
|
+
"type": "string",
|
2874
|
+
"value_allowed_null": true
|
2666
2875
|
}
|
2667
2876
|
],
|
2668
2877
|
"usage": "out"
|
@@ -3089,6 +3298,26 @@
|
|
3089
3298
|
"output_required": true,
|
3090
3299
|
"type": "string",
|
3091
3300
|
"value_allowed_null": true
|
3301
|
+
},
|
3302
|
+
{
|
3303
|
+
"disabled": false,
|
3304
|
+
"document": "SPDeduction\n注意:此字段可能返回 null,表示取不到有效值。",
|
3305
|
+
"example": "无",
|
3306
|
+
"member": "string",
|
3307
|
+
"name": "SPDeduction",
|
3308
|
+
"output_required": false,
|
3309
|
+
"type": "string",
|
3310
|
+
"value_allowed_null": true
|
3311
|
+
},
|
3312
|
+
{
|
3313
|
+
"disabled": false,
|
3314
|
+
"document": "账单月\n注意:此字段可能返回 null,表示取不到有效值。",
|
3315
|
+
"example": "无",
|
3316
|
+
"member": "string",
|
3317
|
+
"name": "BillMonth",
|
3318
|
+
"output_required": false,
|
3319
|
+
"type": "string",
|
3320
|
+
"value_allowed_null": true
|
3092
3321
|
}
|
3093
3322
|
],
|
3094
3323
|
"usage": "out"
|
@@ -7905,7 +8134,7 @@
|
|
7905
8134
|
"example": "10000",
|
7906
8135
|
"member": "int64",
|
7907
8136
|
"name": "Balance",
|
7908
|
-
"
|
8137
|
+
"output_required": true,
|
7909
8138
|
"type": "int",
|
7910
8139
|
"value_allowed_null": false
|
7911
8140
|
},
|
@@ -7915,7 +8144,7 @@
|
|
7915
8144
|
"example": "1",
|
7916
8145
|
"member": "uint64",
|
7917
8146
|
"name": "Uin",
|
7918
|
-
"
|
8147
|
+
"output_required": true,
|
7919
8148
|
"type": "int",
|
7920
8149
|
"value_allowed_null": false
|
7921
8150
|
},
|
@@ -7925,7 +8154,7 @@
|
|
7925
8154
|
"example": "1",
|
7926
8155
|
"member": "float",
|
7927
8156
|
"name": "RealBalance",
|
7928
|
-
"
|
8157
|
+
"output_required": true,
|
7929
8158
|
"type": "float",
|
7930
8159
|
"value_allowed_null": false
|
7931
8160
|
},
|
@@ -7935,7 +8164,7 @@
|
|
7935
8164
|
"example": "1",
|
7936
8165
|
"member": "float",
|
7937
8166
|
"name": "CashAccountBalance",
|
7938
|
-
"
|
8167
|
+
"output_required": true,
|
7939
8168
|
"type": "float",
|
7940
8169
|
"value_allowed_null": false
|
7941
8170
|
},
|
@@ -7945,7 +8174,7 @@
|
|
7945
8174
|
"example": "1",
|
7946
8175
|
"member": "float",
|
7947
8176
|
"name": "IncomeIntoAccountBalance",
|
7948
|
-
"
|
8177
|
+
"output_required": true,
|
7949
8178
|
"type": "float",
|
7950
8179
|
"value_allowed_null": false
|
7951
8180
|
},
|
@@ -7955,7 +8184,7 @@
|
|
7955
8184
|
"example": "1",
|
7956
8185
|
"member": "float",
|
7957
8186
|
"name": "PresentAccountBalance",
|
7958
|
-
"
|
8187
|
+
"output_required": true,
|
7959
8188
|
"type": "float",
|
7960
8189
|
"value_allowed_null": false
|
7961
8190
|
},
|
@@ -7965,7 +8194,7 @@
|
|
7965
8194
|
"example": "1",
|
7966
8195
|
"member": "float",
|
7967
8196
|
"name": "FreezeAmount",
|
7968
|
-
"
|
8197
|
+
"output_required": true,
|
7969
8198
|
"type": "float",
|
7970
8199
|
"value_allowed_null": false
|
7971
8200
|
},
|
@@ -7975,7 +8204,7 @@
|
|
7975
8204
|
"example": "1",
|
7976
8205
|
"member": "float",
|
7977
8206
|
"name": "OweAmount",
|
7978
|
-
"
|
8207
|
+
"output_required": true,
|
7979
8208
|
"type": "float",
|
7980
8209
|
"value_allowed_null": false
|
7981
8210
|
},
|
@@ -7985,7 +8214,7 @@
|
|
7985
8214
|
"example": "true",
|
7986
8215
|
"member": "bool",
|
7987
8216
|
"name": "IsAllowArrears",
|
7988
|
-
"
|
8217
|
+
"output_required": true,
|
7989
8218
|
"type": "bool",
|
7990
8219
|
"value_allowed_null": false
|
7991
8220
|
},
|
@@ -7995,37 +8224,37 @@
|
|
7995
8224
|
"example": "true",
|
7996
8225
|
"member": "bool",
|
7997
8226
|
"name": "IsCreditLimited",
|
7998
|
-
"
|
8227
|
+
"output_required": true,
|
7999
8228
|
"type": "bool",
|
8000
8229
|
"value_allowed_null": false
|
8001
8230
|
},
|
8002
8231
|
{
|
8003
8232
|
"disabled": false,
|
8004
|
-
"document": "
|
8233
|
+
"document": "信用额度,单位 分",
|
8005
8234
|
"example": "1",
|
8006
8235
|
"member": "float",
|
8007
8236
|
"name": "CreditAmount",
|
8008
|
-
"
|
8237
|
+
"output_required": true,
|
8009
8238
|
"type": "float",
|
8010
8239
|
"value_allowed_null": false
|
8011
8240
|
},
|
8012
8241
|
{
|
8013
8242
|
"disabled": false,
|
8014
|
-
"document": "
|
8243
|
+
"document": "可用信用额度,单位 分",
|
8015
8244
|
"example": "1",
|
8016
8245
|
"member": "float",
|
8017
8246
|
"name": "CreditBalance",
|
8018
|
-
"
|
8247
|
+
"output_required": true,
|
8019
8248
|
"type": "float",
|
8020
8249
|
"value_allowed_null": false
|
8021
8250
|
},
|
8022
8251
|
{
|
8023
8252
|
"disabled": false,
|
8024
|
-
"document": "
|
8253
|
+
"document": "真实可用信用额度,单位 分",
|
8025
8254
|
"example": "1",
|
8026
8255
|
"member": "float",
|
8027
8256
|
"name": "RealCreditBalance",
|
8028
|
-
"
|
8257
|
+
"output_required": true,
|
8029
8258
|
"type": "float",
|
8030
8259
|
"value_allowed_null": false
|
8031
8260
|
},
|
@@ -8496,6 +8725,16 @@
|
|
8496
8725
|
"type": "list",
|
8497
8726
|
"value_allowed_null": true
|
8498
8727
|
},
|
8728
|
+
{
|
8729
|
+
"disabled": false,
|
8730
|
+
"document": "分账标签键\n注意:此字段可能返回 null,表示取不到有效值。",
|
8731
|
+
"example": "[\"游戏项目组\",\"部门\",\"机房\",\"云应用\",\"运营状态\"]",
|
8732
|
+
"member": "string",
|
8733
|
+
"name": "TagKey",
|
8734
|
+
"output_required": false,
|
8735
|
+
"type": "list",
|
8736
|
+
"value_allowed_null": true
|
8737
|
+
},
|
8499
8738
|
{
|
8500
8739
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
8501
8740
|
"member": "string",
|
@@ -9605,6 +9844,71 @@
|
|
9605
9844
|
],
|
9606
9845
|
"type": "object"
|
9607
9846
|
},
|
9847
|
+
"DescribeBillAdjustInfoRequest": {
|
9848
|
+
"document": "DescribeBillAdjustInfo请求参数结构体",
|
9849
|
+
"members": [
|
9850
|
+
{
|
9851
|
+
"disabled": false,
|
9852
|
+
"document": "格式:yyyy-MM\n账单月份,month和timeFrom&timeTo必传一个,如果有传timeFrom&timeTo则month字段无效",
|
9853
|
+
"example": "2024-10",
|
9854
|
+
"member": "string",
|
9855
|
+
"name": "Month",
|
9856
|
+
"required": false,
|
9857
|
+
"type": "string"
|
9858
|
+
},
|
9859
|
+
{
|
9860
|
+
"disabled": false,
|
9861
|
+
"document": "格式:yyyy-MM-dd\n开始时间,month和timeFrom&timeTo必传一个,如果有该字段则month字段无效。timeFrom和timeTo必须一起传,且为相同月份,不支持跨月查询,查询结果是整月数据",
|
9862
|
+
"example": "2024-10-01",
|
9863
|
+
"member": "string",
|
9864
|
+
"name": "TimeFrom",
|
9865
|
+
"required": false,
|
9866
|
+
"type": "string"
|
9867
|
+
},
|
9868
|
+
{
|
9869
|
+
"disabled": false,
|
9870
|
+
"document": "格式:yyyy-MM-dd\n截止时间,month和timeFrom&timeTo必传一个,如果有该字段则month字段无效。timeFrom和timeTo必须一起传,且为相同月份,不支持跨月查询,查询结果是整月数据",
|
9871
|
+
"example": "2024-10-02",
|
9872
|
+
"member": "string",
|
9873
|
+
"name": "TimeTo",
|
9874
|
+
"required": false,
|
9875
|
+
"type": "string"
|
9876
|
+
}
|
9877
|
+
],
|
9878
|
+
"type": "object"
|
9879
|
+
},
|
9880
|
+
"DescribeBillAdjustInfoResponse": {
|
9881
|
+
"document": "DescribeBillAdjustInfo返回参数结构体",
|
9882
|
+
"members": [
|
9883
|
+
{
|
9884
|
+
"disabled": false,
|
9885
|
+
"document": "数据总量",
|
9886
|
+
"example": "10",
|
9887
|
+
"member": "int64",
|
9888
|
+
"name": "Total",
|
9889
|
+
"output_required": false,
|
9890
|
+
"type": "int",
|
9891
|
+
"value_allowed_null": false
|
9892
|
+
},
|
9893
|
+
{
|
9894
|
+
"disabled": false,
|
9895
|
+
"document": "明细数据",
|
9896
|
+
"example": "[]",
|
9897
|
+
"member": "AdjustInfoDetail",
|
9898
|
+
"name": "Data",
|
9899
|
+
"output_required": false,
|
9900
|
+
"type": "list",
|
9901
|
+
"value_allowed_null": false
|
9902
|
+
},
|
9903
|
+
{
|
9904
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
9905
|
+
"member": "string",
|
9906
|
+
"name": "RequestId",
|
9907
|
+
"type": "string"
|
9908
|
+
}
|
9909
|
+
],
|
9910
|
+
"type": "object"
|
9911
|
+
},
|
9608
9912
|
"DescribeBillDetailForOrganizationRequest": {
|
9609
9913
|
"document": "DescribeBillDetailForOrganization请求参数结构体",
|
9610
9914
|
"members": [
|
@@ -10658,7 +10962,7 @@
|
|
10658
10962
|
{
|
10659
10963
|
"disabled": false,
|
10660
10964
|
"document": "查询账单数据的用户UIN",
|
10661
|
-
"example": "
|
10965
|
+
"example": "10002011014",
|
10662
10966
|
"member": "string",
|
10663
10967
|
"name": "PayerUin",
|
10664
10968
|
"required": false,
|
@@ -10676,15 +10980,17 @@
|
|
10676
10980
|
"example": "1",
|
10677
10981
|
"member": "uint64",
|
10678
10982
|
"name": "Ready",
|
10983
|
+
"output_required": true,
|
10679
10984
|
"type": "int",
|
10680
10985
|
"value_allowed_null": false
|
10681
10986
|
},
|
10682
10987
|
{
|
10683
10988
|
"disabled": false,
|
10684
10989
|
"document": "各项目花费分布详情\n注意:此字段可能返回 null,表示取不到有效值。",
|
10685
|
-
"example": "
|
10990
|
+
"example": "[{\"ProjectId\":\"0\",\"RealTotalCost\":\"2924616.19000000\",\"TotalCost\":\"6622736.21547221\",\"CashPayAmount\":\"2924616.19000000\",\"IncentivePayAmount\":\"0.00000000\",\"VoucherPayAmount\":\"0.00000000\",\"TransferPayAmount\":\"0.00000000\",\"BillMonth\":\"2024-01\",\"RealTotalCostRatio\":\"100.00\",\"ProjectName\":\"默认项目\"}]",
|
10686
10991
|
"member": "ProjectSummaryOverviewItem",
|
10687
10992
|
"name": "SummaryOverview",
|
10993
|
+
"output_required": true,
|
10688
10994
|
"type": "list",
|
10689
10995
|
"value_allowed_null": true
|
10690
10996
|
},
|
@@ -104,6 +104,14 @@
|
|
104
104
|
"title": "查询分账报表费用趋势"
|
105
105
|
}
|
106
106
|
],
|
107
|
+
"DescribeBillAdjustInfo": [
|
108
|
+
{
|
109
|
+
"document": "根据月份获取账单异常调整信息",
|
110
|
+
"input": "POST / HTTP/1.1\nHost: billing.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeBillAdjustInfo\n<公共请求参数>\n\n{\n \"Month\": \"2023-09\"\n}",
|
111
|
+
"output": "{\n \"Response\": {\n \"Data\": [\n {\n \"AdjustAmount\": 2346.28,\n \"AdjustCompletionTime\": \"2024-10-21 17:50:46\",\n \"AdjustNum\": \"20230906159081\",\n \"AdjustType\": \"manualAdjustment\",\n \"Month\": \"2023-09\",\n \"PayerUin\": \"909619400\"\n },\n {\n \"AdjustAmount\": 5318.81,\n \"AdjustCompletionTime\": \"2024-10-21 17:44:14\",\n \"AdjustNum\": \"20230909111993\",\n \"AdjustType\": \"manualAdjustment\",\n \"Month\": \"2023-09\",\n \"PayerUin\": \"909619400\"\n }\n ],\n \"RequestId\": \"7fd119c4-8f8b-4355-b365-6df62b7d6660\",\n \"Total\": 2\n }\n}",
|
112
|
+
"title": "获取账单异常调整信息"
|
113
|
+
}
|
114
|
+
],
|
107
115
|
"DescribeBillDetail": [
|
108
116
|
{
|
109
117
|
"document": "获取账单明细",
|