tccli 3.0.1115.1__py2.py3-none-any.whl → 3.0.1117.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/aiart/v20221229/examples.json +1 -1
  3. tccli/services/cat/v20180409/api.json +1 -1
  4. tccli/services/cat/v20180409/examples.json +2 -2
  5. tccli/services/ccc/v20200210/api.json +2 -2
  6. tccli/services/ckafka/v20190819/api.json +20 -0
  7. tccli/services/dasb/v20191018/api.json +55 -1
  8. tccli/services/dasb/v20191018/examples.json +1 -1
  9. tccli/services/domain/domain_client.py +871 -129
  10. tccli/services/domain/v20180808/api.json +1502 -146
  11. tccli/services/domain/v20180808/examples.json +112 -0
  12. tccli/services/dts/v20211206/api.json +2 -2
  13. tccli/services/ess/v20201111/api.json +13 -13
  14. tccli/services/essbasic/v20210526/api.json +15 -15
  15. tccli/services/gs/v20191118/api.json +11 -8
  16. tccli/services/hai/v20230812/examples.json +1 -1
  17. tccli/services/ims/v20201229/api.json +2 -2
  18. tccli/services/lighthouse/v20200324/api.json +36 -36
  19. tccli/services/live/v20180801/api.json +19 -0
  20. tccli/services/mna/mna_client.py +110 -4
  21. tccli/services/mna/v20210119/api.json +182 -0
  22. tccli/services/mna/v20210119/examples.json +16 -0
  23. tccli/services/ocr/v20181119/api.json +60 -0
  24. tccli/services/ocr/v20181119/examples.json +1 -1
  25. tccli/services/postgres/v20170312/api.json +1 -0
  26. tccli/services/postgres/v20170312/examples.json +10 -4
  27. tccli/services/rum/v20210622/api.json +6 -6
  28. tccli/services/rum/v20210622/examples.json +2 -2
  29. tccli/services/ssl/v20191205/api.json +1 -1
  30. tccli/services/ssl/v20191205/examples.json +1 -1
  31. tccli/services/tdmq/v20200217/api.json +15 -5
  32. tccli/services/tdmq/v20200217/examples.json +3 -3
  33. tccli/services/teo/v20220901/api.json +2 -2
  34. tccli/services/tmt/v20180321/api.json +3 -3
  35. tccli/services/trocket/v20230308/api.json +15 -15
  36. tccli/services/trocket/v20230308/examples.json +2 -2
  37. tccli/services/trtc/v20190722/api.json +2 -2
  38. tccli/services/wedata/v20210820/api.json +132 -14
  39. tccli/services/wedata/v20210820/examples.json +7 -7
  40. {tccli-3.0.1115.1.dist-info → tccli-3.0.1117.1.dist-info}/METADATA +2 -2
  41. {tccli-3.0.1115.1.dist-info → tccli-3.0.1117.1.dist-info}/RECORD +44 -44
  42. {tccli-3.0.1115.1.dist-info → tccli-3.0.1117.1.dist-info}/WHEEL +0 -0
  43. {tccli-3.0.1115.1.dist-info → tccli-3.0.1117.1.dist-info}/entry_points.txt +0 -0
  44. {tccli-3.0.1115.1.dist-info → tccli-3.0.1117.1.dist-info}/license_files/LICENSE +0 -0
@@ -77,6 +77,13 @@
77
77
  "output": "GetDevicesResponse",
78
78
  "status": "online"
79
79
  },
80
+ "GetFlowAlarmInfo": {
81
+ "document": "根据AppId查询用户设置的流量告警信息,包括阈值,回调url和key",
82
+ "input": "GetFlowAlarmInfoRequest",
83
+ "name": "查询流量告警信息",
84
+ "output": "GetFlowAlarmInfoResponse",
85
+ "status": "online"
86
+ },
80
87
  "GetFlowPackages": {
81
88
  "document": "获取流量包列表",
82
89
  "input": "GetFlowPackagesRequest",
@@ -91,6 +98,13 @@
91
98
  "output": "GetFlowStatisticResponse",
92
99
  "status": "online"
93
100
  },
101
+ "GetFlowStatisticByGroup": {
102
+ "document": "获取指定分组,指定时间数据流量使用情况",
103
+ "input": "GetFlowStatisticByGroupRequest",
104
+ "name": "根据设备组获取数据流量统计数据",
105
+ "output": "GetFlowStatisticByGroupResponse",
106
+ "status": "online"
107
+ },
94
108
  "GetHardwareList": {
95
109
  "document": "获取厂商硬件列表",
96
110
  "input": "GetHardwareListRequest",
@@ -1653,6 +1667,53 @@
1653
1667
  ],
1654
1668
  "type": "object"
1655
1669
  },
