tccli 3.0.1139.1__py2.py3-none-any.whl → 3.0.1141.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/services/cynosdb/v20190107/api.json +113 -33
- tccli/services/cynosdb/v20190107/examples.json +3 -3
- tccli/services/domain/v20180808/api.json +30 -30
- tccli/services/emr/v20190103/api.json +11 -2
- tccli/services/ess/v20201111/api.json +23 -14
- tccli/services/ess/v20201111/examples.json +4 -4
- tccli/services/essbasic/v20210526/api.json +13 -13
- tccli/services/essbasic/v20210526/examples.json +2 -2
- tccli/services/iotexplorer/v20190423/api.json +49 -0
- tccli/services/iss/iss_client.py +114 -8
- tccli/services/iss/v20230517/api.json +221 -0
- tccli/services/iss/v20230517/examples.json +16 -0
- tccli/services/mmps/v20200710/api.json +3 -3
- tccli/services/monitor/v20180724/api.json +1 -1
- tccli/services/scf/v20180416/api.json +10 -10
- tccli/services/ses/ses_client.py +228 -16
- tccli/services/ses/v20201002/api.json +266 -0
- tccli/services/ses/v20201002/examples.json +32 -0
- tccli/services/ssl/v20191205/api.json +76 -25
- tccli/services/ssl/v20191205/examples.json +3 -3
- tccli/services/tcr/v20190924/api.json +5 -1
- tccli/services/tcr/v20190924/examples.json +1 -1
- tccli/services/tdmq/v20200217/api.json +2 -2
- tccli/services/vpc/v20170312/api.json +2086 -217
- tccli/services/vpc/v20170312/examples.json +151 -1
- tccli/services/vpc/vpc_client.py +1180 -226
- tccli/services/waf/v20180125/api.json +0 -43
- tccli/services/waf/v20180125/examples.json +0 -8
- tccli/services/waf/waf_client.py +0 -53
- tccli/services/wedata/v20210820/api.json +360 -0
- tccli/services/wedata/v20210820/examples.json +28 -0
- tccli/services/wedata/wedata_client.py +114 -8
- {tccli-3.0.1139.1.dist-info → tccli-3.0.1141.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1139.1.dist-info → tccli-3.0.1141.1.dist-info}/RECORD +38 -38
- {tccli-3.0.1139.1.dist-info → tccli-3.0.1141.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1139.1.dist-info → tccli-3.0.1141.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1139.1.dist-info → tccli-3.0.1141.1.dist-info}/license_files/LICENSE +0 -0
| @@ -8,6 +8,14 @@ | |
| 8 8 | 
             
                    "title": "新增批量发送任务"
         | 
| 9 9 | 
             
                  }
         | 
| 10 10 | 
             
                ],
         | 
| 11 | 
            +
                "CreateCustomBlacklist": [
         | 
| 12 | 
            +
                  {
         | 
| 13 | 
            +
                    "document": "",
         | 
| 14 | 
            +
                    "input": "POST / HTTP/1.1\nHost: ses.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateCustomBlacklist\n<公共请求参数>\n\n{\n    \"ExpireDate\": \"2024-06-19\",\n    \"Emails\": [\n        \"b@gmail.com\",\n        \"a@gmail.com\"\n    ]\n}",
         | 
| 15 | 
            +
                    "output": "{\n    \"Response\": {\n        \"RequestId\": \"8979fc1e-9564-4fc9-bf7d-2958ce679b72\"\n    }\n}",
         | 
| 16 | 
            +
                    "title": "添加邮箱地址到黑名单"
         | 
| 17 | 
            +
                  }
         | 
| 18 | 
            +
                ],
         | 
| 11 19 | 
             
                "CreateEmailAddress": [
         | 
| 12 20 | 
             
                  {
         | 
| 13 21 | 
             
                    "document": "",
         | 
| @@ -70,6 +78,14 @@ | |
| 70 78 | 
             
                    "title": "删除收件人黑名单"
         | 
| 71 79 | 
             
                  }
         | 
| 72 80 | 
             
                ],
         | 
| 81 | 
            +
                "DeleteCustomBlackList": [
         | 
| 82 | 
            +
                  {
         | 
| 83 | 
            +
                    "document": "",
         | 
| 84 | 
            +
                    "input": "POST / HTTP/1.1\nHost: ses.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteCustomBlackList\n<公共请求参数>\n\n{\n    \"Emails\": [\n        \"b@gmail.com\",\n        \"a@gmail.com\"\n    ]\n}",
         | 
| 85 | 
            +
                    "output": "{\n    \"Response\": {\n        \"RequestId\": \"8979fc1e-9564-4fc9-bf7d-2958ce679b72\"\n    }\n}",
         | 
| 86 | 
            +
                    "title": "删除自定义黑名单邮箱地址"
         | 
| 87 | 
            +
                  }
         | 
| 88 | 
            +
                ],
         | 
