tccli 3.0.1350.1__py2.py3-none-any.whl → 3.0.1351.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.
Files changed (31) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/apm/v20210622/api.json +7 -9
  3. tccli/services/cdn/v20180606/api.json +1 -1
  4. tccli/services/cdwch/v20200915/api.json +7 -7
  5. tccli/services/cdwch/v20200915/examples.json +2 -2
  6. tccli/services/ctem/ctem_client.py +159 -0
  7. tccli/services/ctem/v20231128/api.json +684 -120
  8. tccli/services/ctem/v20231128/examples.json +24 -0
  9. tccli/services/gme/v20180711/api.json +40 -0
  10. tccli/services/kms/v20190118/api.json +188 -0
  11. tccli/services/lke/lke_client.py +12 -436
  12. tccli/services/lke/v20231130/api.json +25 -1065
  13. tccli/services/lke/v20231130/examples.json +0 -64
  14. tccli/services/monitor/monitor_client.py +53 -0
  15. tccli/services/monitor/v20180724/examples.json +2 -2
  16. tccli/services/monitor/v20230616/api.json +58 -195
  17. tccli/services/monitor/v20230616/examples.json +4 -10
  18. tccli/services/mps/v20190612/api.json +6 -6
  19. tccli/services/redis/v20180412/api.json +24 -5
  20. tccli/services/redis/v20180412/examples.json +1 -1
  21. tccli/services/scf/v20180416/api.json +3 -0
  22. tccli/services/ssl/v20191205/api.json +31 -1
  23. tccli/services/tke/v20180525/api.json +2 -2
  24. tccli/services/tse/tse_client.py +80 -27
  25. tccli/services/tse/v20201207/api.json +193 -0
  26. tccli/services/tse/v20201207/examples.json +8 -0
  27. {tccli-3.0.1350.1.dist-info → tccli-3.0.1351.1.dist-info}/METADATA +2 -2
  28. {tccli-3.0.1350.1.dist-info → tccli-3.0.1351.1.dist-info}/RECORD +31 -31
  29. {tccli-3.0.1350.1.dist-info → tccli-3.0.1351.1.dist-info}/WHEEL +0 -0
  30. {tccli-3.0.1350.1.dist-info → tccli-3.0.1351.1.dist-info}/entry_points.txt +0 -0
  31. {tccli-3.0.1350.1.dist-info → tccli-3.0.1351.1.dist-info}/license_files/LICENSE +0 -0
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "actions": {
3
- "GetMonitorData": {
4
- "document": "获取云产品的监控数据。此接口不适用于拉取容器服务监控数据,如需拉取容器服务监控数据,请使用[根据维度条件查询监控数据](https://cloud.tencent.com/document/product/248/51845)接口。\n传入产品的命名空间、对象维度描述和监控指标即可获得相应的监控数据。\n接口调用限制:单请求最多可支持批量拉取10个实例的监控数据,单请求的数据点数限制为1440个。\n若您需要调用的指标、对象较多,可能存在因限频出现拉取失败的情况,建议尽量将请求按时间维度均摊。\n\n>?\n>- 2022年9月1日起,云监控开始对GetMonitorData接口计费。每个主账号每月可获得100万次免费请求额度,超过免费额度后如需继续调用接口需要开通 [API请求按量付费](https://buy.cloud.tencent.com/APIRequestBuy)。计费规则可查看[API计费文档](https://cloud.tencent.com/document/product/248/77914)。",
5
- "input": "GetMonitorDataRequest",
6
- "name": "拉取指标监控数据",
7
- "output": "GetMonitorDataResponse",
3
+ "DescribeAlarmNotifyHistories": {
4
+ "document": "按需查询告警的通知历史",
5
+ "input": "DescribeAlarmNotifyHistoriesRequest",
6
+ "name": "查询告警通知历史",
7
+ "output": "DescribeAlarmNotifyHistoriesResponse",
8
8
  "status": "online"
9
9
  }
10
10
  },
@@ -15,226 +15,78 @@
15
15
  "serviceShortName": "monitor"
16
16
  },
