tccli 3.0.1139.1__py2.py3-none-any.whl → 3.0.1140.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,6 +7,13 @@
7
7
  "output": "BatchSendEmailResponse",
8
8
  "status": "online"
9
9
  },
10
+ "CreateCustomBlacklist": {
11
+ "document": "添加自定义黑名单",
12
+ "input": "CreateCustomBlacklistRequest",
13
+ "name": "批量增加自定义黑名单",
14
+ "output": "CreateCustomBlacklistResponse",
15
+ "status": "online"
16
+ },
10
17
  "CreateEmailAddress": {
11
18
  "document": "在验证了发信域名之后,您需要一个发信地址来发送邮件。例如发信域名是mail.qcloud.com,那么发信地址可以为 service@mail.qcloud.com。如果您想要收件人在收件箱列表中显示您的别名,例如\"腾讯云邮件通知\"。那么发信地址为: 别名 空格 尖括号 邮箱地址。请注意中间需要有空格",
12
19
  "input": "CreateEmailAddressRequest",
@@ -56,6 +63,13 @@
56
63
  "output": "DeleteBlackListResponse",
57
64
  "status": "online"
58
65
  },
66
+ "DeleteCustomBlackList": {
67
+ "document": "删除自定义黑名单邮箱地址",
68
+ "input": "DeleteCustomBlackListRequest",
69
+ "name": "删除自定义黑名单",
70
+ "output": "DeleteCustomBlackListResponse",
71
+ "status": "online"
72
+ },
59
73
  "DeleteEmailAddress": {
60
74
  "document": "删除发信人地址",
61
75
  "input": "DeleteEmailAddressRequest",
@@ -119,6 +133,13 @@
119
133
  "output": "ListBlackEmailAddressResponse",
120
134
  "status": "online"
121
135
  },
136
+ "ListCustomBlacklist": {
137
+ "document": "获取自定义黑名单列表",
138
+ "input": "ListCustomBlacklistRequest",
139
+ "name": "获取自定义黑名单列表",
140
+ "output": "ListCustomBlacklistResponse",
141
+ "status": "online"
142
+ },
122
143
  "ListEmailAddress": {
123
144
  "document": "获取发信地址列表",
124
145
  "input": "ListEmailAddressRequest",
@@ -168,6 +189,13 @@
168
189
  "output": "SendEmailResponse",
169
190
  "status": "online"
170
191
  },
192
+ "UpdateCustomBlackList": {
193
+ "document": "更新自定义黑名单",
194
+ "input": "UpdateCustomBlackListRequest",
195
+ "name": "更新自定义黑名单",
196
+ "output": "UpdateCustomBlackListResponse",
197
+ "status": "online"
198
+ },
171
199
  "UpdateEmailIdentity": {
172
200
  "document": "您已经成功配置好了您的DNS,接下来请求腾讯云验证您的DNS配置是否正确",
173
201
  "input": "UpdateEmailIdentityRequest",
@@ -357,6 +385,62 @@
357
385
  ],
358
386
  "type": "object"
359
387
  },
388
+ "BlackAddressDetail": {
389
+ "document": "黑名单详情",
390
+ "members": [
391
+ {
392
+ "disabled": false,
393
+ "document": "黑名单地址id\n注意:此字段可能返回 null,表示取不到有效值。",
394
+ "example": "1",
395
+ "member": "uint64",
396
+ "name": "Id",
397
+ "output_required": false,
398
+ "type": "int",
399
+ "value_allowed_null": true
400
+ },
401
+ {
402
+ "disabled": false,
403
+ "document": "邮箱地址\n注意:此字段可能返回 null,表示取不到有效值。",
404
+ "example": "a@mail.com",
405
+ "member": "string",
406
+ "name": "Email",
407
+ "output_required": false,
408
+ "type": "string",
409
+ "value_allowed_null": true
410
+ },
411
+ {
412
+ "disabled": false,
413
+ "document": "创建时间\n注意:此字段可能返回 null,表示取不到有效值。",
414
+ "example": "无",
415
+ "member": "string",
416
+ "name": "CreateTime",
417
+ "output_required": false,
418
+ "type": "string",
419
+ "value_allowed_null": true
420
+ },
421
+ {
422
+ "disabled": false,
423
+ "document": "过期时间\n注意:此字段可能返回 null,表示取不到有效值。",
424
+ "example": "2024-06-19",
425
+ "member": "string",
426
+ "name": "ExpireDate",
427
+ "output_required": false,
428
+ "type": "string",
429
+ "value_allowed_null": true
430
+ },
431
+ {
432
+ "disabled": false,
433
+ "document": "黑名单状态,0:已过期,1:生效中\n注意:此字段可能返回 null,表示取不到有效值。",
434
+ "example": "1",
435
+ "member": "uint64",
436
+ "name": "Status",
437
+ "output_required": false,
438
+ "type": "int",
439
+ "value_allowed_null": true
440
+ }
441
+ ],
442
+ "usage": "out"
443
+ },
360
444
  "BlackEmailAddress": {
361
445
  "document": "邮箱黑名单结构,包含被拉黑的邮箱地址和被拉黑时间,以及被拉黑的理由",
362
446
  "members": [
@@ -393,6 +477,42 @@
393
477
  ],
394
478
  "usage": "out"
395
479
  },