| 73 89 | 
             
                "DeleteEmailAddress": [
         | 
| 74 90 | 
             
                  {
         | 
| 75 91 | 
             
                    "document": "",
         | 
| @@ -148,6 +164,14 @@ | |
| 148 164 | 
             
                    "title": "获取黑名单邮箱地址"
         | 
| 149 165 | 
             
                  }
         | 
| 150 166 | 
             
                ],
         | 
| 167 | 
            +
                "ListCustomBlacklist": [
         | 
| 168 | 
            +
                  {
         | 
| 169 | 
            +
                    "document": "",
         | 
| 170 | 
            +
                    "input": "POST / HTTP/1.1\nHost: ses.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ListCustomBlacklist\n<公共请求参数>\n\n{\n    \"Offset\": 1,\n    \"Limit\": 1,\n    \"Status\": 1,\n    \"Email\": \"abc@mail.com\"\n}",
         | 
| 171 | 
            +
                    "output": "{\n    \"Response\": {\n        \"Data\": [\n            {\n                \"CreateTime\": \"2024-06-26 10:04:43\",\n                \"Email\": \"abc@foxmail.com\",\n                \"ExpireDate\": \"2024-06-27\",\n                \"Id\": 304323,\n                \"Status\": 1\n            },\n            {\n                \"CreateTime\": \"2024-06-25 14:27:38\",\n                \"Email\": \"abc@abc.com\",\n                \"ExpireDate\": \"2024-06-26\",\n                \"Id\": 304320,\n                \"Status\": 0\n            }\n        ],\n        \"RequestId\": \"3df4264a-a5c9-4a4d-abfe-770c730ca683\",\n        \"TotalCount\": 293023\n    }\n}",
         | 
| 172 | 
            +
                    "title": "获取自定义黑名单列表"
         | 
| 173 | 
            +
                  }
         | 
| 174 | 
            +
                ],
         | 
| 151 175 | 
             
                "ListEmailAddress": [
         | 
| 152 176 | 
             
                  {
         | 
| 153 177 | 
             
                    "document": "",
         | 
| @@ -216,6 +240,14 @@ | |
| 216 240 | 
             
                    "title": "发送纯文本邮件"
         | 
| 217 241 | 
             
                  }
         | 
| 218 242 | 
             
                ],
         | 
| 243 | 
            +
                "UpdateCustomBlackList": [
         | 
| 244 | 
            +
                  {
         | 
| 245 | 
            +
                    "document": "",
         | 
| 246 | 
            +
                    "input": "POST / HTTP/1.1\nHost: ses.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateCustomBlackList\n<公共请求参数>\n\n{\n    \"Id\": 1,\n    \"ExpireDate\": \"2024-06-19\",\n    \"Email\": \"b@gmail.com\"\n}",
         | 
| 247 | 
            +
                    "output": "{\n    \"Response\": {\n        \"RequestId\": \"8979fc1e-9564-4fc9-bf7d-2958ce679b72\"\n    }\n}",
         | 
| 248 | 
            +
                    "title": "更新自定义黑名单"
         | 
| 249 | 
            +
                  }
         | 
| 250 | 
            +
                ],
         | 
| 219 251 | 
             
                "UpdateEmailIdentity": [
         | 
| 220 252 | 
             
                  {
         | 
| 221 253 | 
             
                    "document": "",
         | 
| @@ -50,7 +50,7 @@ | |
| 50 50 | 
             
                  "status": "online"
         | 
| 51 51 | 
             
                },
         | 
| 52 52 | 
             
                "CreateCertificateBindResourceSyncTask": {
         | 
| 53 | 
            -
                  "document": "创建证书绑定关联云资源异步任务, 该接口用于查询证书关联云资源。 若证书ID已存在查询云资源任务,则结果返回该任务ID。关联云资源类型,支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne | 
| 53 | 
            +
                  "document": "创建证书绑定关联云资源异步任务, 该接口用于查询证书关联云资源。 若证书ID已存在查询云资源任务,则结果返回该任务ID。关联云资源类型,支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos。查询关联云资源结果使用DescribeCertificateBindResourceTaskResult接口",
         | 
| 54 54 | 
             
                  "input": "CreateCertificateBindResourceSyncTaskRequest",
         | 
| 55 55 | 
             
                  "name": "创建证书关联云资源异步任务",
         | 
| 56 56 | 
             
                  "output": "CreateCertificateBindResourceSyncTaskResponse",
         | 
| @@ -120,7 +120,7 @@ | |
| 120 120 | 
             
                  "status": "online"
         | 
| 121 121 | 
             
                },
         | 
| 122 122 | 
             
                "DescribeCertificateBindResourceTaskResult": {
         | 
| 123 | 
            -
                  "document": "查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne | 
| 123 | 
            +
                  "document": "查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos",
         | 
| 124 124 | 
             
                  "input": "DescribeCertificateBindResourceTaskResultRequest",
         | 
| 125 125 | 
             
                  "name": "查询证书关联云资源任务结果 - 仅返回总数",
         | 
| 126 126 | 
             
                  "output": "DescribeCertificateBindResourceTaskResultResponse",
         | 
| @@ -734,6 +734,16 @@ | |
| 734 734 | 
             
                      "output_required": true,
         | 
| 735 735 | 
             
                      "type": "int",
         | 
| 736 736 | 
             
                      "value_allowed_null": false
         | 
| 737 | 
            +
                    },
         | 
| 738 | 
            +
                    {
         | 
| 739 | 
            +
                      "disabled": false,
         | 
| 740 | 
            +
                      "document": "是否查询异常\n注意:此字段可能返回 null,表示取不到有效值。",
         | 
| 741 | 
            +
                      "example": "无",
         | 
| 742 | 
            +
                      "member": "string",
         | 
| 743 | 
            +
                      "name": "Error",
         | 
| 744 | 
            +
                      "output_required": true,
         | 
| 745 | 
            +
                      "type": "string",
         | 
| 746 | 
            +
                      "value_allowed_null": true
         | 
| 737 747 | 
             
                    }
         | 
| 738 748 | 
             
                  ],
         | 