1670
+ "GetFlowAlarmInfoRequest": {
1671
+ "document": "GetFlowAlarmInfo请求参数结构体",
1672
+ "members": [],
1673
+ "type": "object"
1674
+ },
1675
+ "GetFlowAlarmInfoResponse": {
1676
+ "document": "GetFlowAlarmInfo返回参数结构体",
1677
+ "members": [
1678
+ {
1679
+ "disabled": false,
1680
+ "document": "流量包的告警阈值\n注意:此字段可能返回 null,表示取不到有效值。",
1681
+ "example": "20",
1682
+ "member": "int64",
1683
+ "name": "AlarmValue",
1684
+ "output_required": false,
1685
+ "type": "int",
1686
+ "value_allowed_null": true
1687
+ },
1688
+ {
1689
+ "disabled": false,
1690
+ "document": "告警通知回调url\n注意:此字段可能返回 null,表示取不到有效值。",
1691
+ "example": "http://ip:port/callurl",
1692
+ "member": "string",
1693
+ "name": "NotifyUrl",
1694
+ "output_required": true,
1695
+ "type": "string",
1696
+ "value_allowed_null": true
1697
+ },
1698
+ {
1699
+ "disabled": false,
1700
+ "document": "告警通知回调key\n注意:此字段可能返回 null,表示取不到有效值。",
1701
+ "example": "xd23y5cb89bx23432",
1702
+ "member": "string",
1703
+ "name": "CallbackKey",
1704
+ "output_required": true,
1705
+ "type": "string",
1706
+ "value_allowed_null": true
1707
+ },
1708
+ {
1709
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1710
+ "member": "string",
1711
+ "name": "RequestId",
1712
+ "type": "string"
1713
+ }
1714
+ ],
1715
+ "type": "object"
1716
+ },
1656
1717
  "GetFlowPackagesRequest": {
1657
1718
  "document": "GetFlowPackages请求参数结构体",
1658
1719
  "members": [
@@ -1736,6 +1797,127 @@
1736
1797
  ],
1737
1798
  "type": "object"
1738
1799
  },
1800
+ "GetFlowStatisticByGroupRequest": {
1801
+ "document": "GetFlowStatisticByGroup请求参数结构体",
1802
+ "members": [
1803
+ {
1804
+ "disabled": false,
1805
+ "document": "分组ID",
1806
+ "example": "1a2b3c4d5e",
1807
+ "member": "string",
1808
+ "name": "GroupId",
1809
+ "required": true,
1810
+ "type": "string"
1811
+ },
1812
+ {
1813
+ "disabled": false,
1814
+ "document": "开始查找时间",
1815
+ "example": "1659514436",
1816
+ "member": "int64",
1817
+ "name": "BeginTime",
1818
+ "required": true,
1819
+ "type": "int"
1820
+ },
1821
+ {
1822
+ "disabled": false,
1823
+ "document": "截止时间",
1824
+ "example": "1659515436",
1825
+ "member": "int64",
1826
+ "name": "EndTime",
1827
+ "required": true,
1828
+ "type": "int"
1829
+ },
1830
+ {
1831
+ "disabled": false,
1832
+ "document": "流量种类(1:上行流量,2:下行流量, 3: 上下行总和)",
1833
+ "example": "1",
1834
+ "member": "int64",
1835
+ "name": "Type",
1836
+ "required": true,
1837
+ "type": "int"
1838
+ },
1839
+ {
1840
+ "disabled": false,
1841
+ "document": "时间粒度(1:按小时统计,2:按天统计)",
1842
+ "example": "1",
1843
+ "member": "int64",
1844
+ "name": "TimeGranularity",
1845
+ "required": true,
1846
+ "type": "int"
1847
+ },
1848
+ {
1849
+ "disabled": false,
1850
+ "document": "接入区域。取值范围:['MC','AP','EU','AM'] MC=中国大陆 AP=亚太 EU=欧洲 AM=美洲。不填代表全量区域。",
1851
+ "example": "MC",
1852
+ "member": "string",
1853
+ "name": "AccessRegion",
1854
+ "required": false,
1855
+ "type": "string"
1856
+ },
1857
+ {
1858
+ "disabled": false,
1859
+ "document": "网关类型。0:公有云网关;1:自有网关。不传默认为0。",
1860
+ "example": "0",
1861
+ "member": "int64",
1862
+ "name": "GatewayType",
1863
+ "required": false,
1864
+ "type": "int"
1865
+ }
1866
+ ],
1867
+ "type": "object"
1868
+ },
1869
+ "GetFlowStatisticByGroupResponse": {
1870
+ "document": "GetFlowStatisticByGroup返回参数结构体",
1871
+ "members": [
1872
+ {
1873
+ "disabled": false,
1874
+ "document": "流量详细信息",
1875
+ "example": "无",
1876
+ "member": "NetDetails",
1877
+ "name": "NetDetails",
1878
+ "output_required": true,
1879
+ "type": "list",
1880
+ "value_allowed_null": false
1881
+ },
1882
+ {
1883
+ "disabled": false,
1884
+ "document": "查找时间段流量使用最大值(单位:byte)",
1885
+ "example": "216516",
1886
+ "member": "float",
1887
+ "name": "MaxValue",
1888
+ "output_required": true,
1889
+ "type": "float",
1890
+ "value_allowed_null": false
1891
+ },
1892
+ {
1893
+ "disabled": false,
1894
+ "document": "查找时间段流量使用平均值(单位:byte)",
1895
+ "example": "25151",
1896
+ "member": "float",
1897
+ "name": "AvgValue",
1898
+ "output_required": true,
1899
+ "type": "float",
1900
+ "value_allowed_null": false
1901
+ },
1902
+ {
1903
+ "disabled": false,
1904
+ "document": "查找时间段流量使用总量(单位:byte)",
1905
+ "example": "35465464",
1906
+ "member": "float",
1907
+ "name": "TotalValue",
1908
+ "output_required": true,
1909
+ "type": "float",
1910
+ "value_allowed_null": false
1911
+ },
1912
+ {
1913
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1914
+ "member": "string",
1915
+ "name": "RequestId",
1916
+ "type": "string"
1917
+ }
1918
+ ],
1919
+ "type": "object"
1920
+ },
1739
1921
  "GetFlowStatisticRequest": {
1740
1922
  "document": "GetFlowStatistic请求参数结构体",
1741
1923
  "members": [
@@ -88,6 +88,14 @@
88
88
  "title": "获取设备基本信息列表"
89
89
  }
90
90
  ],
