tccli 3.0.1230.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.
Files changed (40) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/aiart/aiart_client.py +53 -0
  3. tccli/services/aiart/v20221229/api.json +98 -0
  4. tccli/services/aiart/v20221229/examples.json +8 -0
  5. tccli/services/batch/v20170312/api.json +4 -6
  6. tccli/services/cam/cam_client.py +53 -0
  7. tccli/services/cam/v20190116/api.json +125 -52
  8. tccli/services/cam/v20190116/examples.json +12 -4
  9. tccli/services/cfg/v20210820/api.json +9 -0
  10. tccli/services/cloudaudit/v20190319/api.json +39 -39
  11. tccli/services/cloudaudit/v20190319/examples.json +5 -5
  12. tccli/services/cvm/v20170312/api.json +53 -55
  13. tccli/services/cvm/v20170312/examples.json +3 -3
  14. tccli/services/es/v20180416/api.json +106 -8
  15. tccli/services/essbasic/v20210526/api.json +2 -2
  16. tccli/services/memcached/v20190318/api.json +20 -20
  17. tccli/services/mps/v20190612/api.json +11 -0
  18. tccli/services/mqtt/mqtt_client.py +283 -71
  19. tccli/services/mqtt/v20240516/api.json +312 -0
  20. tccli/services/mqtt/v20240516/examples.json +32 -0
  21. tccli/services/ocr/v20181119/api.json +143 -0
  22. tccli/services/ocr/v20181119/examples.json +1 -1
  23. tccli/services/postgres/v20170312/api.json +11 -9
  24. tccli/services/postgres/v20170312/examples.json +2 -2
  25. tccli/services/redis/v20180412/examples.json +2 -2
  26. tccli/services/ssl/v20191205/api.json +4 -4
  27. tccli/services/ssl/v20191205/examples.json +1 -1
  28. tccli/services/sts/v20180813/api.json +9 -9
  29. tccli/services/tse/tse_client.py +228 -16
  30. tccli/services/tse/v20201207/api.json +476 -0
  31. tccli/services/tse/v20201207/examples.json +32 -0
  32. tccli/services/vdb/v20230616/api.json +3 -3
  33. tccli/services/vdb/v20230616/examples.json +1 -1
  34. tccli/services/vpc/v20170312/api.json +17 -7
  35. tccli/services/vpc/v20170312/examples.json +1 -1
  36. {tccli-3.0.1230.1.dist-info → tccli-3.0.1231.1.dist-info}/METADATA +2 -2
  37. {tccli-3.0.1230.1.dist-info → tccli-3.0.1231.1.dist-info}/RECORD +40 -40
  38. {tccli-3.0.1230.1.dist-info → tccli-3.0.1231.1.dist-info}/WHEEL +0 -0
  39. {tccli-3.0.1230.1.dist-info → tccli-3.0.1231.1.dist-info}/entry_points.txt +0 -0
  40. {tccli-3.0.1230.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": "示例",
@@ -8045,6 +8045,15 @@
8045
8045
  "required": false,
8046
8046
  "type": "string"
8047
8047
  },
8048
+ {
8049
+ "disabled": false,
8050
+ "document": "卡证背面图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。",
8051
+ "example": "/9j/4AAQSkZJRg.....s97n//2Q==",
8052
+ "member": "string",
8053
+ "name": "BackImageBase64",
8054
+ "required": false,
8055
+ "type": "string"
8056
+ },
8048
8057
  {
8049
8058
  "disabled": false,
8050
8059
  "document": "图片的 Url 地址。( 中国地区之外不支持这个字段 )\n支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。\n支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。\n图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。\n非腾讯云存储的 Url 速度和稳定性可能受一定影响。",
@@ -8054,6 +8063,15 @@
8054
8063
  "required": false,
8055
8064
  "type": "string"
8056
8065
  },
8066
+ {
8067
+ "disabled": false,
8068
+ "document": "卡证背面图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。",
8069
+ "example": "https://ocr-demo-1254418846.cos.ap-guangzhou.myqcloud.com/***/fakeurl.jpg",
8070
+ "member": "string",
8071
+ "name": "BackImageUrl",
8072
+ "required": false,
8073
+ "type": "string"
8074
+ },
8057
8075
  {
8058
8076
  "disabled": false,
8059
8077
  "document": "是否返回图片,默认false",
@@ -8159,6 +8177,16 @@
8159
8177
  "type": "string",
8160
8178
  "value_allowed_null": false
8161
8179
  },