17
17
  "objects": {
18
- "DataPoint": {
19
- "document": "监控数据点",
18
+ "DescribeAlarmNotifyHistoriesRequest": {
19
+ "document": "DescribeAlarmNotifyHistories请求参数结构体",
20
20
  "members": [
21
21
  {
22
22
  "disabled": false,
23
- "document": "实例对象维度组合",
24
- "example": "{\"Name\":\"instanceId\", \"Value\":\"ins-jiyyjnea\"}",
25
- "member": "Dimension",
26
- "name": "Dimensions",
27
- "output_required": true,
28
- "type": "list",
29
- "value_allowed_null": false
30
- },
31
- {
32
- "disabled": false,
33
- "document": "时间戳数组,表示那些时间点有数据,缺失的时间戳,没有数据点,可以理解为掉点了",
34
- "example": "[1736784000, 1736784060]",
35
- "member": "float",
36
- "name": "Timestamps",
37
- "output_required": true,
38
- "type": "list",
39
- "value_allowed_null": false
40
- },
41
- {
42
- "disabled": false,
43
- "document": "监控值数组,该数组和Timestamps一一对应",
44
- "example": "[10, 5.8, 7000.54]",
45
- "member": "float",
46
- "name": "Values",
47
- "output_required": true,
48
- "type": "list",
49
- "value_allowed_null": false
50
- }
51
- ],
52
- "usage": "out"
53
- },
54
- "Dimension": {
55
- "document": "实例对象的维度组合",
56
- "members": [
57
- {
58
- "disabled": false,
59
- "document": "实例维度名称\n注意:此字段可能返回 null,表示取不到有效值。",
60
- "example": "instanceId",
23
+ "document": "监控类型",
24
+ "example": "MT_PROME",
61
25
  "member": "string",
62
- "name": "Name",
63
- "output_required": false,
26
+ "name": "MonitorType",
64
27
  "required": true,
65
- "type": "string",
66
- "value_allowed_null": true
67
- },
68
- {
69
- "disabled": false,
70
- "document": "实例维度值\n注意:此字段可能返回 null,表示取不到有效值。",
71
- "example": "ins-123",
72
- "member": "string",
73
- "name": "Value",
74
- "output_required": false,
75
- "required": true,
76
- "type": "string",
77
- "value_allowed_null": true
78
- }
79
- ],
80
- "usage": "both"
81
- },
82
- "Expr": {
83
- "document": "计算算子",
84
- "members": [
85
- {
86
- "disabled": false,
87
- "document": "算子名称",
88
- "example": "PERCENTILE",
89
- "member": "string",
90
- "name": "Function",
91
- "required": false,
92
28
  "type": "string"
93
29
  },
94
30
  {
95
31
  "disabled": false,
96
- "document": "算子入参值",
97
- "example": "99",
98
- "member": "float",
99
- "name": "N",
100
- "required": false,
101
- "type": "float"
102
- }
103
- ],
104
- "usage": "in"
105
- },
106
- "GetMonitorDataRequest": {
107
- "document": "GetMonitorData请求参数结构体",
108
- "members": [
109
- {
110
- "disabled": false,
111
- "document": "命名空间,如QCE/CVM。各个云产品的详细命名空间说明请参阅各个产品[监控指标](https://cloud.tencent.com/document/product/248/6140)文档",
112
- "example": "QCE/CVM",
113
- "member": "string",
114
- "name": "Namespace",
32
+ "document": "起始时间点,unix秒级时间戳",
33
+ "example": "1732801290",
34
+ "member": "int64",
35
+ "name": "QueryBaseTime",
115
36
  "required": true,
116
- "type": "string"
37
+ "type": "int"
117
38
  },
118
39
  {
119
40
  "disabled": false,
120
- "document": "指标名称,如CPUUsage,仅支持单指标拉取。各个云产品的详细指标说明请参阅各个产品[监控指标](https://cloud.tencent.com/document/product/248/6140)文档,对应的指标英文名即为MetricName",
121
- "example": "CPUUsage",
122
- "member": "string",
123
- "name": "MetricName",
41
+ "document": "从 QueryBaseTime 开始,需要查询往前多久的时间,单位秒",
42
+ "example": "1800",
43
+ "member": "int64",
44
+ "name": "QueryBeforeSeconds",
124
45
  "required": true,
125
- "type": "string"
46
+ "type": "int"
126
47
  },
127
48
  {
128
49
  "disabled": false,
129
- "document": "实例对象的维度组合,格式为key-value键值对形式的集合。不同类型的实例字段完全不同,如CVM为[{\"Name\":\"InstanceId\",\"Value\":\"ins-j0hk02zo\"}],Ckafka为[{\"Name\":\"instanceId\",\"Value\":\"ckafka-l49k54dd\"}],COS为[{\"Name\":\"appid\",\"Value\":\"1258344699\"},{\"Name\":\"bucket\",\"Value\":\"rig-1258344699\"}]。各个云产品的维度请参阅各个产品[监控指标](https://cloud.tencent.com/document/product/248/6140)文档,对应的维度列即为维度组合的key,value为key对应的值。单请求最多支持批量拉取10个实例的监控数据。",
130
- "example": "",
131
- "member": "Instance",
132
- "name": "Instances",
50
+ "document": "分页参数",
51
+ "example": "{1,2}",
52
+ "member": "PageByNoParams",
53
+ "name": "PageParams",
133
54
  "required": true,
134
- "type": "list"
135
- },
136
- {
137
- "disabled": false,
138
- "document": "监控统计周期,如60。默认为取值为300,单位为s。每个指标支持的统计周期不一定相同,各个云产品支持的统计周期请参阅各个产品[监控指标](https://cloud.tencent.com/document/product/248/6140)文档,对应的统计周期列即为支持的统计周期。单请求的数据点数限制为1440个。",
139
- "example": "300",
140
- "member": "uint64",
141
- "name": "Period",
142
- "required": false,
143
- "type": "int"
55
+ "type": "object"
144
56
  },
145
57
  {
146
58
  "disabled": false,
147
- "document": "起始时间,如2018-09-22T19:51:23+08:00",
148
- "example": "2019-03-24T10:51:23+08:00",
149
- "member": "datetime_iso",
150
- "name": "StartTime",
59
+ "document": "当监控类型为 MT_QCE 时候需要填写,归属的命名空间",
60
+ "example": "qce/cvm",
61
+ "member": "string",
62
+ "name": "Namespace",
151
63
  "required": false,
152
64
  "type": "string"
153
65
  },
154
66
  {
155
67
  "disabled": false,
156
- "document": "结束时间,如2018-09-22T20:51:23+08:00,默认为当前时间。 EndTime不能小于StartTime",
157
- "example": "2019-03-24T20:51:23+08:00",
158
- "member": "datetime_iso",
159
- "name": "EndTime",
68
+ "document": "当监控类型为 MT_QCE 时候需要填写, 告警策略类型",
69
+ "example": "cvm_device",
70
+ "member": "string",
71
+ "name": "ModelName",
160
72
  "required": false,
161
73
  "type": "string"
162
74
  },
163
75
  {
164
76
  "disabled": false,
165
- "document": "计算算子",
166
- "example": "{ \"Function\": \"PECENTILE\", \"N\": 99 }",
167
- "member": "Expr",
168
- "name": "Expr",
77
+ "document": "查询某个策略的通知历史",
78
+ "example": "policy-123",
79
+ "member": "string",
80
+ "name": "PolicyId",
169
81
  "required": false,
170
- "type": "object"
82
+ "type": "string"
171
83
  }
172
84
  ],
173
85
  "type": "object"
174
86
  },
175
- "GetMonitorDataResponse": {
176
- "document": "GetMonitorData返回参数结构体",
87
+ "DescribeAlarmNotifyHistoriesResponse": {
88
+ "document": "DescribeAlarmNotifyHistories返回参数结构体",
177
89
  "members": [
178
- {
179
- "disabled": false,
180
- "document": "统计周期",
181
- "example": "300",
182
- "member": "uint64",
183
- "name": "Period",
184
- "output_required": true,
185
- "type": "int",
186
- "value_allowed_null": false
187
- },
188
- {
189
- "disabled": false,
190
- "document": "指标名",
191
- "example": "CPUUsage",
192
- "member": "string",
193
- "name": "MetricName",
194
- "output_required": true,
195
- "type": "string",
196
- "value_allowed_null": false
197
- },
198
- {
199
- "disabled": false,
200
- "document": "数据点数组",
201
- "example": "无",
202
- "member": "DataPoint",
203
- "name": "DataPoints",
204
- "output_required": true,
205
- "type": "list",
206
- "value_allowed_null": false
207
- },
208
- {
209
- "disabled": false,
210
- "document": "开始时间",
211
- "example": "2019-03-24T10:50:00+08:00",
212
- "member": "datetime_iso",
213
- "name": "StartTime",
214
- "output_required": true,
215
- "type": "string",
216
- "value_allowed_null": false
217
- },
218
- {
219
- "disabled": false,
220
- "document": "结束时间",
221
- "example": "2019-03-24T20:50:00+08:00",
222
- "member": "datetime_iso",
223
- "name": "EndTime",
224
- "output_required": true,
225
- "type": "string",
226
- "value_allowed_null": false
227
- },
228
- {
229
- "disabled": false,
230
- "document": "返回信息",
231
- "example": "无",
232
- "member": "string",
233
- "name": "Msg",
234
- "output_required": true,
235
- "type": "string",
236
- "value_allowed_null": false
237
- },
238
90
  {
239
91
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
240
92
  "member": "string",
@@ -244,18 +96,29 @@
244
96
  ],
245
97
  "type": "object"
246
98
  },
247
- "Instance": {
248
- "document": "实例维度组合数组",
99
+ "PageByNoParams": {
100
+ "document": "分页请求参数",
249
101
  "members": [
250
102
  {
251
103
  "disabled": false,
252
- "document": "实例的维度组合\n注意:此字段可能返回 null,表示取不到有效值。",
104
+ "document": "每个分页的数量是多少\n注意:此字段可能返回 null,表示取不到有效值。",
105
+ "example": "19",
106
+ "member": "int64",
107
+ "name": "PerPage",
108
+ "output_required": false,
109
+ "required": false,
110
+ "type": "int",
111
+ "value_allowed_null": true
112
+ },
113
+ {
114
+ "disabled": false,
115
+ "document": "第几个分页,从1开始\n注意:此字段可能返回 null,表示取不到有效值。",
253
116
  "example": "无",
254
- "member": "Dimension",
255
- "name": "Dimensions",
117
+ "member": "string",
118
+ "name": "PageNo",
256
119
  "output_required": false,
257
- "required": true,
258
- "type": "list",
120
+ "required": false,
121
+ "type": "string",
259
122
  "value_allowed_null": true
260
123
  }
261
124
  ],
@@ -1,17 +1,11 @@
1
1
  {
2
2
  "actions": {
3
- "GetMonitorData": [
4
- {
5
- "document": "拉取某台云服务器某段时间内统计周期为5分钟的CPU利用率监控数据",
6
- "input": "POST / HTTP/1.1\nHost: monitor.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetMonitorData\n<公共请求参数>\n\n{\n \"Namespace\": \"QCE/CVM\",\n \"MetricName\": \"CPUUsage\",\n \"Period\": 300,\n \"Instances\": [\n {\n \"Dimensions\": [\n {\n \"Name\": \"InstanceId\",\n \"Value\": \"ins-j0hk02zo\"\n }\n ]\n }\n ],\n \"StartTime\": \"2019-03-24T10:51:23+08:00\",\n \"EndTime\": \"2019-03-24T20:51:23+08:00\"\n}",
7
- "output": "{\n \"Response\": {\n \"StartTime\": \"2019-03-24T10:50:00+08:00\",\n \"EndTime\": \"2019-03-24T20:50:00+08:00\",\n \"Period\": 300,\n \"MetricName\": \"CPUUsage\",\n \"DataPoints\": [\n {\n \"Dimensions\": [\n {\n \"Name\": \"InstanceId\",\n \"Value\": \"ins-j0hk02zo\"\n }\n ],\n \"Timestamps\": [\n 1535079000,\n 1535079300,\n 1535079600,\n 1535079900,\n 1535080200,\n 1535080500\n ],\n \"Values\": [\n 2.566,\n 2.283,\n 6.316,\n 2.816,\n 2.7,\n 2.35\n ]\n }\n ],\n \"Msg\": \"\",\n \"RequestId\": \"d96ec542-6547-4af2-91ac-fee85c1b8b85\"\n }\n}",
8
- "title": "拉取单台云服务器监控数据"
9
- },
3
+ "DescribeAlarmNotifyHistories": [
10
4
  {
11
5
  "document": "",
12
- "input": "POST / HTTP/1.1\nHost: monitor.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetMonitorData\n<公共请求参数>\n\n{\n \"Namespace\": \"QCE/BWP\",\n \"MetricName\": \"BWPResourceBandwidthOut\",\n \"Instances\": [\n {\n \"Dimensions\": [\n {\n \"Name\": \"bandwidthPackageId\",\n \"Value\": \"bwp-djhptxvq\"\n },\n {\n \"Name\": \"resourceId\",\n \"Value\": \"eip-abcd\"\n }\n ]\n }\n ],\n \"Expr\": {\n \"Function\": \"PERCENTILE\",\n \"N\": 99\n },\n \"Period\": 60,\n \"StartTime\": \"2024-12-11T10:57:27+08:00\",\n \"EndTime\": \"2024-12-11T11:07:27+08:00\"\n}",
13
- "output": "{\n \"Response\": {\n \"RequestId\": \"34e19559-914f-4730-be56-6d53a13e9764\",\n \"Msg\": \"Success\",\n \"StartTime\": \"2024-12-11T10:57:27+08:00\",\n \"EndTime\": \"2024-12-11T11:07:27+08:00\",\n \"MetricName\": \"BWPResourceBandwidthOut\",\n \"Period\": 60,\n \"DataPoints\": [\n {\n \"Dimensions\": [\n {\n \"Name\": \"u_id\",\n \"Value\": \"eip-abcd\"\n },\n {\n \"Name\": \"netgroup\",\n \"Value\": \"bwp-djhptxvq\"\n }\n ],\n \"Timestamps\": [\n 1733886060\n ],\n \"Values\": [\n 12139179.200000001\n ]\n }\n ]\n }\n}",
14
- "title": "获取带宽包P99数据"
6
+ "input": "POST / HTTP/1.1\nHost: monitor.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeAlarmNotifyHistories\n<公共请求参数>\n\n{\n \"MonitorType\": \"MT_PROME\",\n \"QueryBaseTime\": 1734576676,\n \"QueryBeforeSeconds\": 172000,\n \"PageParams\": {\n \"PerPage\": 1,\n \"PageNo\": \"1\"\n }\n}",
7
+ "output": "{\n \"Response\": {\n \"RequestId\": \"efc734bb-1caa-4a4f-a159-97115b57125a\"\n }\n}",
8
+ "title": "测试环境真实示例"
15
9
  }
16
10
  ]
17
11
  },
@@ -20184,10 +20184,10 @@
20184
20184
  {
20185
20185
  "disabled": false,
20186
20186
  "document": "审核结果的类型,可以取的值有:\n<li>ImagePorn:图片鉴黄</li>\n<li>ImageTerrorism:图片涉敏</li>\n<li>ImagePolitical:图片涉敏</li>\n<li>VoicePorn:声音违规</li>",
20187
- "example": "\"\"",
20187
+ "example": "ImagePorn",
20188
20188
  "member": "string",
20189
20189
  "name": "Type",
20190
- "required": true,
20190
+ "output_required": true,
20191
20191
  "type": "string",
20192
20192
  "value_allowed_null": false
20193
20193
  },
@@ -20197,7 +20197,7 @@
20197
20197
  "example": "无",
20198
20198
  "member": "LiveStreamAiReviewImagePornResult",
20199
20199
  "name": "ImagePornResultSet",
20200
- "required": true,
20200
+ "output_required": true,
20201
20201
  "type": "list",
20202
20202
  "value_allowed_null": false
20203
20203
  },
@@ -20207,7 +20207,7 @@
20207
20207
  "example": "无",
20208
20208
  "member": "LiveStreamAiReviewImageTerrorismResult",
20209
20209
  "name": "ImageTerrorismResultSet",
20210
- "required": true,
20210
+ "output_required": true,
20211
20211
  "type": "list",
20212
20212
  "value_allowed_null": false
20213
20213
  },
@@ -20217,7 +20217,7 @@
20217
20217
  "example": "无",
20218
20218
  "member": "LiveStreamAiReviewImagePoliticalResult",
20219
20219
  "name": "ImagePoliticalResultSet",
20220
- "required": true,
20220
+ "output_required": true,
20221
20221
  "type": "list",
20222
20222
  "value_allowed_null": false
20223
20223
  },
@@ -20227,7 +20227,7 @@
20227
20227
  "example": "无",
20228
20228
  "member": "LiveStreamAiReviewVoicePornResult",
20229
20229
  "name": "VoicePornResultSet",
20230
- "required": true,
20230
+ "output_required": true,
20231
20231
  "type": "list",
20232
20232
  "value_allowed_null": false
20233
20233
  }
@@ -6088,8 +6088,8 @@
6088
6088
  "type": "int"
6089
6089
  },
6090
6090
  {
6091
- "disabled": false,
6092
- "document": "项目 ID。登录 [Redis 控制台](https://console.cloud.tencent.com/redis),在右上角的账号信息下拉菜单中,选择**项目管理**,即可获取对应的项目 ID",
6091
+ "disabled": true,
6092
+ "document": "该字段已废弃, 请忽略, 项目 ID",
6093
6093
  "example": "11322",
6094
6094
  "member": "int64",
6095
6095
  "name": "ProjectIds",
@@ -6098,7 +6098,7 @@
6098
6098
  },
6099
6099
  {
6100
6100
  "disabled": false,
6101
- "document": "任务类型。\n\n- FLOW_CREATE: \"001\",新建实例。\n- FLOW_RESIZE : \"002\",配置变更。\n- FLOW_CLOSE:\"003\",关闭实例。\n- FLOW_CLEAN: \"004\",清空实例。\n- FLOW_STARTUP:\"005\",实例启用。\n- FLOW_DELETE:\"006\",删除实例。\n- FLOW_SETPWD:\"007\",重置密码。\n- FLOW_EXPORTBACKUP:\"009\",导出备份文件。\n- FLOW_RESTOREBACKUP:\"010\",恢复备份。\n- FLOW_BACKUPINSTANCE:\"012\",备份实例。\n- FLOW_MIGRATEINSTANCE:\"013\",迁移实例。\n- FLOW_DELBACKUP:\"014\",删除备份。\n- FLOW_EXCHANGEINSTANCE: \"016\",切换实例流程。\n- FLOW_AUTOBACKUP:\"017\",自动备份实例。\n- FLOW_MIGRATECHECK: \"022\",迁移参数校验。\n- FLOW_MIGRATETASK:\"023\",数据迁移中。\n- FLOW_CLEANDB:\"025\",清空某个数据库。\n- FLOW_CLONEBACKUP:\"026\",克隆备份。\n- FLOW_CHANGEVIP: \"027\",改变vip地址。\n- FLOW_EXPORSHR :\"028\",扩缩容。\n- FLOW_ADDNODES:\"029\",加(减)节点。\n- FLOW_CHANGENET:\"031\",改变网络类型。\n- FLOW_MODIFYINSTACEREADONLY:\"033\",只读策略变更。\n- FLOW_MODIFYINSTANCEPARAMS:\"034\",修改实例参数。\n- FLOW_MODIFYINSTANCEPASSWORDFREE:\"035\",设置免密。\n- FLOW_SWITCHINSTANCEVIP:\"036\",实例VIP切换。\n- FLOW_MODIFYINSTANCEACCOUNT:\"037\",实例帐号变更。\n- FLOW_MODIFYINSTANCEBANDWIDTH:\"038\",实例带宽变更。\n- FLOW_ENABLEINSTANCE_REPLICATE:\"039\",开启副本只读。\n- FLOW_DISABLEINSTANCE_REPLICATE:\"040\",关闭副本只读。\n- FLOW_UpgradeArch:\"041\",实例架构升级,主从升集群。\n- FLOW_DowngradeArch: \"042\",实例架构降级,集群降主从。\n- FLOW_UpgradeVersion: \"043\",版本升级。\n- FLOW_MODIFYCONNECTIONCONFIG:\"044\",带宽连接数调整,\n- FLOW_CLEARNETWORK:\"045\",更换网络,\n- FLOW_REMOVE_BACKUP_FILE:\"046\",删除备份。\n- FLOW_UPGRADE_SUPPORT_MULTI_AZ:\"047\",升级实例支持多可用区。\n- FLOW_SHUTDOWN_MASTER:\"048\",模拟故障。\n- FLOW_CHANGE_REPLICA_TO_MASTER:\"049\",手动提主。\n- FLOW_CODE_ADD_REPLICATION_INSTANCE:\"050\",新增复制组。\n- FLOW_OPEN_WAN:\"052\",开通外网。\n- FLOW_CLOSE_WAN:\"053\",关闭外网FLOW_UPDATE_WAN:\"054\",更新外网。\n- FLOW_CODE_DELETE_REPLICATION_INSTANCE:\"055\",解绑复制组。\n- FLOW_CODE_CHANGE_MASTER_INSTANCE:\"056\",复制组实例切主。\n- FLOW_CODE_CHANGE_INSTANCE_ROLE: \"057\",更改复制组实例角色。\n- FLOW_MIGRATE_NODE:\"058\",迁移节点。\n- FLOW_SWITCH_NODE:\"059\",切换节点。\n- FLOW_UPGRADE_SMALL_VERSION:\"060\",升级 Redi s版本。\n- FLOW_UPGRADE_PROXY_VERSION:\"061\",升级 Proxy 版本。\n- FLOW_MODIFY_INSTANCE_NETWORK: \"062\",实例修改网络。\n- FLOW_MIGRATE_PROXY_NODE:\"063\",迁移proxy节点。\n- FLOW_MIGRATION_INSTANCE_ZONE:\"066\",实例可用区迁移中。\n- FLOW_UPGRADE_INSTANCE_CACHE_AND_PROXY: \"067\",实例版本升级中。\n- FLOW_MODIFY_PROXY_NUM:\"069\",加(减)Proxy 节点。\n- FLOW_MODIFYBACKUPMOD:\"070\",变更实例备份模式。",
6101
+ "document": "任务类型。\n\n- FLOW_CREATE: \"001\",新建实例。\n- FLOW_RESIZE : \"002\",配置变更。\n- FLOW_CLOSE:\"003\",关闭实例。\n- FLOW_CLEAN: \"004\",清空实例。\n- FLOW_STARTUP:\"005\",实例启用。\n- FLOW_DELETE:\"006\",删除实例。\n- FLOW_SETPWD:\"007\",重置密码。\n- FLOW_EXPORTBACKUP:\"009\",导出备份文件。\n- FLOW_RESTOREBACKUP:\"010\",恢复备份。\n- FLOW_BACKUPINSTANCE:\"012\",备份实例。\n- FLOW_MIGRATEINSTANCE:\"013\",迁移实例。\n- FLOW_DELBACKUP:\"014\",删除备份。\n- FLOW_EXCHANGEINSTANCE: \"016\",切换实例流程。\n- FLOW_AUTOBACKUP:\"017\",自动备份实例。\n- FLOW_MIGRATECHECK: \"022\",迁移参数校验。\n- FLOW_MIGRATETASK:\"023\",数据迁移中。\n- FLOW_CLEANDB:\"025\",清空某个数据库。\n- FLOW_CLONEBACKUP:\"026\",克隆备份。\n- FLOW_CHANGEVIP: \"027\",改变vip地址。\n- FLOW_EXPORSHR :\"028\",扩缩容。\n- FLOW_ADDNODES:\"029\",加(减)节点。\n- FLOW_CHANGENET:\"031\",改变网络类型。\n- FLOW_MODIFYINSTACEREADONLY:\"033\",只读策略变更。\n- FLOW_MODIFYINSTANCEPARAMS:\"034\",修改实例参数。\n- FLOW_MODIFYINSTANCEPASSWORDFREE:\"035\",设置免密。\n- FLOW_SWITCHINSTANCEVIP:\"036\",实例VIP切换。\n- FLOW_MODIFYINSTANCEACCOUNT:\"037\",实例账号变更。\n- FLOW_MODIFYINSTANCEBANDWIDTH:\"038\",实例带宽变更。\n- FLOW_ENABLEINSTANCE_REPLICATE:\"039\",开启副本只读。\n- FLOW_DISABLEINSTANCE_REPLICATE:\"040\",关闭副本只读。\n- FLOW_UpgradeArch:\"041\",实例架构升级,主从升集群。\n- FLOW_DowngradeArch: \"042\",实例架构降级,集群降主从。\n- FLOW_UpgradeVersion: \"043\",版本升级。\n- FLOW_MODIFYCONNECTIONCONFIG:\"044\",带宽连接数调整,\n- FLOW_CLEARNETWORK:\"045\",更换网络,\n- FLOW_REMOVE_BACKUP_FILE:\"046\",删除备份。\n- FLOW_UPGRADE_SUPPORT_MULTI_AZ:\"047\",升级实例支持多可用区。\n- FLOW_SHUTDOWN_MASTER:\"048\",模拟故障。\n- FLOW_CHANGE_REPLICA_TO_MASTER:\"049\",手动提主。\n- FLOW_CODE_ADD_REPLICATION_INSTANCE:\"050\",新增复制组。\n- FLOW_OPEN_WAN:\"052\",开通外网。\n- FLOW_CLOSE_WAN:\"053\",关闭外网FLOW_UPDATE_WAN:\"054\",更新外网。\n- FLOW_CODE_DELETE_REPLICATION_INSTANCE:\"055\",解绑复制组。\n- FLOW_CODE_CHANGE_MASTER_INSTANCE:\"056\",复制组实例切主。\n- FLOW_CODE_CHANGE_INSTANCE_ROLE: \"057\",更改复制组实例角色。\n- FLOW_MIGRATE_NODE:\"058\",迁移节点。\n- FLOW_SWITCH_NODE:\"059\",切换节点。\n- FLOW_UPGRADE_SMALL_VERSION:\"060\",升级 Redis版本。\n- FLOW_UPGRADE_PROXY_VERSION:\"061\",升级 Proxy 版本。\n- FLOW_MODIFY_INSTANCE_NETWORK: \"062\",实例修改网络。\n- FLOW_MIGRATE_PROXY_NODE:\"063\",迁移proxy节点。\n- FLOW_MIGRATION_INSTANCE_ZONE:\"066\",实例可用区迁移中。\n- FLOW_UPGRADE_INSTANCE_CACHE_AND_PROXY: \"067\",实例版本升级中。\n- FLOW_MODIFY_PROXY_NUM:\"069\",加(减)Proxy 节点。\n- FLOW_MODIFYBACKUPMOD:\"070\",变更实例备份模式。",
6102
6102
  "example": "037",
6103
6103
  "member": "string",
6104
6104
  "name": "TaskTypes",
@@ -9195,7 +9195,7 @@
9195
9195
  },
9196
9196
  {
9197
9197
  "disabled": false,
9198
- "document": "更换为新的安全组 ID 列表,即一个或者多个安全组 ID 组成的数组。\n- 若实例第一次配置安全组,请使用接口[AssociateSecurityGroups](https://cloud.tencent.com/document/product/239/41260)先绑定安全组。\n- 更换安全组,请在[控制台安全组](https://console.cloud.tencent.com/vpc/security-group)页面获取安全组 ID",
9198
+ "document": "更换为新的安全组 ID 列表,即一个或者多个安全组 ID 组成的数组。\n- 若实例第一次配置安全组,请使用接口[AssociateSecurityGroups](https://cloud.tencent.com/document/product/239/41260)先绑定安全组。\n- 更换安全组,请在[控制台安全组](https://console.cloud.tencent.com/vpc/security-group)页面获取安全组 ID。\n **注意:**该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。",
9199
9199
  "example": "[\"sg-ajr1jzgj\\n\"]",
9200
9200
  "member": "string",
9201
9201
  "name": "SecurityGroupIds",
@@ -12067,11 +12067,20 @@
12067
12067
  {
12068
12068
  "disabled": false,
12069
12069
  "document": "实例 ProxyID,请通过接口[DescribeInstanceNodeInfo](https://cloud.tencent.com/document/product/239/48603)的返回参数**Proxy**中的**NodeId**获取。 ",
12070
- "example": "vbjxbsucvnkcndkbk",
12070
+ "example": "6ff0eb7815606bb7e3f14cdde9410b64b488e8f9",
12071
12071
  "member": "string",
12072
12072
  "name": "ProxyID",
12073
12073
  "required": false,
12074
12074
  "type": "string"
12075
+ },
12076
+ {
12077
+ "disabled": false,
12078
+ "document": "实例 ProxyID列表,请通过接口[DescribeInstanceNodeInfo](https://cloud.tencent.com/document/product/239/48603)的返回参数**Proxy**中的**NodeId**获取。",
12079
+ "example": "[\"896873be5805ebacae5042311237e6d2d78be00b\"]",
12080
+ "member": "string",
12081
+ "name": "ProxyIDList",
12082
+ "required": false,
12083
+ "type": "list"
12075
12084
  }
12076
12085
  ],
12077
12086
  "type": "object"
@@ -12079,6 +12088,16 @@
12079
12088
  "SwitchProxyResponse": {
12080
12089
  "document": "SwitchProxy返回参数结构体",
12081
12090
  "members": [
12091
+ {
12092
+ "disabled": false,
12093
+ "document": "任务ID。",
12094
+ "example": "1378445",
12095
+ "member": "int64",
12096
+ "name": "TaskId",
12097
+ "output_required": true,
12098
+ "type": "int",
12099
+ "value_allowed_null": false
12100
+ },
12082
12101
  {
12083
12102
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
12084
12103
  "member": "string",
@@ -860,7 +860,7 @@
860
860
  {
861
861
  "document": "",
862
862
  "input": "https://redis.tencentcloudapi.com/?Action=SwitchProxy\n&InstanceId=crs-5a4py64p\n&<公共请求参数>",
863
- "output": "{\n \"Response\": {\n \"RequestId\": \"2d4387ee-2011-449e-a32b-87f9366f3ef4\"\n }\n}",
863
+ "output": "{\n \"Response\": {\n \"TaskId\": 1378445,\n \"RequestId\": \"2d4387ee-2011-449e-a32b-87f9366f3ef4\"\n }\n}",
864
864
  "title": "请求示例"
865
865
  }
866
866
  ],
@@ -3121,6 +3121,7 @@
3121
3121
  "example": "100",
3122
3122
  "member": "int64",
3123
3123
  "name": "TotalCount",
3124
+ "output_required": true,
3124
3125
  "type": "int",
3125
3126
  "value_allowed_null": false
3126
3127
  },
@@ -3130,6 +3131,7 @@
3130
3131
  "example": "无",
3131
3132
  "member": "FunctionLog",
3132
3133
  "name": "Data",
3134
+ "output_required": true,
3133
3135
  "type": "list",
3134
3136
  "value_allowed_null": false
3135
3137
  },
@@ -3139,6 +3141,7 @@
3139
3141
  "example": "无",
3140
3142
  "member": "LogSearchContext",
3141
3143
  "name": "SearchContext",
3144
+ "output_required": true,
3142
3145
  "type": "object",
3143
3146
  "value_allowed_null": false
3144
3147
  },
@@ -3783,6 +3783,16 @@
3783
3783
  "output_required": true,
3784
3784
  "type": "string",
3785
3785
  "value_allowed_null": false
3786
+ },
3787
+ {
3788
+ "disabled": false,
3789
+ "document": "待部署总数",
3790
+ "example": "无",
3791
+ "member": "int64",
3792
+ "name": "PendingTotalCount",
3793
+ "output_required": false,
3794
+ "type": "int",
3795
+ "value_allowed_null": false
3786
3796
  }
3787
3797
  ],