| 739 749 | 
             
                  "usage": "out"
         | 
| @@ -6240,7 +6250,7 @@ | |
| 6240 6250 | 
             
                      "type": "int"
         | 
| 6241 6251 | 
             
                    },
         | 
| 6242 6252 | 
             
                    {
         | 
| 6243 | 
            -
                      "disabled":  | 
| 6253 | 
            +
                      "disabled": true,
         | 
| 6244 6254 | 
             
                      "document": "分页每页数量",
         | 
| 6245 6255 | 
             
                      "example": "无",
         | 
| 6246 6256 | 
             
                      "member": "int64",
         | 
| @@ -6249,7 +6259,7 @@ | |
| 6249 6259 | 
             
                      "type": "int"
         | 
| 6250 6260 | 
             
                    },
         | 
| 6251 6261 | 
             
                    {
         | 
| 6252 | 
            -
                      "disabled":  | 
| 6262 | 
            +
                      "disabled": true,
         | 
| 6253 6263 | 
             
                      "document": "分页偏移量",
         | 
| 6254 6264 | 
             
                      "example": "无",
         | 
| 6255 6265 | 
             
                      "member": "int64",
         | 
| @@ -6269,7 +6279,7 @@ | |
| 6269 6279 | 
             
                      "example": "无",
         | 
| 6270 6280 | 
             
                      "member": "string",
         | 
| 6271 6281 | 
             
                      "name": "Status",
         | 
| 6272 | 
            -
                      " | 
| 6282 | 
            +
                      "output_required": true,
         | 
| 6273 6283 | 
             
                      "type": "string",
         | 
| 6274 6284 | 
             
                      "value_allowed_null": false
         | 
| 6275 6285 | 
             
                    },
         | 
| @@ -6279,7 +6289,7 @@ | |
| 6279 6289 | 
             
                      "example": "无",
         | 
| 6280 6290 | 
             
                      "member": "string",
         | 
| 6281 6291 | 
             
                      "name": "ManagerFirstName",
         | 
| 6282 | 
            -
                      " | 
| 6292 | 
            +
                      "output_required": true,
         | 
| 6283 6293 | 
             
                      "type": "string",
         | 
| 6284 6294 | 
             
                      "value_allowed_null": false
         | 
| 6285 6295 | 
             
                    },
         | 
| @@ -6289,7 +6299,7 @@ | |
| 6289 6299 | 
             
                      "example": "无",
         | 
| 6290 6300 | 
             
                      "member": "string",
         | 
| 6291 6301 | 
             
                      "name": "ManagerMail",
         | 
| 6292 | 
            -
                      " | 
| 6302 | 
            +
                      "output_required": true,
         | 
| 6293 6303 | 
             
                      "type": "string",
         | 
| 6294 6304 | 
             
                      "value_allowed_null": false
         | 
| 6295 6305 | 
             
                    },
         | 
| @@ -6299,7 +6309,7 @@ | |
| 6299 6309 | 
             
                      "example": "无",
         | 
| 6300 6310 | 
             
                      "member": "string",
         | 
| 6301 6311 | 
             
                      "name": "ContactFirstName",
         | 
| 6302 | 
            -
                      " | 
| 6312 | 
            +
                      "output_required": true,
         | 
| 6303 6313 | 
             
                      "type": "string",
         | 
| 6304 6314 | 
             
                      "value_allowed_null": false
         | 
| 6305 6315 | 
             
                    },
         | 
| @@ -6309,7 +6319,7 @@ | |
| 6309 6319 | 
             
                      "example": "无",
         | 
| 6310 6320 | 
             
                      "member": "string",
         | 
| 6311 6321 | 
             
                      "name": "ManagerLastName",
         | 
| 6312 | 
            -
                      " | 
| 6322 | 
            +
                      "output_required": true,
         | 
| 6313 6323 | 
             
                      "type": "string",
         | 
| 6314 6324 | 
             
                      "value_allowed_null": false
         | 
| 6315 6325 | 
             
                    },
         | 
| @@ -6319,7 +6329,7 @@ | |
| 6319 6329 | 
             
                      "example": "无",
         | 
| 6320 6330 | 
             
                      "member": "string",
         | 