8180
+ {
8181
+ "disabled": false,
8182
+ "document": "马来身份证背面号码",
8183
+ "example": "800***-**-****-05-02",
8184
+ "member": "string",
8185
+ "name": "MyKadNumber",
8186
+ "output_required": false,
8187
+ "type": "string",
8188
+ "value_allowed_null": false
8189
+ },
8162
8190
  {
8163
8191
  "disabled": false,
8164
8192
  "document": "告警码\n-9101 证件边框不完整告警\n-9102 证件复印件告警\n-9103 证件翻拍告警\n-9104 证件PS告警\n-9107 证件反光告警\n-9108 证件模糊告警\n-9109 告警能力未开通",
@@ -17009,6 +17037,102 @@
17009
17037
  ],
17010
17038
  "usage": "out"
17011
17039
  },
17040
+ "TextTractorVehicleBack": {
17041
+ "document": "拖拉机行驶证副页正面的识别结果",
17042
+ "members": [
17043
+ {
17044
+ "disabled": false,
17045
+ "document": "号牌号码\n注意:此字段可能返回 null,表示取不到有效值。",
17046
+ "example": "无",
17047
+ "member": "string",
17048
+ "name": "PlateNo",
17049
+ "output_required": false,
17050
+ "type": "string",
17051
+ "value_allowed_null": true
17052
+ },
17053
+ {
17054
+ "disabled": false,
17055
+ "document": "准乘人数\n注意:此字段可能返回 null,表示取不到有效值。",
17056
+ "example": "无",
17057
+ "member": "string",
17058
+ "name": "AllowNum",
17059
+ "output_required": false,
17060
+ "type": "string",
17061
+ "value_allowed_null": true
17062
+ },
17063
+ {
17064
+ "disabled": false,
17065
+ "document": "联合收割机质量\n注意:此字段可能返回 null,表示取不到有效值。",
17066
+ "example": "无",
17067
+ "member": "string",
17068
+ "name": "CombineHarvesterQuality",
17069
+ "output_required": false,
17070
+ "type": "string",
17071
+ "value_allowed_null": true
17072
+ },
17073
+ {
17074
+ "disabled": false,
17075
+ "document": "拖拉机最小使用质量\n注意:此字段可能返回 null,表示取不到有效值。",
17076
+ "example": "无",
17077
+ "member": "string",
17078
+ "name": "TractorMinUsageWeight",
17079
+ "output_required": false,
17080
+ "type": "string",
17081
+ "value_allowed_null": true
17082
+ },
17083
+ {
17084
+ "disabled": false,
17085
+ "document": "拖拉机最大允许载质量\n注意:此字段可能返回 null,表示取不到有效值。",
17086
+ "example": "无",
17087
+ "member": "string",
17088
+ "name": "TractorMaxAllowLoadCapacity",
17089
+ "output_required": false,
17090
+ "type": "string",
17091
+ "value_allowed_null": true
17092
+ },
17093
+ {
17094
+ "disabled": false,
17095
+ "document": "外廓尺寸\n注意:此字段可能返回 null,表示取不到有效值。",
17096
+ "example": "无",
17097
+ "member": "string",
17098
+ "name": "ExternalSize",
17099
+ "output_required": false,
17100
+ "type": "string",
17101
+ "value_allowed_null": true
17102
+ },
17103
+ {
17104
+ "disabled": false,
17105
+ "document": "检验记录\n注意:此字段可能返回 null,表示取不到有效值。",
17106
+ "example": "无",
17107
+ "member": "string",
17108
+ "name": "Record",
17109
+ "output_required": false,
17110
+ "type": "string",
17111
+ "value_allowed_null": true
17112
+ },
17113
+ {
17114
+ "disabled": false,
17115
+ "document": "类型\n注意:此字段可能返回 null,表示取不到有效值。",
17116
+ "example": "无",
17117
+ "member": "string",
17118
+ "name": "VehicleType",
17119
+ "output_required": false,
17120
+ "type": "string",
17121
+ "value_allowed_null": true
17122
+ },
17123
+ {
17124
+ "disabled": false,
17125
+ "document": "住址\n注意:此字段可能返回 null,表示取不到有效值。",
17126
+ "example": "无",
17127
+ "member": "string",
17128
+ "name": "Address",
17129
+ "output_required": false,
17130
+ "type": "string",
17131
+ "value_allowed_null": true
17132
+ }
17133
+ ],
17134
+ "usage": "out"
17135
+ },
17012
17136
  "TextVatInvoice": {
17013
17137
  "document": "增值税发票识别结果",
17014
17138
  "members": [
@@ -21365,6 +21489,15 @@
21365
21489
  "name": "CardSide",
21366
21490
  "required": false,
21367
21491
  "type": "string"
21492
+ },
21493
+ {
21494
+ "disabled": false,
21495
+ "document": "FRONT为行驶证主页正面(有红色印章的一面),BACK 为拖拉机行驶证副页正面识别",
21496
+ "example": "BACK",
21497
+ "member": "string",
21498
+ "name": "TractorCardSide",
21499
+ "required": false,
21500
+ "type": "string"
21368
21501
  }
21369
21502
  ],