3788
3798
  "usage": "out"
@@ -6669,6 +6679,16 @@
6669
6679
  "type": "int",
6670
6680
  "value_allowed_null": false
6671
6681
  },
6682
+ {
6683
+ "disabled": false,
6684
+ "document": "带部署总数",
6685
+ "example": "0",
6686
+ "member": "int64",
6687
+ "name": "PendingTotalCount",
6688
+ "output_required": false,
6689
+ "type": "int",
6690
+ "value_allowed_null": false
6691
+ },
6672
6692
  {
6673
6693
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
6674
6694
  "member": "string",
@@ -7226,6 +7246,16 @@
7226
7246
  "type": "int",
7227
7247
  "value_allowed_null": false
7228
7248
  },
7249
+ {
7250
+ "disabled": false,
7251
+ "document": "待部署总数",
7252
+ "example": "0",
7253
+ "member": "int64",
7254
+ "name": "PendingTotalCount",
7255
+ "output_required": false,
7256
+ "type": "int",
7257
+ "value_allowed_null": false
7258
+ },
7229
7259
  {
7230
7260
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
7231
7261
  "member": "string",
@@ -11828,7 +11858,7 @@
11828
11858
  },
11829
11859
  {
11830
11860
  "disabled": false,
11831
- "document": "重复证书的ID",
11861
+ "document": "当入参Repeatable为false的时候 返回的重复证书的ID,注意当用户上传相同的证书超过5000张的时候,当前接口会无视入参Repeatable,直接返回重复证书的ID。",
11832
11862
  "example": "heys**jsk",
11833
11863
  "member": "string",
11834
11864
  "name": "RepeatCertId",
@@ -17667,7 +17667,7 @@
17667
17667
  },