| 6321 6331 | 
             
                      "name": "ContactPosition",
         | 
| 6322 | 
            -
                      " | 
| 6332 | 
            +
                      "output_required": true,
         | 
| 6323 6333 | 
             
                      "type": "string",
         | 
| 6324 6334 | 
             
                      "value_allowed_null": false
         | 
| 6325 6335 | 
             
                    },
         | 
| @@ -6329,7 +6339,7 @@ | |
| 6329 6339 | 
             
                      "example": "无",
         | 
| 6330 6340 | 
             
                      "member": "string",
         | 
| 6331 6341 | 
             
                      "name": "ManagerPosition",
         | 
| 6332 | 
            -
                      " | 
| 6342 | 
            +
                      "output_required": true,
         | 
| 6333 6343 | 
             
                      "type": "string",
         | 
| 6334 6344 | 
             
                      "value_allowed_null": false
         | 
| 6335 6345 | 
             
                    },
         | 
| @@ -6339,7 +6349,7 @@ | |
| 6339 6349 | 
             
                      "example": "无",
         | 
| 6340 6350 | 
             
                      "member": "string",
         | 
| 6341 6351 | 
             
                      "name": "VerifyTime",
         | 
| 6342 | 
            -
                      " | 
| 6352 | 
            +
                      "output_required": true,
         | 
| 6343 6353 | 
             
                      "type": "string",
         | 
| 6344 6354 | 
             
                      "value_allowed_null": true
         | 
| 6345 6355 | 
             
                    },
         | 
| @@ -6349,7 +6359,7 @@ | |
| 6349 6359 | 
             
                      "example": "无",
         | 
| 6350 6360 | 
             
                      "member": "string",
         | 
| 6351 6361 | 
             
                      "name": "CreateTime",
         | 
| 6352 | 
            -
                      " | 
| 6362 | 
            +
                      "output_required": true,
         | 
| 6353 6363 | 
             
                      "type": "string",
         | 
| 6354 6364 | 
             
                      "value_allowed_null": false
         | 
| 6355 6365 | 
             
                    },
         | 
| @@ -6359,7 +6369,7 @@ | |
| 6359 6369 | 
             
                      "example": "无",
         | 
| 6360 6370 | 
             
                      "member": "string",
         | 
| 6361 6371 | 
             
                      "name": "ExpireTime",
         | 
| 6362 | 
            -
                      " | 
| 6372 | 
            +
                      "output_required": true,
         | 
| 6363 6373 | 
             
                      "type": "string",
         | 
| 6364 6374 | 
             
                      "value_allowed_null": true
         | 
| 6365 6375 | 
             
                    },
         | 
| @@ -6369,7 +6379,7 @@ | |
| 6369 6379 | 
             
                      "example": "无",
         | 
| 6370 6380 | 
             
                      "member": "string",
         | 
| 6371 6381 | 
             
                      "name": "ContactLastName",
         | 
| 6372 | 
            -
                      " | 
| 6382 | 
            +
                      "output_required": true,
         | 
| 6373 6383 | 
             
                      "type": "string",
         | 
| 6374 6384 | 
             
                      "value_allowed_null": false
         | 
| 6375 6385 | 
             
                    },
         | 
| @@ -6379,7 +6389,7 @@ | |
| 6379 6389 | 
             
                      "example": "无",
         | 
| 6380 6390 | 
             
                      "member": "string",
         | 
| 6381 6391 | 
             
                      "name": "ManagerPhone",
         | 
| 6382 | 
            -
                      " | 
| 6392 | 
            +
                      "output_required": true,
         | 
| 6383 6393 | 
             
                      "type": "string",
         | 
| 6384 6394 | 
             
                      "value_allowed_null": false
         | 
| 6385 6395 | 
             
                    },
         | 
| @@ -6389,7 +6399,7 @@ | |
| 6389 6399 | 
             
                      "example": "无",
         | 
| 6390 6400 | 
             
                      "member": "string",
         | 
| 6391 6401 | 
             
                      "name": "ContactPhone",
         | 
| 6392 | 
            -
                      " | 
| 6402 | 
            +
                      "output_required": true,
         | 
| 6393 6403 | 
             
                      "type": "string",
         | 
| 6394 6404 | 
             
                      "value_allowed_null": false
         | 
| 6395 6405 | 
             
                    },
         | 
| @@ -6399,7 +6409,7 @@ | |
| 6399 6409 | 
             
                      "example": "无",
         | 
| 6400 6410 | 
             
                      "member": "string",
         | 
| 6401 6411 | 
             
                      "name": "ContactMail",
         | 
| 6402 | 
            -
                      " | 
| 6412 | 
            +
                      "output_required": true,
         | 
| 6403 6413 | 
             
                      "type": "string",
         | 
| 6404 6414 | 
             
                      "value_allowed_null": false
         | 
| 6405 6415 | 
             
                    },
         | 
| @@ -6409,7 +6419,7 @@ | |
| 6409 6419 | 
             
                      "example": "无",
         | 
| 6410 6420 | 
             
                      "member": "string",
         | 