91
+ "GetFlowAlarmInfo": [
92
+ {
93
+ "document": "",
94
+ "input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetFlowAlarmInfo\n<公共请求参数>\n\n{}",
95
+ "output": "{\n \"Response\": {\n \"AlarmValue\": 20,\n \"NotifyUrl\": \"http://ip:port/callurl\",\n \"CallbackKey\": \"xd23y5cb89bx23432\",\n \"RequestId\": \"1206563f-f13f-4647-aaa8-37fa86954cc4-1\"\n }\n}",
96
+ "title": "示例1"
97
+ }
98
+ ],
91
99
  "GetFlowPackages": [
92
100
  {
93
101
  "document": "",
@@ -110,6 +118,14 @@
110
118
  "title": "获取多个设备的流量使用信息之和"
111
119
  }
112
120
  ],
121
+ "GetFlowStatisticByGroup": [
122
+ {
123
+ "document": "",
124
+ "input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetFlowStatisticByGroup\n<公共请求参数>\n\n{\n \"GroupId\": \"cliGrp-xf8rboasbh\",\n \"BeginTime\": 1711296000,\n \"EndTime\": 1711987200,\n \"Type\": 1,\n \"TimeGranularity\": 2,\n \"AccessRegion\": \"MC\",\n \"GatewayType\": 0\n}",
125
+ "output": "{\n \"Response\": {\n \"AvgValue\": 154434162.5,\n \"MaxValue\": 305576473,\n \"NetDetails\": [\n {\n \"Current\": 305576473,\n \"Time\": \"1711555200\"\n },\n {\n \"Current\": 3291852,\n \"Time\": \"1711641600\"\n }\n ],\n \"RequestId\": \"e5b650a9-d994-439f-9132-3e5c56054903\",\n \"TotalValue\": 308868325\n }\n}",
126
+ "title": "根据分组获取用量统计信息"
127
+ }
128
+ ],
113
129
  "GetHardwareList": [
114
130
  {
115
131
  "document": "硬件信息列表",
@@ -1778,6 +1778,66 @@
1778
1778
  "type": "float",
1779
1779
  "value_allowed_null": false
1780
1780
  },
1781
+ {
1782
+ "disabled": false,
1783
+ "document": "是否有国徽。0为没有,1为有。",
1784
+ "example": "无",
1785
+ "member": "bool",
1786
+ "name": "NationalEmblem",
1787
+ "output_required": true,
1788
+ "type": "bool",
1789
+ "value_allowed_null": false
1790
+ },
1791
+ {
1792
+ "disabled": false,
1793
+ "document": "是否有二维码。0为没有,1为有。",
1794
+ "example": "无",
1795
+ "member": "bool",
1796
+ "name": "QRCode",
1797
+ "output_required": true,
1798
+ "type": "bool",
1799
+ "value_allowed_null": false
1800
+ },
1801
+ {
1802
+ "disabled": false,
1803
+ "document": "是否有印章。0为没有,1为有。",
1804
+ "example": "无",
1805
+ "member": "bool",
1806
+ "name": "Seal",
1807
+ "output_required": true,
1808
+ "type": "bool",
1809
+ "value_allowed_null": false
1810
+ },
1811
+ {
1812
+ "disabled": false,
1813
+ "document": "标题",
1814
+ "example": "个人独资企业营业执照",
1815
+ "member": "string",
1816
+ "name": "Title",
1817
+ "output_required": true,
1818
+ "type": "string",
1819
+ "value_allowed_null": false
1820
+ },
1821
+ {
1822
+ "disabled": false,
1823
+ "document": "编号",
1824
+ "example": "无",
1825
+ "member": "string",
1826
+ "name": "SerialNumber",
1827
+ "output_required": true,
1828
+ "type": "string",
1829
+ "value_allowed_null": false
1830
+ },
1831
+ {
1832
+ "disabled": false,
1833
+ "document": "登记机关",
1834
+ "example": "无",
1835
+ "member": "string",
1836
+ "name": "RegistrationAuthority",
1837
+ "output_required": true,
1838
+ "type": "string",
1839
+ "value_allowed_null": false
1840
+ },
1781
1841
  {
1782
1842
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1783
1843
  "member": "string",
@@ -36,7 +36,7 @@
36
36
  {
37
37
  "document": "营业执照识别示例",
38
38
  "input": "POST / HTTP/1.1\nHost: ocr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: BizLicenseOCR\n<公共请求参数>\n\n{\n \"ImageUrl\": \"https://xx/a.jpg\"\n}",
39
- "output": "{\n \"Response\": {\n \"RegNum\": \"110000012345678\",\n \"Person\": \"艾米\",\n \"Capital\": \"人民币600000万元整\",\n \"Name\": \"深圳市腾讯计算机系统有限公司\",\n \"Address\": \"深圳市南山区高新区高新南一路飞亚达大厦\",\n \"Period\": \"1998年11月至长期\",\n \"Business\": \"计算机软、硬件的设计、技术开发、销售(不含专营、专控、专卖商品及限制项目);数据库及计算机网络服务;国内商业、物资供销业(不含专营、专控、专卖商品)\",\n \"Type\": \"有限责任公司\",\n \"ComposingForm\": \"\",\n \"SetDate\": \"1998年11月\",\n \"Angle\": 33.33,\n \"IsDuplication\": 1,\n \"RegistrationDate\": \"1998年11月11日\",\n \"RecognizeWarnCode\": [\n -9102\n ],\n \"RecognizeWarnMsg\": [\n \"WARN_COPY_CARD\"\n ],\n \"RequestId\": \"c3025c22-e159-44fe-9850-91f30b2e2593\"\n }\n}",
39
+ "output": "{\n \"Response\": {\n \"Address\": \"深圳市南山区高新区高新南一路飞亚达大厦\",\n \"Angle\": 0,\n \"Business\": \"计算机软、硬件的设计、技术开发、销售(不含专营、专控、专卖商品及限制项目):数据库及计算机网络服务;国内商业、物资供销业(不含专营、专控、专卖商品)\",\n \"Capital\": \"人民币柒仟亿\",\n \"ComposingForm\": \"\",\n \"IsDuplication\": 1,\n \"Name\": \"深圳市腾讯计算机系统有限公司\",\n \"NationalEmblem\": true,\n \"Period\": \"1998年11月至长期\",\n \"Person\": \"艾米\",\n \"QRCode\": true,\n \"RecognizeWarnCode\": [],\n \"RecognizeWarnMsg\": [],\n \"RegNum\": \"110000012345678\",\n \"RegistrationAuthority\": \"广东省工商行政管理局\",\n \"RegistrationDate\": \"1998年11月11日\",\n \"RequestId\": \"42dbace2-9f13-4a58-ad35-aea95f0e02d7\",\n \"Seal\": true,\n \"SerialNumber\": \"\",\n \"SetDate\": \"1998年11月\",\n \"Title\": \"营业执照\",\n \"Type\": \"有限责任公司\"\n }\n}",
40
40
  "title": "营业执照识别示例代码"
41
41
  }
42
42
  ],
@@ -5174,6 +5174,7 @@
5174
5174
  "example": "[\"postgres\",\"testdatabase\"]",
5175
5175
  "member": "string",
5176
5176
  "name": "Items",
5177
+ "output_required": true,
5177
5178
  "type": "list",
5178
5179
  "value_allowed_null": false
5179
5180
  },