17668
17668
  {
17669
17669
  "disabled": false,
17670
- "document": "数据盘挂载点, 默认不挂载数据盘. 已格式化的 ext3,ext4,xfs 文件系统的数据盘将直接挂载,其他文件系统或未格式化的数据盘将自动格式化为ext4 (tlinux系统格式化成xfs)并挂载,请注意备份数据! 无数据盘或有多块数据盘的云主机此设置不生效。\n注意,注意,多盘场景请使用下方的DataDisks数据结构,设置对应的云盘类型、云盘大小、挂载路径、是否格式化等信息。\n注意:此字段可能返回 null,表示取不到有效值。",
17670
+ "document": "数据盘挂载点, 默认不挂载数据盘. 已格式化的 ext3,ext4,xfs 文件系统的数据盘将直接挂载,其他文件系统或未格式化的数据盘将自动格式化为ext4 (tlinux系统格式化成xfs)并挂载,请注意备份数据! 无数据盘或有多块数据盘的云主机此设置不生效。\n注意:多盘场景请使用下方的DataDisks数据结构,设置对应的云盘类型、云盘大小、挂载路径、是否格式化等信息。\n注意:此字段可能返回 null,表示取不到有效值。",
17671
17671
  "example": "/tmp",
17672
17672
  "member": "string",
17673
17673
  "name": "MountTarget",
@@ -17678,7 +17678,7 @@
17678
17678
  },
17679
17679
  {
17680
17680
  "disabled": false,
17681
- "document": "dockerd --graph 指定值, 默认为 /var/lib/docker\n注意:此字段可能返回 null,表示取不到有效值。",
17681
+ "document": "dockerd --graph 指定值。若未指定此参数,将使用内置默认路径 /var/lib/docker 作为存储根目录。\n注意:此字段可能返回 null,表示取不到有效值。",
17682
17682
  "example": "/var/lib/docker",
17683
17683
  "member": "string",
17684
17684
  "name": "DockerGraphPath",