| 6411 6421 | 
             
                      "name": "ManagerDepartment",
         | 
| 6412 | 
            -
                      " | 
| 6422 | 
            +
                      "output_required": true,
         | 
| 6413 6423 | 
             
                      "type": "string",
         | 
| 6414 6424 | 
             
                      "value_allowed_null": false
         | 
| 6415 6425 | 
             
                    },
         | 
| @@ -6419,7 +6429,7 @@ | |
| 6419 6429 | 
             
                      "example": "无",
         | 
| 6420 6430 | 
             
                      "member": "CompanyInfo",
         | 
| 6421 6431 | 
             
                      "name": "CompanyInfo",
         | 
| 6422 | 
            -
                      " | 
| 6432 | 
            +
                      "output_required": true,
         | 
| 6423 6433 | 
             
                      "type": "object",
         | 
| 6424 6434 | 
             
                      "value_allowed_null": false
         | 
| 6425 6435 | 
             
                    },
         | 
| @@ -6429,7 +6439,7 @@ | |
| 6429 6439 | 
             
                      "example": "无",
         | 
| 6430 6440 | 
             
                      "member": "int64",
         | 
| 6431 6441 | 
             
                      "name": "CompanyId",
         | 
| 6432 | 
            -
                      " | 
| 6442 | 
            +
                      "output_required": true,
         | 
| 6433 6443 | 
             
                      "type": "int",
         | 
| 6434 6444 | 
             
                      "value_allowed_null": false
         | 
| 6435 6445 | 
             
                    },
         | 
| @@ -6439,7 +6449,7 @@ | |
| 6439 6449 | 
             
                      "example": "无",
         | 
| 6440 6450 | 
             
                      "member": "int64",
         | 
| 6441 6451 | 
             
                      "name": "ManagerId",
         | 
| 6442 | 
            -
                      " | 
| 6452 | 
            +
                      "output_required": true,
         | 
| 6443 6453 | 
             
                      "type": "int",
         | 
| 6444 6454 | 
             
                      "value_allowed_null": false
         | 
| 6445 6455 | 
             
                    },
         | 
| @@ -6449,7 +6459,7 @@ | |
| 6449 6459 | 
             
                      "example": "无",
         | 
| 6450 6460 | 
             
                      "member": "ManagerStatusInfo",
         | 
| 6451 6461 | 
             
                      "name": "StatusInfo",
         | 
| 6452 | 
            -
                      " | 
| 6462 | 
            +
                      "output_required": true,
         | 
| 6453 6463 | 
             
                      "type": "list",
         | 
| 6454 6464 | 
             
                      "value_allowed_null": false
         | 
| 6455 6465 | 
             
                    },
         | 
| @@ -7235,7 +7245,48 @@ | |
| 7235 7245 | 
             
                },
         | 