@@ -364,10 +364,16 @@
364
364
  ],
365
365
  "DescribeDatabases": [
366
366
  {
367
- "document": "拉取数据库列表",
368
- "input": "POST / HTTP/1.1\nHost: postgres.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDatabases\n<公共请求参数>\n\n{\n \"DBInstanceId\": \"postgres-6bwgamo3\"\n}",
369
- "output": "{\n \"Response\": {\n \"RequestId\": \"86eb714c-500f-412e-8090-3b3f76843d86\",\n \"Items\": [\n \"postgres\",\n \"testdatabase\"\n ]\n }\n}",
370
- "title": "拉取数据库列表"
367
+ "document": "不做筛选,全量拉取实例的数据库列表。",
368
+ "input": "POST / HTTP/1.1\nHost: postgres.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDatabases\n<公共请求参数>\n\n{\n \"DBInstanceId\": \"postgres-hf8jo5pr\"\n}",
369
+ "output": "{\n \"Response\": {\n \"Items\": [\n \"postgres\",\n \"postgres_bak_1715086333\",\n \"postgres_bak_1715140150\",\n \"rds\",\n \"postgres_bak_1715152994\"\n ],\n \"RequestId\": \"4045d7a9-5330-4c2c-b968-475570200a97\"\n }\n}",
370
+ "title": "获取实例所有数据库"
371
+ },
372
+ {
373
+ "document": "使用筛选条件,返回部分数据库列表。",
374
+ "input": "POST / HTTP/1.1\nHost: postgres.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDatabases\n<公共请求参数>\n\n{\n \"DBInstanceId\": \"postgres-hf8jo5pr\"\n}",
375
+ "output": "{\n \"Response\": {\n \"Items\": [\n \"postgres_bak_1715086333\",\n \"postgres_bak_1715140150\"\n ],\n \"RequestId\": \"25cc2555-14a2-454f-af08-6bd691315335\"\n }\n}",
376
+ "title": "获取实例部分数据库"
371
377
  }
372
378
  ],