21370
21503
  "type": "object"
@@ -21422,6 +21555,16 @@
21422
21555
  "type": "string",
21423
21556
  "value_allowed_null": false
21424
21557
  },
21558
+ {
21559
+ "disabled": false,
21560
+ "document": "拖拉机行驶证副页正面的识别结果,CardSide 为 BACK。\n注意:此字段可能返回 null,表示取不到有效值。",
21561
+ "example": "{ \"Address\": \"\", \"AllowNum\": \"1人\", \"CombineHarvesterQuality\": \"千克\", \"ExternalSize\": \"3250/ 1350/ 2230毫米\", \"PlateNo\": \"鲁09C5108\", \"Record\": \"检验合格至2024年03月有效鲁0982(01)\", \"TractorMaxAllowLoadCapacity\": \"\", \"TractorMinUsageWeight\": \"1400千克\", \"VehicleType\": \"轮式拖拉机\" }",
21562
+ "member": "TextTractorVehicleBack",
21563
+ "name": "TractorBackInfo",
21564
+ "output_required": false,
21565
+ "type": "object",
21566
+ "value_allowed_null": true
21567
+ },
21425
21568
  {
21426
21569
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
21427
21570
  "member": "string",
@@ -670,7 +670,7 @@
670
670
  {
671
671
  "document": "行驶证主页正面识别示例",
672
672
  "input": "POST / HTTP/1.1\nHost: ocr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: VehicleLicenseOCR\n<公共请求参数>\n\n{\n \"ImageUrl\": \"https://ocr-demo-1254418846.cos.ap-guangzhou.myqcloud.com/vehicle/VehicleLicenseOCR/VehicleLicenseOCR2.jpg\",\n \"CardSide\": \"FRONT\"\n}",
673
- "output": "{\n \"Response\": {\n \"FrontInfo\": {\n \"PlateNo\": \"沪AA1234\",\n \"VehicleType\": \"小型轿车\",\n \"Owner\": \"李明\",\n \"Address\": \"上海市徐汇区田林路397号腾云大厦6F\",\n \"UseCharacter\": \"非营运\",\n \"Model\": \"别克牌SGM7151LAAA\",\n \"Vin\": \"ABCDEFGH123456789\",\n \"EngineNo\": \"8B54321\",\n \"RegisterDate\": \"2011-10-10\",\n \"IssueDate\": \"\",\n \"Seal\": \"上海市公安局交通警寨总队\"\n },\n \"BackInfo\": null,\n \"RecognizeWarnCode\": [\n -9102\n ],\n \"RecognizeWarnMsg\": [\n \"WARN_DRIVER_LICENSE_COPY_CARD\"\n ],\n \"RequestId\": \"820916b4-b391-40a8-9203-7ae87e3f1954\"\n }\n}",
673
+ "output": "{\n \"Response\": {\n \"FrontInfo\": {\n \"PlateNo\": \"沪AA1234\",\n \"VehicleType\": \"小型轿车\",\n \"Owner\": \"李明\",\n \"Address\": \"上海市徐汇区田林路397号腾云大厦6F\",\n \"UseCharacter\": \"非营运\",\n \"Model\": \"别克牌SGM7151LAAA\",\n \"Vin\": \"ABCDEFGH123456789\",\n \"EngineNo\": \"8B54321\",\n \"RegisterDate\": \"2011-10-10\",\n \"IssueDate\": \"\",\n \"Seal\": \"上海市公安局交通警察总队\"\n },\n \"BackInfo\": null,\n \"RecognizeWarnCode\": [\n -9102\n ],\n \"RecognizeWarnMsg\": [\n \"WARN_DRIVER_LICENSE_COPY_CARD\"\n ],\n \"RequestId\": \"820916b4-b391-40a8-9203-7ae87e3f1954\"\n }\n}",
674
674
  "title": "行驶证主页正面识别示例"
675
675
  },
676
676
  {