| 7236 7246 | 
             
                "ManagerStatusInfo": {
         | 
| 7237 7247 | 
             
                  "document": "管理人的四种审核状态",
         | 
| 7238 | 
            -
                  "members": [ | 
| 7248 | 
            +
                  "members": [
         | 
| 7249 | 
            +
                    {
         | 
| 7250 | 
            +
                      "disabled": false,
         | 
| 7251 | 
            +
                      "document": "审核类型,枚举值:ov,ev,cs,ev_cs\n注意:此字段可能返回 null,表示取不到有效值。",
         | 
| 7252 | 
            +
                      "example": "无",
         | 
| 7253 | 
            +
                      "member": "string",
         | 
| 7254 | 
            +
                      "name": "Type",
         | 
| 7255 | 
            +
                      "output_required": true,
         | 
| 7256 | 
            +
                      "type": "string",
         | 
| 7257 | 
            +
                      "value_allowed_null": true
         | 
| 7258 | 
            +
                    },
         | 
| 7259 | 
            +
                    {
         | 
| 7260 | 
            +
                      "disabled": false,
         | 
| 7261 | 
            +
                      "document": "审核状态,枚举值:pending,completed,invalid,submitted,expiring,expired\n注意:此字段可能返回 null,表示取不到有效值。",
         | 
| 7262 | 
            +
                      "example": "无",
         | 
| 7263 | 
            +
                      "member": "string",
         | 
| 7264 | 
            +
                      "name": "Status",
         | 
| 7265 | 
            +
                      "output_required": true,
         | 
| 7266 | 
            +
                      "type": "string",
         | 
| 7267 | 
            +
                      "value_allowed_null": true
         | 
| 7268 | 
            +
                    },
         | 
| 7269 | 
            +
                    {
         | 
| 7270 | 
            +
                      "disabled": false,
         | 
| 7271 | 
            +
                      "document": "创建时间\n注意:此字段可能返回 null,表示取不到有效值。",
         | 
| 7272 | 
            +
                      "example": "无",
         | 
| 7273 | 
            +
                      "member": "string",
         | 
| 7274 | 
            +
                      "name": "CreateTime",
         | 
| 7275 | 
            +
                      "output_required": true,
         | 
| 7276 | 
            +
                      "type": "string",
         | 
| 7277 | 
            +
                      "value_allowed_null": true
         | 
| 7278 | 
            +
                    },
         | 
| 7279 | 
            +
                    {
         | 
| 7280 | 
            +
                      "disabled": false,
         | 
| 7281 | 
            +
                      "document": "过期时间\n注意:此字段可能返回 null,表示取不到有效值。",
         | 
| 7282 | 
            +
                      "example": "无",
         | 
| 7283 | 
            +
                      "member": "string",
         | 
| 7284 | 
            +
                      "name": "ExpireTime",
         | 
| 7285 | 
            +
                      "output_required": true,
         | 
| 7286 | 
            +
                      "type": "string",
         | 
| 7287 | 
            +
                      "value_allowed_null": true
         | 
| 7288 | 
            +
                    }
         | 
| 7289 | 
            +
                  ],
         | 
| 7239 7290 | 
             
                  "usage": "out"
         | 
| 7240 7291 | 
             
                },
         | 
| 7241 7292 | 
             
                "ModifyCertificateAliasRequest": {
         | 
| @@ -9472,7 +9523,7 @@ | |
| 9472 9523 | 
             
                    },
         | 
| 9473 9524 | 
             
                    {
         | 
| 9474 9525 | 
             
                      "disabled": false,
         | 
| 9475 | 
            -
                      "document": "需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse",
         | 
| 9526 | 
            +
                      "document": "需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse、cos",
         | 
| 9476 9527 | 
             
                      "example": "无",
         | 
| 9477 9528 | 
             
                      "member": "string",
         | 
| 9478 9529 | 
             
                      "name": "ResourceTypes",
         | 
| @@ -152,7 +152,7 @@ | |
| 152 152 | 
             
                  {
         | 
| 153 153 | 
             
                    "document": "仅返回总数",
         | 
| 154 154 | 
             
                    "input": "POST / HTTP/1.1\nHost: ssl.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCertificateBindResourceTaskResult\n<公共请求参数>\n\n{\n    \"TaskIds\": [\n        \"abc\"\n    ]\n}",
         | 
| 155 | 
            -
                    "output": "{\n    \"Response\": {\n        \"SyncTaskBindResourceResult\": [\n            {\n                \"TaskId\": \"abc\",\n                \"BindResourceResult\": [\n                    {\n                        \"ResourceType\": \"abc\",\n                        \"BindResourceRegionResult\": [\n                            {\n                                \"Region\": \"abc\",\n                                \"TotalCount\": 1\n                            }\n                        ]\n                    }\n                ],\n                \"Status\": 1,\n                \"Error\": {\n                    \"Code\": \"abc\",\n                    \"Message\": \"abc\"\n                },\n                \"CacheTime\": \"abc\"\n            }\n        ],\n        \"RequestId\": \"abc\"\n    }\n}",
         | 
| 155 | 
            +
                    "output": "{\n    \"Response\": {\n        \"SyncTaskBindResourceResult\": [\n            {\n                \"TaskId\": \"abc\",\n                \"BindResourceResult\": [\n                    {\n                        \"ResourceType\": \"abc\",\n                        \"BindResourceRegionResult\": [\n                            {\n                                \"Region\": \"abc\",\n                                \"TotalCount\": 1,\n                                \"Error\": \"abc\"\n                            }\n                        ]\n                    }\n                ],\n                \"Status\": 1,\n                \"Error\": {\n                    \"Code\": \"abc\",\n                    \"Message\": \"abc\"\n                },\n                \"CacheTime\": \"abc\"\n            }\n        ],\n        \"RequestId\": \"abc\"\n    }\n}",
         | 
| 156 156 | 
             
                    "title": "查询证书关联云资源结果 "
         | 
| 157 157 | 
             
                  }
         | 
| 158 158 | 
             
                ],
         | 
| @@ -342,7 +342,7 @@ | |
| 342 342 | 
             
                  {
         | 
| 343 343 | 
             
                    "document": "",
         | 
| 344 344 | 
             
                    "input": "POST / HTTP/1.1\nHost: ssl.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeManagerDetail\n<公共请求参数>\n\n{\n    \"ManagerId\": 23\n}",
         | 
| 345 | 
            -
                    "output": "{\n    \"Response\": {\n        \"Status\": \" | 
| 345 | 
            +
                    "output": "{\n    \"Response\": {\n        \"Status\": \"abc\",\n        \"ManagerFirstName\": \"abc\",\n        \"ManagerMail\": \"abc\",\n        \"ContactFirstName\": \"abc\",\n        \"ManagerLastName\": \"abc\",\n        \"ContactPosition\": \"abc\",\n        \"ManagerPosition\": \"abc\",\n        \"VerifyTime\": \"abc\",\n        \"CreateTime\": \"abc\",\n        \"ExpireTime\": \"abc\",\n        \"ContactLastName\": \"abc\",\n        \"ManagerPhone\": \"abc\",\n        \"ContactPhone\": \"abc\",\n        \"ContactMail\": \"abc\",\n        \"ManagerDepartment\": \"abc\",\n        \"CompanyInfo\": {\n            \"CompanyName\": \"abc\",\n            \"CompanyId\": 0,\n            \"CompanyCountry\": \"abc\",\n            \"CompanyProvince\": \"abc\",\n            \"CompanyCity\": \"abc\",\n            \"CompanyAddress\": \"abc\",\n            \"CompanyPhone\": \"abc\",\n            \"IdType\": \"abc\",\n            \"IdNumber\": \"abc\"\n        },\n        \"CompanyId\": 0,\n        \"ManagerId\": 0,\n        \"StatusInfo\": [\n            {\n                \"Type\": \"abc\",\n                \"Status\": \"abc\",\n                \"CreateTime\": \"abc\",\n                \"ExpireTime\": \"abc\"\n            }\n        ],\n        \"RequestId\": \"abc\"\n    }\n}",
         | 
| 346 346 | 
             
                    "title": "查询管理人详情"
         | 
| 347 347 | 
             
                  }
         | 
| 348 348 | 
             
                ],
         | 