480
+ "CreateCustomBlacklistRequest": {
481
+ "document": "CreateCustomBlacklist请求参数结构体",
482
+ "members": [
483
+ {
484
+ "disabled": false,
485
+ "document": "添加到黑名单的邮件地址",
486
+ "example": "[ \"a@gmail.com\" , \"b@gmail.com\"]",
487
+ "member": "string",
488
+ "name": "Emails",
489
+ "required": true,
490
+ "type": "list"
491
+ },
492
+ {
493
+ "disabled": false,
494
+ "document": "过期日期",
495
+ "example": "\"2024-06-19\"",
496
+ "member": "date",
497
+ "name": "ExpireDate",
498
+ "required": false,
499
+ "type": "string"
500
+ }
501
+ ],
502
+ "type": "object"
503
+ },
504
+ "CreateCustomBlacklistResponse": {
505
+ "document": "CreateCustomBlacklist返回参数结构体",
506
+ "members": [
507
+ {
508
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
509
+ "member": "string",
510
+ "name": "RequestId",
511
+ "type": "string"
512
+ }
513
+ ],
514
+ "type": "object"
515
+ },
396
516
  "CreateEmailAddressRequest": {
397
517
  "document": "CreateEmailAddress请求参数结构体",
398
518
  "members": [
@@ -766,6 +886,33 @@
766
886
  ],
767
887
  "type": "object"
768
888
  },
889
+ "DeleteCustomBlackListRequest": {
890
+ "document": "DeleteCustomBlackList请求参数结构体",
891
+ "members": [
892
+ {
893
+ "disabled": false,
894
+ "document": "需要删除的邮箱地址",
895
+ "example": "[\"a@mail.com\",\"b@mail.com\"]",
896
+ "member": "string",
897
+ "name": "Emails",
898
+ "required": true,
899
+ "type": "list"
900
+ }
901
+ ],
902
+ "type": "object"
903
+ },
904
+ "DeleteCustomBlackListResponse": {
905
+ "document": "DeleteCustomBlackList返回参数结构体",
906
+ "members": [
907
+ {
908
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
909
+ "member": "string",
910
+ "name": "RequestId",
911
+ "type": "string"
912
+ }
913
+ ],
914
+ "type": "object"
915
+ },
769
916
  "DeleteEmailAddressRequest": {
770
917
  "document": "DeleteEmailAddress请求参数结构体",
771
918
  "members": [
@@ -1316,6 +1463,80 @@
1316
1463
  ],
1317
1464
  "type": "object"
1318
1465
  },
