tccli 3.0.1229.1__py2.py3-none-any.whl → 3.0.1231.1__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- tccli/__init__.py +1 -1
- tccli/services/aiart/aiart_client.py +110 -4
- tccli/services/aiart/v20221229/api.json +197 -10
- tccli/services/aiart/v20221229/examples.json +16 -0
- tccli/services/batch/v20170312/api.json +19 -14
- tccli/services/cam/cam_client.py +53 -0
- tccli/services/cam/v20190116/api.json +125 -52
- tccli/services/cam/v20190116/examples.json +12 -4
- tccli/services/cfg/v20210820/api.json +9 -0
- tccli/services/cfw/v20190904/api.json +1 -1
- tccli/services/cloudaudit/v20190319/api.json +39 -39
- tccli/services/cloudaudit/v20190319/examples.json +5 -5
- tccli/services/cvm/v20170312/api.json +53 -55
- tccli/services/cvm/v20170312/examples.json +3 -3
- tccli/services/cwp/v20180228/api.json +1 -1
- tccli/services/cynosdb/cynosdb_client.py +110 -57
- tccli/services/cynosdb/v20190107/api.json +166 -18
- tccli/services/cynosdb/v20190107/examples.json +14 -0
- tccli/services/dbbrain/v20210527/api.json +3 -1
- tccli/services/emr/emr_client.py +110 -4
- tccli/services/emr/v20190103/api.json +645 -0
- tccli/services/emr/v20190103/examples.json +16 -0
- tccli/services/es/v20180416/api.json +106 -8
- tccli/services/essbasic/v20210526/api.json +2 -2
- tccli/services/iotexplorer/v20190423/api.json +10 -0
- tccli/services/ivld/v20210903/api.json +25 -25
- tccli/services/ivld/v20210903/examples.json +1 -1
- tccli/services/lcic/v20220817/api.json +2 -2
- tccli/services/lke/v20231130/api.json +4 -4
- tccli/services/memcached/v20190318/api.json +20 -20
- tccli/services/mps/v20190612/api.json +65 -1
- tccli/services/mqtt/mqtt_client.py +283 -71
- tccli/services/mqtt/v20240516/api.json +312 -0
- tccli/services/mqtt/v20240516/examples.json +32 -0
- tccli/services/ocr/v20181119/api.json +251 -28
- tccli/services/ocr/v20181119/examples.json +1 -1
- tccli/services/postgres/v20170312/api.json +232 -228
- tccli/services/postgres/v20170312/examples.json +38 -38
- tccli/services/redis/v20180412/examples.json +2 -2
- tccli/services/ssl/v20191205/api.json +4 -4
- tccli/services/ssl/v20191205/examples.json +1 -1
- tccli/services/sts/v20180813/api.json +9 -9
- tccli/services/tdmq/v20200217/api.json +2 -2
- tccli/services/trtc/v20190722/api.json +4 -8
- tccli/services/tse/tse_client.py +228 -16
- tccli/services/tse/v20201207/api.json +476 -0
- tccli/services/tse/v20201207/examples.json +32 -0
- tccli/services/vclm/v20240523/api.json +3 -3
- tccli/services/vdb/v20230616/api.json +3 -3
- tccli/services/vdb/v20230616/examples.json +1 -1
- tccli/services/vod/v20180717/api.json +17 -17
- tccli/services/vpc/v20170312/api.json +510 -34
- tccli/services/vpc/v20170312/examples.json +68 -12
- tccli/services/vpc/vpc_client.py +475 -104
- {tccli-3.0.1229.1.dist-info → tccli-3.0.1231.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1229.1.dist-info → tccli-3.0.1231.1.dist-info}/RECORD +59 -59
- {tccli-3.0.1229.1.dist-info → tccli-3.0.1231.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1229.1.dist-info → tccli-3.0.1231.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1229.1.dist-info → tccli-3.0.1231.1.dist-info}/license_files/LICENSE +0 -0
@@ -35,6 +35,13 @@
|
|
35
35
|
"output": "CreateTopicResponse",
|
36
36
|
"status": "online"
|
37
37
|
},
|
38
|
+
"DeactivateDeviceCertificate": {
|
39
|
+
"document": "失效Ca证书",
|
40
|
+
"input": "DeactivateDeviceCertificateRequest",
|
41
|
+
"name": "失效设备证书",
|
42
|
+
"output": "DeactivateDeviceCertificateResponse",
|
43
|
+
"status": "online"
|
44
|
+
},
|
38
45
|
"DeleteAuthenticator": {
|
39
46
|
"document": "根据认证器类型删除一个MQTT认证器",
|
40
47
|
"input": "DeleteAuthenticatorRequest",
|
@@ -49,6 +56,13 @@
|
|
49
56
|
"output": "DeleteAuthorizationPolicyResponse",
|
50
57
|
"status": "online"
|
51
58
|
},
|
59
|
+
"DeleteDeviceCertificate": {
|
60
|
+
"document": "删除设备证书",
|
61
|
+
"input": "DeleteDeviceCertificateRequest",
|
62
|
+
"name": "删除设备证书",
|
63
|
+
"output": "DeleteDeviceCertificateResponse",
|
64
|
+
"status": "online"
|
65
|
+
},
|
52
66
|
"DeleteTopic": {
|
53
67
|
"document": "删除MQTT主题",
|
54
68
|
"input": "DeleteTopicRequest",
|
@@ -70,6 +84,13 @@
|
|
70
84
|
"output": "DescribeAuthorizationPoliciesResponse",
|
71
85
|
"status": "online"
|
72
86
|
},
|
87
|
+
"DescribeDeviceCertificate": {
|
88
|
+
"document": "查询设备证书详情接口",
|
89
|
+
"input": "DescribeDeviceCertificateRequest",
|
90
|
+
"name": "查询设备证书详情",
|
91
|
+
"output": "DescribeDeviceCertificateResponse",
|
92
|
+
"status": "online"
|
93
|
+
},
|
73
94
|
"DescribeDeviceCertificates": {
|
74
95
|
"document": "分页查询设备证书",
|
75
96
|
"input": "DescribeDeviceCertificatesRequest",
|
@@ -140,6 +161,13 @@
|
|
140
161
|
"output": "RegisterDeviceCertificateResponse",
|
141
162
|
"status": "online"
|
142
163
|
},
|
164
|
+
"RevokedDeviceCertificate": {
|
165
|
+
"document": "吊销设备证书",
|
166
|
+
"input": "RevokedDeviceCertificateRequest",
|
167
|
+
"name": "吊销设备证书",
|
168
|
+
"output": "RevokedDeviceCertificateResponse",
|
169
|
+
"status": "online"
|
170
|
+
},
|
143
171
|
"UpdateAuthorizationPolicyPriority": {
|
144
172
|
"document": "修改策略规则优先级",
|
145
173
|
"input": "UpdateAuthorizationPolicyPriorityRequest",
|
@@ -747,6 +775,42 @@
|
|
747
775
|
],
|
748
776
|
"type": "object"
|
749
777
|
},
|
778
|
+
"DeactivateDeviceCertificateRequest": {
|
779
|
+
"document": "DeactivateDeviceCertificate请求参数结构体",
|
780
|
+
"members": [
|
781
|
+
{
|
782
|
+
"disabled": false,
|
783
|
+
"document": "集群id",
|
784
|
+
"example": "mqtt-1234567",
|
785
|
+
"member": "string",
|
786
|
+
"name": "InstanceId",
|
787
|
+
"required": true,
|
788
|
+
"type": "string"
|
789
|
+
},
|
790
|
+
{
|
791
|
+
"disabled": false,
|
792
|
+
"document": "设备证书序列号",
|
793
|
+
"example": "无",
|
794
|
+
"member": "string",
|
795
|
+
"name": "DeviceCertificateSn",
|
796
|
+
"required": true,
|
797
|
+
"type": "string"
|
798
|
+
}
|
799
|
+
],
|
800
|
+
"type": "object"
|
801
|
+
},
|
802
|
+
"DeactivateDeviceCertificateResponse": {
|
803
|
+
"document": "DeactivateDeviceCertificate返回参数结构体",
|
804
|
+
"members": [
|
805
|
+
{
|
806
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
807
|
+
"member": "string",
|
808
|
+
"name": "RequestId",
|
809
|
+
"type": "string"
|
810
|
+
}
|
811
|
+
],
|
812
|
+
"type": "object"
|
813
|
+
},
|
750
814
|
"DeleteAuthenticatorRequest": {
|
751
815
|
"document": "DeleteAuthenticator请求参数结构体",
|
752
816
|
"members": [
|
@@ -819,6 +883,42 @@
|
|
819
883
|
],
|
820
884
|
"type": "object"
|
821
885
|
},
|
886
|
+
"DeleteDeviceCertificateRequest": {
|
887
|
+
"document": "DeleteDeviceCertificate请求参数结构体",
|
888
|
+
"members": [
|
889
|
+
{
|
890
|
+
"disabled": false,
|
891
|
+
"document": "集群id",
|
892
|
+
"example": "mqtt-1234567",
|
893
|
+
"member": "string",
|
894
|
+
"name": "InstanceId",
|
895
|
+
"required": true,
|
896
|
+
"type": "string"
|
897
|
+
},
|
898
|
+
{
|
899
|
+
"disabled": false,
|
900
|
+
"document": "设备证书序列号",
|
901
|
+
"example": "无",
|
902
|
+
"member": "string",
|
903
|
+
"name": "DeviceCertificateSn",
|
904
|
+
"required": true,
|
905
|
+
"type": "string"
|
906
|
+
}
|
907
|
+
],
|
908
|
+
"type": "object"
|
909
|
+
},
|
910
|
+
"DeleteDeviceCertificateResponse": {
|
911
|
+
"document": "DeleteDeviceCertificate返回参数结构体",
|
912
|
+
"members": [
|
913
|
+
{
|
914
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
915
|
+
"member": "string",
|
916
|
+
"name": "RequestId",
|
917
|
+
"type": "string"
|
918
|
+
}
|
919
|
+
],
|
920
|
+
"type": "object"
|
921
|
+
},
|
822
922
|
"DeleteTopicRequest": {
|
823
923
|
"document": "DeleteTopic请求参数结构体",
|
824
924
|
"members": [
|
@@ -938,6 +1038,182 @@
|
|
938
1038
|
],
|
939
1039
|
"type": "object"
|
940
1040
|
},
|
1041
|
+
"DescribeDeviceCertificateRequest": {
|
1042
|
+
"document": "DescribeDeviceCertificate请求参数结构体",
|
1043
|
+
"members": [
|
1044
|
+
{
|
1045
|
+
"disabled": false,
|
1046
|
+
"document": "设备证书sn",
|
1047
|
+
"example": "123",
|
1048
|
+
"member": "string",
|
1049
|
+
"name": "DeviceCertificateSn",
|
1050
|
+
"required": true,
|
1051
|
+
"type": "string"
|
1052
|
+
},
|
1053
|
+
{
|
1054
|
+
"disabled": false,
|
1055
|
+
"document": "集群id",
|
1056
|
+
"example": "mqtt-12345",
|
1057
|
+
"member": "string",
|
1058
|
+
"name": "InstanceId",
|
1059
|
+
"required": true,
|
1060
|
+
"type": "string"
|
1061
|
+
}
|
1062
|
+
],
|
1063
|
+
"type": "object"
|
1064
|
+
},
|
1065
|
+
"DescribeDeviceCertificateResponse": {
|
1066
|
+
"document": "DescribeDeviceCertificate返回参数结构体",
|
1067
|
+
"members": [
|
1068
|
+
{
|
1069
|
+
"disabled": false,
|
1070
|
+
"document": "创建时间",
|
1071
|
+
"example": "1713164969433",
|
1072
|
+
"member": "int64",
|
1073
|
+
"name": "CreatedTime",
|
1074
|
+
"output_required": false,
|
1075
|
+
"type": "int",
|
1076
|
+
"value_allowed_null": false
|
1077
|
+
},
|
1078
|
+
{
|
1079
|
+
"disabled": false,
|
1080
|
+
"document": "上次更新时间",
|
1081
|
+
"example": "1713164969433",
|
1082
|
+
"member": "int64",
|
1083
|
+
"name": "UpdateTime",
|
1084
|
+
"output_required": false,
|
1085
|
+
"type": "int",
|
1086
|
+
"value_allowed_null": false
|
1087
|
+
},
|
1088
|
+
{
|
1089
|
+
"disabled": false,
|
1090
|
+
"document": "证书失效日期",
|
1091
|
+
"example": "1713164969433",
|
1092
|
+
"member": "int64",
|
1093
|
+
"name": "NotAfterTime",
|
1094
|
+
"output_required": false,
|
1095
|
+
"type": "int",
|
1096
|
+
"value_allowed_null": false
|
1097
|
+
},
|
1098
|
+
{
|
1099
|
+
"disabled": false,
|
1100
|
+
"document": "上次激活时间",
|
1101
|
+
"example": "1713164969433",
|
1102
|
+
"member": "int64",
|
1103
|
+
"name": "LastActivationTime",
|
1104
|
+
"output_required": false,
|
1105
|
+
"type": "int",
|
1106
|
+
"value_allowed_null": false
|
1107
|
+
},
|
1108
|
+
{
|
1109
|
+
"disabled": false,
|
1110
|
+
"document": "上次取消激活时间",
|
1111
|
+
"example": "1713164969433",
|
1112
|
+
"member": "int64",
|
1113
|
+
"name": "LastInactivationTime",
|
1114
|
+
"output_required": false,
|
1115
|
+
"type": "int",
|
1116
|
+
"value_allowed_null": false
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
"disabled": false,
|
1120
|
+
"document": "证书状态",
|
1121
|
+
"example": "ACTIVE",
|
1122
|
+
"member": "string",
|
1123
|
+
"name": "Status",
|
1124
|
+
"output_required": false,
|
1125
|
+
"type": "string",
|
1126
|
+
"value_allowed_null": false
|
1127
|
+
},
|
1128
|
+
{
|
1129
|
+
"disabled": false,
|
1130
|
+
"document": "证书序列号",
|
1131
|
+
"example": "123",
|
1132
|
+
"member": "string",
|
1133
|
+
"name": "CaSn",
|
1134
|
+
"output_required": false,
|
1135
|
+
"type": "string",
|
1136
|
+
"value_allowed_null": false
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
"disabled": false,
|
1140
|
+
"document": "设备证书sn",
|
1141
|
+
"example": "无",
|
1142
|
+
"member": "string",
|
1143
|
+
"name": "DeviceCertificateSn",
|
1144
|
+
"output_required": false,
|
1145
|
+
"type": "string",
|
1146
|
+
"value_allowed_null": false
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
"disabled": false,
|
1150
|
+
"document": "证书内容",
|
1151
|
+
"example": "无",
|
1152
|
+
"member": "string",
|
1153
|
+
"name": "DeviceCertificate",
|
1154
|
+
"output_required": false,
|
1155
|
+
"type": "string",
|
1156
|
+
"value_allowed_null": false
|
1157
|
+
},
|
1158
|
+
{
|
1159
|
+
"disabled": false,
|
1160
|
+
"document": "设备证书cn",
|
1161
|
+
"example": "无",
|
1162
|
+
"member": "string",
|
1163
|
+
"name": "DeviceCertificateCn",
|
1164
|
+
"output_required": false,
|
1165
|
+
"type": "string",
|
1166
|
+
"value_allowed_null": false
|
1167
|
+
},
|
1168
|
+
{
|
1169
|
+
"disabled": false,
|
1170
|
+
"document": "证书格式",
|
1171
|
+
"example": "PEM",
|
1172
|
+
"member": "string",
|
1173
|
+
"name": "Format",
|
1174
|
+
"output_required": false,
|
1175
|
+
"type": "string",
|
1176
|
+
"value_allowed_null": false
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"disabled": false,
|
1180
|
+
"document": "客户端id\n注意:此字段可能返回 null,表示取不到有效值。",
|
1181
|
+
"example": "client1",
|
1182
|
+
"member": "string",
|
1183
|
+
"name": "ClientId",
|
1184
|
+
"output_required": false,
|
1185
|
+
"type": "string",
|
1186
|
+
"value_allowed_null": true
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
"disabled": false,
|
1190
|
+
"document": " API, 手动注册 \n JITP 自动注册",
|
1191
|
+
"example": "API",
|
1192
|
+
"member": "string",
|
1193
|
+
"name": "CertificateSource",
|
1194
|
+
"output_required": false,
|
1195
|
+
"type": "string",
|
1196
|
+
"value_allowed_null": false
|
1197
|
+
},
|
1198
|
+
{
|
1199
|
+
"disabled": false,
|
1200
|
+
"document": "证书生效开始时间",
|
1201
|
+
"example": "1713164969433",
|
1202
|
+
"member": "int64",
|
1203
|
+
"name": "NotBeforeTime",
|
1204
|
+
"output_required": false,
|
1205
|
+
"type": "int",
|
1206
|
+
"value_allowed_null": false
|
1207
|
+
},
|
1208
|
+
{
|
1209
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1210
|
+
"member": "string",
|
1211
|
+
"name": "RequestId",
|
1212
|
+
"type": "string"
|
1213
|
+
}
|
1214
|
+
],
|
1215
|
+
"type": "object"
|
1216
|
+
},
|
941
1217
|
"DescribeDeviceCertificatesRequest": {
|
942
1218
|
"document": "DescribeDeviceCertificates请求参数结构体",
|
943
1219
|
"members": [
|
@@ -2393,6 +2669,42 @@
|
|
2393
2669
|
],
|
2394
2670
|
"type": "object"
|
2395
2671
|
},
|
2672
|
+
"RevokedDeviceCertificateRequest": {
|
2673
|
+
"document": "RevokedDeviceCertificate请求参数结构体",
|
2674
|
+
"members": [
|
2675
|
+
{
|
2676
|
+
"disabled": false,
|
2677
|
+
"document": "集群id",
|
2678
|
+
"example": "mqtt-1234567",
|
2679
|
+
"member": "string",
|
2680
|
+
"name": "InstanceId",
|
2681
|
+
"required": true,
|
2682
|
+
"type": "string"
|
2683
|
+
},
|
2684
|
+
{
|
2685
|
+
"disabled": false,
|
2686
|
+
"document": "设备证书序列号",
|
2687
|
+
"example": "无",
|
2688
|
+
"member": "string",
|
2689
|
+
"name": "DeviceCertificateSn",
|
2690
|
+
"required": true,
|
2691
|
+
"type": "string"
|
2692
|
+
}
|
2693
|
+
],
|
2694
|
+
"type": "object"
|
2695
|
+
},
|
2696
|
+
"RevokedDeviceCertificateResponse": {
|
2697
|
+
"document": "RevokedDeviceCertificate返回参数结构体",
|
2698
|
+
"members": [
|
2699
|
+
{
|
2700
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
2701
|
+
"member": "string",
|
2702
|
+
"name": "RequestId",
|
2703
|
+
"type": "string"
|
2704
|
+
}
|
2705
|
+
],
|
2706
|
+
"type": "object"
|
2707
|
+
},
|
2396
2708
|
"TagFilter": {
|
2397
2709
|
"document": "标签过滤器",
|
2398
2710
|
"members": [
|
@@ -40,6 +40,14 @@
|
|
40
40
|
"title": "示例"
|
41
41
|
}
|
42
42
|
],
|
43
|
+
"DeactivateDeviceCertificate": [
|
44
|
+
{
|
45
|
+
"document": "示例",
|
46
|
+
"input": "POST / HTTP/1.1\nHost: mqtt.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeactivateDeviceCertificate\n<公共请求参数>\n\n{\n \"InstanceId\": \"mqtt-mmgej724\",\n \"DeviceCertificateSn\": \"eef68a582b94254296e54ce754f94d707a59912\"\n}",
|
47
|
+
"output": "{\n \"Error\": null,\n \"RequestId\": null,\n \"Response\": {\n \"RequestId\": \"f33b58df-866a-4ff0-b047-f9d72c4e08ea\"\n }\n}",
|
48
|
+
"title": "示例"
|
49
|
+
}
|
50
|
+
],
|
43
51
|
"DeleteAuthenticator": [
|
44
52
|
{
|
45
53
|
"document": "示例",
|
@@ -56,6 +64,14 @@
|
|
56
64
|
"title": "示例"
|
57
65
|
}
|
58
66
|
],
|
67
|
+
"DeleteDeviceCertificate": [
|
68
|
+
{
|
69
|
+
"document": "示例",
|
70
|
+
"input": "POST / HTTP/1.1\nHost: mqtt.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteDeviceCertificate\n<公共请求参数>\n\n{\n \"InstanceId\": \"mqtt-mmgej724\",\n \"DeviceCertificateSn\": \"eef68a582b94254296e54ce754f94d707a59912\"\n}",
|
71
|
+
"output": "{\n \"Error\": null,\n \"RequestId\": null,\n \"Response\": {\n \"RequestId\": \"2fe9b31a-6111-4c5f-a481-2f3b65600e0c\"\n }\n}",
|
72
|
+
"title": "示例"
|
73
|
+
}
|
74
|
+
],
|
59
75
|
"DeleteTopic": [
|
60
76
|
{
|
61
77
|
"document": "示例",
|
@@ -80,6 +96,14 @@
|
|
80
96
|
"title": "示例"
|
81
97
|
}
|
82
98
|
],
|
99
|
+
"DescribeDeviceCertificate": [
|
100
|
+
{
|
101
|
+
"document": "示例",
|
102
|
+
"input": "POST / HTTP/1.1\nHost: mqtt.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDeviceCertificate\n<公共请求参数>\n\n{\n \"DeviceCertificateSn\": \"0eef68a582b94254296e54ce754f94d707a59911\",\n \"InstanceId\": \"mqtt-jbgwp4ae\"\n}",
|
103
|
+
"output": "{\n \"Error\": null,\n \"RequestId\": null,\n \"Response\": {\n \"CaSn\": \"1b1e3bf3702110125887a3a721a7e66f05522513\",\n \"CertificateSource\": \"API\",\n \"ClientId\": \"111\",\n \"CreatedTime\": 1724050379000,\n \"DeviceCertificate\": \"-----BEGIN CERTIFICATE-----\\nMIIEQjCCAyqgAwIBAgIUDu9opYK5QlQpblTOdU+U1welmREwDQYJKoZIhvcNAQEL\\nBQAwgZIxCzAJBgNVBAYTAmNuMQ0wCwYDVQQIDAR4aWFuMQ0wCwYDVQQHDARodXlp\\nMREwDwYDVQQKDAhqZWhhbnN1bjEWMBQGA1UECwwNdW5pdCBqZWhhbnN1bjEVMBMG\\nA1UEAwwMc3Vuamlhbnhpb25nMSMwIQYJKoZIhvcNAQkBFhRqZWhhbnN1bkB0ZW5j\\nZW50LmNvbTAeFw0yNDA1MDYwODU0NDNaFw0yNTA5MTgwODU0NDNaMIGBMQswCQYD\\nVQQGEwJDTjELMAkGA1UECAwCWkoxCzAJBgNVBAcMAkhaMQwwCgYDVQQKDANBTEkx\\nDTALBgNVBAsMBE1RVFQxFjAUBgkqhkiG9w0BCQEWB3h4eEB4eHgxIzAhBgNVBAMM\\nGm1xdHQtdGVzdC54eHguYWxpeXVuY3MuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOC\\nAQ8AMIIBCgKCAQEArSMP1QFvggJVAth6Zhnf7NMWi+JP9TvnfzYl1xAWsWfX2ocN\\nC+AumAQl7I0C2UMUppDHIRiikdAwqmoMLFkuTYCoPnTrk8FpQx+/bLXGNZzwgAKN\\n8Y0dbEanl5y6UFXDB6ZsYhRJmjBEZoUj6xCeBzXxP2Uu0FPFAF5haLwt03gQMcWi\\nEMHLdj/jFKUGoLns/eQUdE5wbsZjGrCmk5hEeJxa9vAw40W0cgwsVi0E8qt5FCj7\\n11DeQsvZ5NlQVyOT6YOStElE2zuWtMjzsgk7ryW2qWANv62hRxY8dDmPXO5oimK8\\nAzNjakiN40OmOhzwfiG3noItixlQywWppuTrfwIDAQABo4GeMIGbMB8GA1UdIwQY\\nMBaAFEaWXAdZRRy3HPvjV6NBAYZYGhDfMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgL0\\nMEEGA1UdEQQ6MDiCEyoubXF0dC5hbGl5dW5jcy5jb22CIW1xdHQtdGVzdC5jbi1x\\naW5nZGFvLmFsaXl1bmNzLmNvbTAdBgNVHQ4EFgQUz7CdvXCtki2X9i6zIQwKVJ7q\\n/LwwDQYJKoZIhvcNAQELBQADggEBAB7Y/susqeC85RtXw9CHcOmcb/17G7svgxFZ\\nLecOwEFxxaqwNVp/ae6TVkPvrMPStpVJmpS7ikYz37J16/n1mks/s+7fkGwAwfCI\\nD+vGR+Hcvu2RsiTPwDMRhFwj92ZclnSyBjtPa1pgS1Nq0oCJ85G+nyxYBAjDQqzO\\n05jNRO+E4/L+WrYhLE6M72amFMLbVGs170wHTiXtzokfUdflj9mNQs3pfLFNsyCt\\nasDfqJX4Kie/MIwv/YKcB9pZ4NsonEgD3OfjJ6pFEHEH4ZiOVHuTT6C52XpCYMWA\\najvuaaIlJp7GgOZxxPInOVXPmBlBlp28AiMlmxSfSAuMpUF0I8w=\\n-----END CERTIFICATE-----\\n\",\n \"DeviceCertificateCn\": \"mqtt-test.xxx.aliyuncs.com\",\n \"DeviceCertificateSn\": \"0eef68a582b94254296e54ce754f94d707a59911\",\n \"Format\": \"PEM\",\n \"LastActivationTime\": 1724050378987,\n \"LastInactivationTime\": 0,\n \"NotAfterTime\": 1758185683000,\n \"NotBeforeTime\": 1714985683000,\n \"RequestId\": \"1b5fc3fa-4bbf-421a-aad1-c45d49119a2c\",\n \"Status\": \"ACTIVE\",\n \"UpdateTime\": 1724050379000\n }\n}",
|
104
|
+
"title": "示例"
|
105
|
+
}
|
106
|
+
],
|
83
107
|
"DescribeDeviceCertificates": [
|
84
108
|
{
|
85
109
|
"document": "示例",
|
@@ -160,6 +184,14 @@
|
|
160
184
|
"title": "示例"
|
161
185
|
}
|
162
186
|
],
|
187
|
+
"RevokedDeviceCertificate": [
|
188
|
+
{
|
189
|
+
"document": "示例",
|
190
|
+
"input": "POST / HTTP/1.1\nHost: mqtt.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: RevokedDeviceCertificate\n<公共请求参数>\n\n{\n \"InstanceId\": \"mqtt-vv9pnwq4\",\n \"DeviceCertificateSn\": \"eef68a582b94254296e54ce754f94d707a59912\"\n}",
|
191
|
+
"output": "{\n \"Error\": null,\n \"RequestId\": null,\n \"Response\": {\n \"RequestId\": \"edd5d85e-8c3d-473d-b436-fa394748bf31\"\n }\n}",
|
192
|
+
"title": "示例"
|
193
|
+
}
|
194
|
+
],
|
163
195
|
"UpdateAuthorizationPolicyPriority": [
|
164
196
|
{
|
165
197
|
"document": "示例",
|