| @@ -350,7 +350,7 @@ | |
| 350 350 | 
             
                  {
         | 
| 351 351 | 
             
                    "document": "",
         | 
| 352 352 | 
             
                    "input": "POST / HTTP/1.1\nHost: ssl.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeManagers\n<公共请求参数>\n\n{\n    \"Offset\": 0,\n    \"ManagerName\": \"xx\",\n    \"Limit\": 0,\n    \"CompanyId\": 0\n}",
         | 
| 353 | 
            -
                    "output": "{\n    \"Response\": {\n        \"TotalCount\": 1,\n        \"Managers\": [\n            {\n                \"Status\": \"xx\",\n                \"ManagerFirstName\": \"xx\",\n                \"ManagerPhone\": \"xx\",\n                \"ManagerLastName\": \"xx\",\n                \"SubmitAuditTime\": \"xx\",\n                \"CertCount\": 2,\n                \"ManagerPosition\": \"xx\",\n                \"VerifyTime\": \"xx\",\n                \"ManagerId\": 22,\n                \"ExpireTime\": \"xx\",\n                \"ManagerMail\": \"xx\",\n                \"StatusInfo\": [\n                    {}\n                ],\n                \"DomainCount\": 2,\n                \"ManagerDepartment\": \"xx\",\n                \"CreateTime\": \"xx\"\n            }\n        ],\n        \"RequestId\": \"xx\"\n    }\n}",
         | 
| 353 | 
            +
                    "output": "{\n    \"Response\": {\n        \"TotalCount\": 1,\n        \"Managers\": [\n            {\n                \"Status\": \"xx\",\n                \"ManagerFirstName\": \"xx\",\n                \"ManagerPhone\": \"xx\",\n                \"ManagerLastName\": \"xx\",\n                \"SubmitAuditTime\": \"xx\",\n                \"CertCount\": 2,\n                \"ManagerPosition\": \"xx\",\n                \"VerifyTime\": \"xx\",\n                \"ManagerId\": 22,\n                \"ExpireTime\": \"xx\",\n                \"ManagerMail\": \"xx\",\n                \"StatusInfo\": [\n                    {\n                        \"Status\": \"xx\",\n                        \"ExpireTime\": \"xx\",\n                        \"Type\": \"xx\",\n                        \"CreateTime\": \"xx\"\n                    }\n                ],\n                \"DomainCount\": 2,\n                \"ManagerDepartment\": \"xx\",\n                \"CreateTime\": \"xx\"\n            }\n        ],\n        \"RequestId\": \"xx\"\n    }\n}",
         | 
| 354 354 | 
             
                    "title": "查询管理人列表"
         | 
| 355 355 | 
             
                  }
         | 
| 356 356 | 
             
                ],
         | 
| @@ -4735,7 +4735,7 @@ | |
| 4735 4735 | 
             
                    },
         | 
| 4736 4736 | 
             
                    {
         | 
| 4737 4737 | 
             
                      "disabled": false,
         | 
| 4738 | 
            -
                      "document": " | 
| 4738 | 
            +
                      "document": "过滤条件\n- 按照【标签】过滤\n   Name: Tags\n   Value:   tagKey:tagVal\n",
         | 
| 4739 4739 | 
             
                      "example": "无",
         | 
| 4740 4740 | 
             
                      "member": "Filter",
         | 
| 4741 4741 | 
             
                      "name": "Filters",
         | 
| @@ -4763,6 +4763,7 @@ | |
| 4763 4763 | 
             
                      "example": "无",
         | 
| 4764 4764 | 
             
                      "member": "TcrNamespaceInfo",
         | 
| 4765 4765 | 
             
                      "name": "NamespaceList",
         | 
| 4766 | 
            +
                      "output_required": true,
         | 
| 4766 4767 | 
             
                      "type": "list",
         | 
| 4767 4768 | 
             
                      "value_allowed_null": false
         | 
| 4768 4769 | 
             
                    },
         | 
| @@ -4772,6 +4773,7 @@ | |
| 4772 4773 | 
             
                      "example": "2",
         | 