373
379
  "DescribeDefaultParameters": [
@@ -5119,7 +5119,7 @@
5119
5119
  },
5120
5120
  {
5121
5121
  "disabled": false,
5122
- "document": "获取day:d, 获取min则不填",
5122
+ "document": "对PV指标的查询维度。获取day:d, 获取min则不填。",
5123
5123
  "example": "d",
5124
5124
  "member": "string",
5125
5125
  "name": "Dimension",
@@ -5138,7 +5138,7 @@
5138
5138
  "example": "无",
5139
5139
  "member": "RumPvInfo",
5140
5140
  "name": "ProjectPvSet",
5141
- "required": true,
5141
+ "output_required": true,
5142
5142
  "type": "list",
5143
5143
  "value_allowed_null": true
5144
5144
  },
@@ -5769,7 +5769,7 @@
5769
5769
  },
5770
5770
  {
5771
5771
  "disabled": false,
5772
- "document": "分页Limit",
5772
+ "document": "分页Limit,默认根据AreaKeys和AreaStatuses参数查询所有。",
5773
5773
  "example": "1",
5774
5774
  "member": "int64",
5775
5775
  "name": "Limit",
@@ -5787,7 +5787,7 @@
5787
5787
  },
5788
5788
  {
5789
5789
  "disabled": false,
5790
- "document": "分页Offset",
5790
+ "document": "分页Offset,默认根据AreaKeys和AreaStatuses参数查询所有。",
5791
5791
  "example": "100",
5792
5792
  "member": "int64",
5793
5793
  "name": "Offset",
@@ -5806,7 +5806,7 @@
5806
5806
  "example": "1",
5807
5807
  "member": "int64",
5808
5808
  "name": "TotalCount",
5809
- "required": true,
5809
+ "output_required": true,
5810
5810
  "type": "int",
5811
5811
  "value_allowed_null": false
5812
5812
  },
@@ -5816,7 +5816,7 @@
5816
5816
  "example": "无",
5817
5817
  "member": "RumAreaInfo",
5818
5818
  "name": "AreaSet",
5819
- "required": true,
5819
+ "output_required": true,
5820
5820
  "type": "list",
5821
5821
  "value_allowed_null": false
5822
5822
  },
@@ -209,8 +209,8 @@
209
209
  },