1466
+ "ListCustomBlacklistRequest": {
1467
+ "document": "ListCustomBlacklist请求参数结构体",
1468
+ "members": [
1469
+ {
1470
+ "disabled": false,
1471
+ "document": "偏移量,整型,从0开始",
1472
+ "example": "1",
1473
+ "member": "uint64",
1474
+ "name": "Offset",
1475
+ "required": true,
1476
+ "type": "int"
1477
+ },
1478
+ {
1479
+ "disabled": false,
1480
+ "document": "限制数目,整型,不超过100",
1481
+ "example": "10",
1482
+ "member": "uint64",
1483
+ "name": "Limit",
1484
+ "required": true,
1485
+ "type": "int"
1486
+ },
1487
+ {
1488
+ "disabled": false,
1489
+ "document": "筛选黑名单的状态,0:已过期,1:生效中, 2:全部",
1490
+ "example": "2",
1491
+ "member": "uint64",
1492
+ "name": "Status",
1493
+ "required": true,
1494
+ "type": "int"
1495
+ },
1496
+ {
1497
+ "disabled": false,
1498
+ "document": "黑名单中的邮箱地址",
1499
+ "example": "a@mail.com",
1500
+ "member": "string",
1501
+ "name": "Email",
1502
+ "required": false,
1503
+ "type": "string"
1504
+ }
1505
+ ],
1506
+ "type": "object"
1507
+ },
1508
+ "ListCustomBlacklistResponse": {
1509
+ "document": "ListCustomBlacklist返回参数结构体",
1510
+ "members": [
1511
+ {
1512
+ "disabled": false,
1513
+ "document": "列表总数",
1514
+ "example": "10",
1515
+ "member": "uint64",
1516
+ "name": "TotalCount",
1517
+ "output_required": false,
1518
+ "type": "int",
1519
+ "value_allowed_null": false
1520
+ },
1521
+ {
1522
+ "disabled": false,
1523
+ "document": "黑名单列表详情",
1524
+ "example": "无",
1525
+ "member": "BlackAddressDetail",
1526
+ "name": "Data",
1527
+ "output_required": false,
1528
+ "type": "list",
1529
+ "value_allowed_null": false
1530
+ },
1531
+ {
1532
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1533
+ "member": "string",
1534
+ "name": "RequestId",
1535
+ "type": "string"
1536
+ }
1537
+ ],
1538
+ "type": "object"
1539
+ },
1319
1540
  "ListEmailAddressRequest": {
1320
1541
  "document": "ListEmailAddress请求参数结构体",
1321
1542
  "members": [],
@@ -2391,6 +2612,51 @@
2391
2612
  ],
2392
2613
  "usage": "in"
2393
2614
  },
2615
+ "UpdateCustomBlackListRequest": {
2616
+ "document": "UpdateCustomBlackList请求参数结构体",
2617
+ "members": [
2618
+ {
2619
+ "disabled": false,
2620
+ "document": "需要更改的黑名单id",
2621
+ "example": "1",
2622
+ "member": "uint64",
2623
+ "name": "Id",
2624
+ "required": true,
2625
+ "type": "int"
2626
+ },
2627
+ {
2628
+ "disabled": false,
2629
+ "document": "修改后的邮件地址",
2630
+ "example": "a@mail.com",
2631
+ "member": "string",
2632
+ "name": "Email",
2633
+ "required": true,
2634
+ "type": "string"
2635
+ },
2636
+ {
2637
+ "disabled": false,
2638
+ "document": "过期时间,为空则表示永久有效",
2639
+ "example": "2024-06-19",
2640
+ "member": "string",
2641
+ "name": "ExpireDate",
2642
+ "required": false,
2643
+ "type": "string"
2644
+ }
2645
+ ],
2646
+ "type": "object"
2647
+ },
2648
+ "UpdateCustomBlackListResponse": {
2649
+ "document": "UpdateCustomBlackList返回参数结构体",
2650
+ "members": [
2651
+ {
2652
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
2653
+ "member": "string",
2654
+ "name": "RequestId",
2655
+ "type": "string"
2656
+ }
2657
+ ],
2658
+ "type": "object"
2659
+ },
2394
2660
  "UpdateEmailIdentityRequest": {
2395
2661
  "document": "UpdateEmailIdentity请求参数结构体",
2396
2662
  "members": [
@@ -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)。查询关联云资源结果使用DescribeCertificateBindResourceTaskResult接口",
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"
@@ -9472,7 +9482,7 @@
9472
9482
  },
9473
9483
  {
9474
9484
  "disabled": false,
9475
- "document": "需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse",
9485
+ "document": "需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse、cos",
9476
9486
  "example": "无",
9477
9487
  "member": "string",
9478
9488
  "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
  ],
@@ -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\": \"20\",\n \"RegistryId\": \"tcr-f7g1ir99\",\n \"Offset\": \"0\"\n}",
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
- "required": true,
1244
+ "output_required": true,
1245
1245
  "type": "string",
1246
1246
  "value_allowed_null": true
1247
1247
  },