| 4773 4774 | 
             
                      "member": "int64",
         | 
| 4774 4775 | 
             
                      "name": "TotalCount",
         | 
| 4776 | 
            +
                      "output_required": true,
         | 
| 4775 4777 | 
             
                      "type": "int",
         | 
| 4776 4778 | 
             
                      "value_allowed_null": false
         | 
| 4777 4779 | 
             
                    },
         | 
| @@ -5113,6 +5115,7 @@ | |
| 5113 5115 | 
             
                      "example": "[       {         \"BriefDescription\": \"\",         \"CreationTime\": \"2022-08-02 03:52:06.915755 +0000 UTC\",         \"Description\": \"\",         \"Name\": \"library/busybox\",         \"Namespace\": \"library\",         \"Public\": false,         \"UpdateTime\": \"2022-08-02 03:52:06.915755 +0000 UTC\"       }     ],",
         | 
| 5114 5116 | 
             
                      "member": "TcrRepositoryInfo",
         | 
| 5115 5117 | 
             
                      "name": "RepositoryList",
         | 
| 5118 | 
            +
                      "output_required": true,
         | 
| 5116 5119 | 
             
                      "type": "list",
         | 
| 5117 5120 | 
             
                      "value_allowed_null": false
         | 
| 5118 5121 | 
             
                    },
         | 
| @@ -5122,6 +5125,7 @@ | |
| 5122 5125 | 
             
                      "example": "1",
         | 
| 5123 5126 | 
             
                      "member": "int64",
         | 
| 5124 5127 | 
             
                      "name": "TotalCount",
         | 
| 5128 | 
            +
                      "output_required": true,
         | 
| 5125 5129 | 
             
                      "type": "int",
         | 
| 5126 5130 | 
             
                      "value_allowed_null": false
         | 
| 5127 5131 | 
             
                    },
         | 
| @@ -567,7 +567,7 @@ | |
| 567 567 | 
             
                "DescribeNamespaces": [
         | 
| 568 568 | 
             
                  {
         | 
| 569 569 | 
             
                    "document": "查询实例内所有的命名空间信息",
         | 
| 570 | 
            -
                    "input": "POST / HTTP/1.1\nHost: tcr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeNamespaces\n<公共请求参数>\n\n{\n    \"Limit\":  | 
| 570 | 
            +
                    "input": "POST / HTTP/1.1\nHost: tcr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeNamespaces\n<公共请求参数>\n\n{\n    \"Limit\": 20,\n    \"RegistryId\": \"tcr-f7g1ir99\",\n    \"Offset\": 0\n}",
         | 
| 571 571 | 
             
                    "output": "{\n    \"Response\": {\n        \"NamespaceList\": [\n            {\n                \"Public\": true,\n                \"Name\": \"ns1\",\n                \"CreationTime\": \"2020-09-22T00:00:00+00:00\",\n                \"NamespaceId\": 1,\n                \"TagSpecification\": {\n                    \"ResourceType\": \"namespace\",\n                    \"Tags\": [\n                        {\n                            \"Value\": \"tag-value\",\n                            \"Key\": \"tag-key\"\n                        }\n                    ]\n                },\n                \"Metadata\": [\n                    {\n                        \"Key\": \"prevent_vul\",\n                        \"Value\": \"false\"\n                    }\n                ],\n                \"CVEWhitelistItems\": [\n                    {\n                        \"CVEID\": \"1\"\n                    }\n                ],\n                \"AutoScan\": true,\n                \"PreventVUL\": true,\n                \"Severity\": \"low\"\n            }\n        ],\n        \"TotalCount\": 2,\n        \"RequestId\": \"866bda78-ed75-4b10-8876-e82de555f69b\"\n    }\n}",
         | 
| 572 572 | 
             
                    "title": "查询命名空间信息"
         | 
| 573 573 | 
             
                  }
         | 
| @@ -3,7 +3,7 @@ | |
| 3 3 | 
             
                "AcknowledgeMessage": {
         | 
| 4 4 | 
             
                  "document": "根据提供的 MessageID 确认指定 topic 中的消息",
         | 
| 5 5 | 
             
                  "input": "AcknowledgeMessageRequest",
         | 
| 6 | 
            -
                  "name": " | 
| 6 | 
            +
                  "name": "确认pulsar消息",
         | 
| 7 7 | 
             
                  "output": "AcknowledgeMessageResponse",
         | 
| 8 8 | 
             
                  "status": "online"
         | 
| 9 9 | 
             
                },
         | 
| @@ -1241,7 +1241,7 @@ | |
| 1241 1241 | 
             
                      "example": "sssss",
         | 
| 1242 1242 | 
             
                      "member": "string",
         | 
| 1243 1243 | 
             
                      "name": "ErrorMsg",
         | 
| 1244 | 
            -
                      " | 
| 1244 | 
            +
                      "output_required": true,
         | 
| 1245 1245 | 
             
                      "type": "string",
         | 
| 1246 1246 | 
             
                      "value_allowed_null": true
         | 
| 1247 1247 | 
             
                    },
         |