210
210
  {
211
211
  "document": "",
212
- "input": "POST / HTTP/1.1\nHost: rum.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDataPerformancePage\n<公共请求参数>\n\n{\n \"ExtSecond\": \"自定义2\",\n \"Engine\": \"ie2\",\n \"IsAbroad\": \"1\",\n \"Area\": \"中国\",\n \"NetType\": \"2\",\n \"Level\": \"1\",\n \"Os\": \"apple\",\n \"Brand\": \"apple\",\n \"Isp\": \"中国移动\",\n \"VersionNum\": \"版本\",\n \"Platform\": \"2\",\n \"ExtThird\": \"自定义3\",\n \"ExtFirst\": \"自定义1\",\n \"StartTime\": \"1625444040\",\n \"Device\": \"三星\",\n \"From\": \"index.html\",\n \"EndTime\": \"1625454840\",\n \"Type\": \"pagepv\",\n \"ID\": \"1\",\n \"Browser\": \"ie\"\n}",
213
- "output": "{\n \"Response\": {\n \"Result\": \"xxxx\",\n \"RequestId\": \"65a8fec7-2b39-4b11-893f-3715279d235f\"\n }\n}",
212
+ "input": "POST / HTTP/1.1\nHost: rum.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDataPerformancePage\n<公共请求参数>\n\n{\n \"ExtSecond\": \"自定义2\",\n \"Engine\": \"ie2\",\n \"IsAbroad\": \"1\",\n \"Area\": \"中国\",\n \"NetType\": \"2\",\n \"Level\": \"1\",\n \"Os\": \"apple\",\n \"Brand\": \"apple\",\n \"Isp\": \"中国移动\",\n \"VersionNum\": \"版本\",\n \"Platform\": \"2\",\n \"ExtThird\": \"自定义3\",\n \"ExtFirst\": \"自定义1\",\n \"StartTime\": 1625444040,\n \"Device\": \"三星\",\n \"From\": \"index.html\",\n \"EndTime\": 1625454840,\n \"Type\": \"pagepv\",\n \"ID\": 1,\n \"Browser\": \"ie\"\n}",
213
+ "output": "{\n \"Response\": {\n \"Result\": \"{\\\"request_id\\\":\\\"ddec0dc8-3268-4571-9ac0-566ae7537495\\\",\\\"results\\\":[{\\\"statement_id\\\":0,\\\"total\\\":0},{\\\"statement_id\\\":1,\\\"total\\\":0},{\\\"statement_id\\\":2,\\\"total\\\":0},{\\\"statement_id\\\":3,\\\"total\\\":0}]}\",\n \"RequestId\": \"65a8fec7-2b39-4b11-893f-3715279d235f\"\n }\n}",
214
214
  "title": "获取PerformancePage信息"
215
215
  }
216
216
  ],
@@ -358,7 +358,7 @@
358
358
  "status": "online"
359
359
  },
360
360
  "UpdateCertificateInstance": {
361
- "document": "一键更新旧证书资源,本接口为异步接口, 调用之后DeployRecordId为0表示任务进行中, 当返回DeployRecordId大于0则表示任务创建成功。 未创建成功则会抛出异常",
361
+ "document": "一键更新旧证书资源,本接口为异步接口, 调用之后DeployRecordId为0表示任务进行中, 重复请求这个接口, 当返回DeployRecordId大于0则表示任务创建成功。 未创建成功则会抛出异常",
362
362
  "input": "UpdateCertificateInstanceRequest",
363
363
  "name": "一键更新旧证书资源",
364
364
  "output": "UpdateCertificateInstanceResponse",
@@ -430,7 +430,7 @@
430
430
  {
431
431
  "document": "一键更新旧证书资源",
432
432
  "input": "POST / HTTP/1.1\nHost: ssl.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateCertificateInstance\n<公共请求参数>\n\n{\n \"CertificateId\": \"abc\",\n \"OldCertificateId\": \"abc\",\n \"ResourceTypes\": [\n \"abc\"\n ],\n \"Regions\": [\n \"abc\"\n ],\n \"ResourceTypesRegions\": [\n {\n \"ResourceType\": \"abc\",\n \"Regions\": [\n \"abc\"\n ]\n }\n ]\n}",
433
- "output": "{\n \"Response\": {\n \"DeployRecordId\": 1,\n \"DeployStatus\": 0,\n \"UpdateSyncProgress\": [\n {\n \"ResourceType\": \"abc\",\n \"UpdateSyncProgressRegions\": [\n {\n \"Region\": \"abc\",\n \"TotalCount\": 0,\n \"OffsetCount\": 0,\n \"Status\": \"abc\"\n }\n ],\n \"Status\": 0\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
433
+ "output": "{\n \"Response\": {\n \"DeployRecordId\": 1,\n \"DeployStatus\": 0,\n \"UpdateSyncProgress\": [\n {\n \"ResourceType\": \"abc\",\n \"UpdateSyncProgressRegions\": [\n {\n \"Region\": \"abc\",\n \"TotalCount\": 0,\n \"OffsetCount\": 0,\n \"Status\": 0\n }\n ],\n \"Status\": 0\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
434
434
  "title": "一键更新旧证书资源"
435
435
  }
436
436
  ],
@@ -6944,7 +6944,7 @@
6944
6944
  "example": "无",
6945
6945
  "member": "PulsarProClusterInfo",