@@ -1730,7 +1730,7 @@
1730
1730
  "status": "online"
1731
1731
  },
1732
1732
  "ModifyDirectConnectGatewayAttribute": {
1733
- "document": "本接口(ModifyDirectConnectGatewayAttribute)用于修改专线网关属性\n",
1733
+ "document": "本接口(ModifyDirectConnectGatewayAttribute)用于修改专线网关属性",
1734
1734
  "input": "ModifyDirectConnectGatewayAttributeRequest",
1735
1735
  "name": "修改专线网关属性",
1736
1736
  "output": "ModifyDirectConnectGatewayAttributeResponse",
@@ -20825,7 +20825,7 @@
20825
20825
  {
20826
20826
  "disabled": false,
20827
20827
  "document": "专线网关唯一`ID`,形如:`dcg-9o233uri`。",
20828
- "example": "",
20828
+ "example": "dcg-k6cswwhx",
20829
20829
  "member": "string",
20830
20830
  "name": "DirectConnectGatewayId",
20831
20831
  "required": true,
@@ -20834,7 +20834,7 @@
20834
20834
  {
20835
20835
  "disabled": false,
20836
20836
  "document": "专线网关名称,可任意命名,但不得超过60个字符。",
20837
- "example": "",
20837
+ "example": "new+name",
20838
20838
  "member": "string",
20839
20839
  "name": "DirectConnectGatewayName",
20840
20840
  "required": false,
@@ -20843,7 +20843,7 @@
20843
20843
  {
20844
20844
  "disabled": false,
20845
20845
  "document": "云联网路由学习类型,可选值:`BGP`(自动学习)、`STATIC`(静态,即用户配置)。只有云联网类型专线网关且开启了BGP功能才支持修改`CcnRouteType`。",
20846
- "example": "",
20846
+ "example": "BGP",
20847
20847
  "member": "string",
20848
20848
  "name": "CcnRouteType",
20849
20849
  "required": false,
@@ -20852,7 +20852,7 @@
20852
20852
  {
20853
20853
  "disabled": false,
20854
20854
  "document": "云联网路由发布模式,可选值:`standard`(标准模式)、`exquisite`(精细模式)。只有云联网类型专线网关才支持修改`ModeType`。",
20855
- "example": "",
20855
+ "example": "\"\"",
20856
20856
  "member": "string",
20857
20857
  "name": "ModeType",
20858
20858
  "required": false,
@@ -2303,7 +2303,7 @@
2303
2303
  "ModifyDirectConnectGatewayAttribute": [
2304
2304
  {
2305
2305
  "document": "",
2306
- "input": "https://vpc.tencentcloudapi.com/?Action=ModifyDirectConnectGatewayAttribute\n&DirectConnectGatewayId=dcg-k6cswwhx\n&DirectConnectGatewayName=new+name\n&CcnRouteType=BGP\n&<公共请求参数>",
2306
+ "input": "POST / HTTP/1.1\nHost: vpc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyDirectConnectGatewayAttribute\n<公共请求参数>\n\n{\n \"DirectConnectGatewayId\": \"dcg-k6cswwhx\",\n \"CcnRouteType\": \"BGP\",\n \"DirectConnectGatewayName\": \"new+name\"\n}",
2307
2307
  "output": "{\n \"Response\": {\n \"RequestId\": \"fcb47621-838b-428e-8c33-6e210d93c451\"\n }\n}",
2308
2308
  "title": "修改专线网关属性"
2309
2309
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli
3
- Version: 3.0.1139.1
3
+ Version: 3.0.1140.1
4
4
  Summary: Universal Command Line Environment for Tencent Cloud
5
5
  Project-URL: Bug Tracker, https://github.com/TencentCloud/tencentcloud-cli/issues
6
6
  Project-URL: Homepage, https://github.com/TencentCloud/tencentcloud-cli
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 2.7
13
13
  Classifier: Programming Language :: Python :: 3
14
14
  Requires-Dist: jmespath==0.10.0
15
15
  Requires-Dist: six==1.16.0
16
- Requires-Dist: tencentcloud-sdk-python>=3.0.1139
16
+ Requires-Dist: tencentcloud-sdk-python>=3.0.1140
17
17
  Description-Content-Type: text/markdown
18
18
 
19
19
  # 命令行工具简介