6946
6946
  "name": "ClusterInfo",
6947
- "required": true,
6947
+ "output_required": true,
6948
6948
  "type": "object",
6949
6949
  "value_allowed_null": false
6950
6950
  },
@@ -6954,7 +6954,7 @@
6954
6954
  "example": "无",
6955
6955
  "member": "PulsarNetworkAccessPointInfo",
6956
6956
  "name": "NetworkAccessPointInfos",
6957
- "required": true,
6957
+ "output_required": true,
6958
6958
  "type": "list",
6959
6959
  "value_allowed_null": true
6960
6960
  },
@@ -6964,7 +6964,7 @@
6964
6964
  "example": "无",
6965
6965
  "member": "PulsarProClusterSpecInfo",
6966
6966
  "name": "ClusterSpecInfo",
6967
- "required": true,
6967
+ "output_required": true,
6968
6968
  "type": "object",
6969
6969
  "value_allowed_null": true
6970
6970
  },
@@ -7019,7 +7019,7 @@
7019
7019
  "example": "10",
7020
7020
  "member": "uint64",
7021
7021
  "name": "TotalCount",
7022
- "required": true,
7022
+ "output_required": true,
7023
7023
  "type": "int",
7024
7024
  "value_allowed_null": false
7025
7025
  },
@@ -7029,7 +7029,7 @@
7029
7029
  "example": "无",
7030
7030
  "member": "PulsarProInstance",
7031
7031
  "name": "Instances",
7032
- "required": true,
7032
+ "output_required": true,
7033
7033
  "type": "list",
7034
7034
  "value_allowed_null": false
7035
7035
  },
@@ -13227,6 +13227,16 @@
13227
13227
  "output_required": false,
13228
13228
  "type": "int",
13229
13229
  "value_allowed_null": true
13230
+ },
13231
+ {
13232
+ "disabled": false,
13233
+ "document": "接入点类型\n注意:此字段可能返回 null,表示取不到有效值。",
13234
+ "example": "无",
13235
+ "member": "string",
13236
+ "name": "AccessPointsType",
13237
+ "output_required": false,
13238
+ "type": "string",
13239
+ "value_allowed_null": true
13230
13240
  }
13231
13241
  ],
13232
13242
  "usage": "out"
@@ -504,15 +504,15 @@
504
504
  {
505
505
  "document": "",
506
506
  "input": "POST / HTTP/1.1\nHost: tdmq.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribePulsarProInstanceDetail\n<公共请求参数>\n\n{\n \"ClusterId\": \"pulsar-test\"\n}",
507
- "output": "{\n \"Response\": {\n \"ClusterSpecInfo\": {\n \"MaxTopics\": 1,\n \"MaxNamespaces\": 1,\n \"SpecName\": \"xx\",\n \"MaxBandWidth\": 1,\n \"ScalableTps\": 1,\n \"MaxTps\": 1\n },\n \"NetworkAccessPointInfos\": [\n {\n \"SubnetId\": \"xx\",\n \"InstanceId\": \"xx\",\n \"Endpoint\": \"xx\",\n \"VpcId\": \"xx\",\n \"RouteType\": 1\n }\n ],\n \"ClusterInfo\": {\n \"Status\": 0,\n \"Remark\": \"xx\",\n \"NodeDistribution\": [\n {\n \"NodeCount\": 1,\n \"ZoneId\": \"xx\",\n \"ZoneName\": \"xx\"\n }\n ],\n \"ClusterName\": \"xx\",\n \"ClusterId\": \"xx\",\n \"MaxStorage\": 1,\n \"Version\": \"xx\",\n \"CreateTime\": \"xx\"\n },\n \"RequestId\": \"xx\"\n }\n}",
507
+ "output": "{\n \"Response\": {\n \"ClusterInfo\": {\n \"ClusterId\": \"abc\",\n \"ClusterName\": \"abc\",\n \"Remark\": \"abc\",\n \"CreateTime\": \"abc\",\n \"Status\": 0,\n \"Version\": \"abc\",\n \"NodeDistribution\": [\n {\n \"ZoneName\": \"abc\",\n \"ZoneId\": \"abc\",\n \"NodeCount\": 1\n }\n ],\n \"MaxStorage\": 1,\n \"CanEditRoute\": true,\n \"BillingLabelVersion\": \"abc\"\n },\n \"NetworkAccessPointInfos\": [\n {\n \"VpcId\": \"abc\",\n \"SubnetId\": \"abc\",\n \"Endpoint\": \"abc\",\n \"InstanceId\": \"abc\",\n \"RouteType\": 1,\n \"OperationType\": 1,\n \"AccessPointsType\": \"abc\"\n }\n ],\n \"ClusterSpecInfo\": {\n \"SpecName\": \"abc\",\n \"MaxTps\": 1,\n \"MaxBandWidth\": 1,\n \"MaxNamespaces\": 1,\n \"MaxTopics\": 1,\n \"ScalableTps\": 1\n },\n \"RequestId\": \"abc\"\n }\n}",
508
508
  "title": "获取Pulsar专业版集群实例详情"
509
509
  }
510
510
  ],
511
511
  "DescribePulsarProInstances": [
512
512
  {
513
513
  "document": "",
514
- "input": "POST / HTTP/1.1\nHost: tdmq.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribePulsarProInstances\n<公共请求参数>\n\n{\n \"Limit\": 1,\n \"Filters\": [\n {\n \"Values\": [\n \"xx\"\n ],\n \"Name\": \"xx\"\n }\n ],\n \"Offset\": 1\n}",
515
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"RequestId\": \"xx\",\n \"Instances\": [\n {\n \"Status\": 1,\n \"PayMode\": 1,\n \"Remark\": \"xx\",\n \"VpcId\": \"xx\",\n \"AutoRenewFlag\": 1,\n \"InstanceId\": \"xx\",\n \"ScalableTps\": 1,\n \"ExpireTime\": 1,\n \"InstanceVersion\": \"xx\",\n \"MaxStorage\": 1,\n \"SpecName\": \"xx\",\n \"ConfigDisplay\": \"xx\",\n \"SubnetId\": \"xx\",\n \"InstanceName\": \"xx\",\n \"MaxTps\": 1\n }\n ]\n }\n}",
514
+ "input": "POST / HTTP/1.1\nHost: tdmq.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribePulsarProInstances\n<公共请求参数>\n\n{\n \"Filters\": [\n {\n \"Name\": \"abc\",\n \"Values\": [\n \"abc\"\n ]\n }\n ],\n \"Limit\": 1,\n \"Offset\": 1\n}",
515
+ "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"Instances\": [\n {\n \"InstanceId\": \"abc\",\n \"InstanceName\": \"abc\",\n \"InstanceVersion\": \"abc\",\n \"Status\": 1,\n \"ConfigDisplay\": \"abc\",\n \"MaxTps\": 1,\n \"MaxStorage\": 1,\n \"ExpireTime\": 1,\n \"AutoRenewFlag\": 1,\n \"PayMode\": 1,\n \"Remark\": \"abc\",\n \"SpecName\": \"abc\",\n \"ScalableTps\": 1,\n \"VpcId\": \"abc\",\n \"SubnetId\": \"abc\",\n \"MaxBandWidth\": 1,\n \"Tags\": [\n {\n \"TagKey\": \"abc\",\n \"TagValue\": \"abc\"\n }\n ],\n \"CreateTime\": \"abc\",\n \"BillingLabelVersion\": \"abc\"\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
516
516
  "title": "获取实例列表"
517
517
  }
518
518
  ],
@@ -11765,7 +11765,7 @@
11765
11765
  },
11766
11766
  {
11767
11767
  "disabled": false,
11768
- "document": "日志投递的输出格式。不填保持原有配置。",
11768
+ "document": "日志投递的输出格式。不填保持原有配置。\n特别地,当 TaskType 取值为 cls 时,LogFormat.FormatType 的值只能为 json,且 LogFormat 中其他参数将被忽略,建议不传 LogFormat。",
11769
11769
  "example": "无",
11770
11770
  "member": "LogFormat",
11771
11771
  "name": "LogFormat",
@@ -11938,7 +11938,7 @@
11938
11938
  {
11939
11939
  "disabled": false,
11940
11940
  "document": "站点Id。",
11941
- "example": "test.com",
11941
+ "example": "zone-225qgrnvbi9w",
11942
11942
  "member": "string",
11943
11943
  "name": "ZoneId",
11944
11944
  "required": true,
@@ -173,7 +173,7 @@
173
173
  {
174
174
  "disabled": false,
175
175
  "document": "状态",
176
- "example": "Success",
176
+ "example": "init:任务已初始化;wait:任务等待执行;success:任务执行成功;fail:任务执行失败",
177
177
  "member": "string",
178
178
  "name": "Status",
179
179
  "output_required": true,
@@ -202,13 +202,13 @@
202
202
  },
203
203
  {
204
204
  "disabled": false,
205
- "document": "翻译进度\n注意:此字段可能返回 null,表示取不到有效值。",
205
+ "document": "翻译进度",
206
206
  "example": "100",
207
207
  "member": "int64",
208
208
  "name": "Progress",
209
209
  "output_required": true,
210
210
  "type": "int",
211
- "value_allowed_null": true
211
+ "value_allowed_null": false
212
212
  }
213
213
  ],
214
214
  "usage": "out"