tencentcloud-sdk-nodejs-intl-en 3.0.1367 → 3.0.1368

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.
@@ -61,6 +61,7 @@ const DescribeBindingPolicyObjectListResponse = models.DescribeBindingPolicyObje
61
61
  const PrometheusInstancesOverview = models.PrometheusInstancesOverview;
62
62
  const DescribePrometheusInstanceInitStatusResponse = models.DescribePrometheusInstanceInitStatusResponse;
63
63
  const DescribeProductEventListResponse = models.DescribeProductEventListResponse;
64
+ const AlarmGroupByItem = models.AlarmGroupByItem;
64
65
  const DescribeAlarmNoticeCallbacksResponse = models.DescribeAlarmNoticeCallbacksResponse;
65
66
  const DescribePrometheusInstanceUsageRequest = models.DescribePrometheusInstanceUsageRequest;
66
67
  const DeleteSSOAccountRequest = models.DeleteSSOAccountRequest;
@@ -269,7 +270,7 @@ const CreatePrometheusClusterAgentRequest = models.CreatePrometheusClusterAgentR
269
270
  const ModifyAlarmPolicyConditionResponse = models.ModifyAlarmPolicyConditionResponse;
270
271
  const DescribePrometheusInstancesOverviewResponse = models.DescribePrometheusInstancesOverviewResponse;
271
272
  const MetricSet = models.MetricSet;
272
- const PrometheusInstanceGrantInfo = models.PrometheusInstanceGrantInfo;
273
+ const DescribePrometheusRecordRuleYamlResponse = models.DescribePrometheusRecordRuleYamlResponse;
273
274
  const TemplateGroup = models.TemplateGroup;
274
275
  const DescribeBindingPolicyObjectListInstance = models.DescribeBindingPolicyObjectListInstance;
275
276
  const UpdateGrafanaIntegrationResponse = models.UpdateGrafanaIntegrationResponse;
@@ -288,7 +289,7 @@ const UpgradeGrafanaInstanceRequest = models.UpgradeGrafanaInstanceRequest;
288
289
  const DescribeAccidentEventListAlarms = models.DescribeAccidentEventListAlarms;
289
290
  const CreatePrometheusGlobalNotificationResponse = models.CreatePrometheusGlobalNotificationResponse;
290
291
  const DescribeAlarmHistoriesRequest = models.DescribeAlarmHistoriesRequest;
291
- const DescribePrometheusRecordRuleYamlResponse = models.DescribePrometheusRecordRuleYamlResponse;
292
+ const PrometheusInstanceGrantInfo = models.PrometheusInstanceGrantInfo;
292
293
  const DeletePolicyGroupRequest = models.DeletePolicyGroupRequest;
293
294
  const EnableSSOCamCheckRequest = models.EnableSSOCamCheckRequest;
294
295
  const DeleteGrafanaIntegrationResponse = models.DeleteGrafanaIntegrationResponse;
@@ -297,6 +298,7 @@ const DescribePrometheusZonesResponse = models.DescribePrometheusZonesResponse;
297
298
  const DescribePrometheusAgentsRequest = models.DescribePrometheusAgentsRequest;
298
299
  const DescribePolicyGroupInfoCondition = models.DescribePolicyGroupInfoCondition;
299
300
  const DescribePrometheusInstanceInitStatusRequest = models.DescribePrometheusInstanceInitStatusRequest;
301
+ const AlarmConditionFilter = models.AlarmConditionFilter;
300
302
  const CreatePrometheusAlertPolicyRequest = models.CreatePrometheusAlertPolicyRequest;
301
303
  const DescribeBindingPolicyObjectListRequest = models.DescribeBindingPolicyObjectListRequest;
302
304
  const DescribeProductEventListEvents = models.DescribeProductEventListEvents;
@@ -1326,42 +1326,36 @@ class Rect extends AbstractModel {
1326
1326
  }
1327
1327
 
1328
1328
  /**
1329
- * RecognizeMainlandIDCardOCR request structure.
1329
+ * Vehicle license plate information
1330
1330
  * @class
1331
1331
  */
1332
- class RecognizeMainlandIDCardOCRRequest extends AbstractModel {
1332
+ class LicensePlateInfo extends AbstractModel {
1333
1333
  constructor(){
1334
1334
  super();
1335
1335
 
1336
1336
  /**
1337
- * The Base64 value of the image. The image is required to be no larger than 7M after Base64 encoding, and the resolution is recommended to be 500*800 or above. PNG, JPG, JPEG, and BMP formats are supported. It is recommended that the card part occupies at least 2/3 of the picture. One of ImageUrl and ImageBase64 of the image must be provided. If both are provided, only ImageUrl will be used.
1338
- * @type {string || null}
1339
- */
1340
- this.ImageBase64 = null;
1341
-
1342
- /**
1343
- * The URL address of the image. The image is required to be no larger than 7M after Base64 encoding, and the resolution is recommended to be 500*800 or above. PNG, JPG, JPEG, and BMP formats are supported. It is recommended that the card part occupies at least 2/3 of the picture. It is recommended that images be stored in Tencent Cloud to ensure higher download speed and stability.
1337
+ * The recognized license plate number.
1344
1338
  * @type {string || null}
1345
1339
  */
1346
- this.ImageUrl = null;
1340
+ this.Number = null;
1347
1341
 
1348
1342
  /**
1349
- * FRONT: The side of the ID card with the photo (portrait side), BACK: The side of the ID card with the national emblem (national emblem side). If this parameter is not filled in, the front and back of the ID card will be automatically determined for you.
1350
- * @type {string || null}
1343
+ * The confidence score (0–100).
1344
+ * @type {number || null}
1351
1345
  */
1352
- this.CardSide = null;
1346
+ this.Confidence = null;
1353
1347
 
1354
1348
  /**
1355
- * Whether to return the ID card portrait, the default is false
1356
- * @type {boolean || null}
1349
+ * The bounding box coordinates of the text line in the original image.
1350
+ * @type {Rect || null}
1357
1351
  */
1358
- this.CropPortrait = null;
1352
+ this.Rect = null;
1359
1353
 
1360
1354
  /**
1361
- * Whether to enable ID card photo cropping (removing excess edges outside the ID, automatically correcting the shooting angle), the default value is false
1362
- * @type {boolean || null}
1355
+ * The recognized license plate color, which currently includes "white", "black", "blue", "green", "yellow", "yellow-green", and "temporary plate".
1356
+ * @type {string || null}
1363
1357
  */
1364
- this.CropIdCard = null;
1358
+ this.Color = null;
1365
1359
 
1366
1360
  }
1367
1361
 
@@ -1372,11 +1366,15 @@ class RecognizeMainlandIDCardOCRRequest extends AbstractModel {
1372
1366
  if (!params) {
1373
1367
  return;
1374
1368
  }
1375
- this.ImageBase64 = 'ImageBase64' in params ? params.ImageBase64 : null;
1376
- this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
1377
- this.CardSide = 'CardSide' in params ? params.CardSide : null;
1378
- this.CropPortrait = 'CropPortrait' in params ? params.CropPortrait : null;
1379
- this.CropIdCard = 'CropIdCard' in params ? params.CropIdCard : null;
1369
+ this.Number = 'Number' in params ? params.Number : null;
1370
+ this.Confidence = 'Confidence' in params ? params.Confidence : null;
1371
+
1372
+ if (params.Rect) {
1373
+ let obj = new Rect();
1374
+ obj.deserialize(params.Rect)
1375
+ this.Rect = obj;
1376
+ }
1377
+ this.Color = 'Color' in params ? params.Color : null;
1380
1378
 
1381
1379
  }
1382
1380
  }
@@ -8581,6 +8579,51 @@ RetImage: whether to return the processed image (base64 encrypted string); the v
8581
8579
  }
8582
8580
  }
8583
8581
 
8582
+ /**
8583
+ * Detected coordinate recognition information.
8584
+ * @class
8585
+ */
8586
+ class CoordsItem extends AbstractModel {
8587
+ constructor(){
8588
+ super();
8589
+
8590
+ /**
8591
+ * Coordinates of four points in the image.
8592
+ * @type {Polygon || null}
8593
+ */
8594
+ this.Polygon = null;
8595
+
8596
+ /**
8597
+ * Coordinates of two points in the image.
8598
+ * @type {ItemCoord || null}
8599
+ */
8600
+ this.Coords = null;
8601
+
8602
+ }
8603
+
8604
+ /**
8605
+ * @private
8606
+ */
8607
+ deserialize(params) {
8608
+ if (!params) {
8609
+ return;
8610
+ }
8611
+
8612
+ if (params.Polygon) {
8613
+ let obj = new Polygon();
8614
+ obj.deserialize(params.Polygon)
8615
+ this.Polygon = obj;
8616
+ }
8617
+
8618
+ if (params.Coords) {
8619
+ let obj = new ItemCoord();
8620
+ obj.deserialize(params.Coords)
8621
+ this.Coords = obj;
8622
+ }
8623
+
8624
+ }
8625
+ }
8626
+
8584
8627
  /**
8585
8628
  * Non-tax revenue
8586
8629
  * @class
@@ -10113,36 +10156,42 @@ class ItemCoord extends AbstractModel {
10113
10156
  }
10114
10157
 
10115
10158
  /**
10116
- * Vehicle license plate information
10159
+ * RecognizeMainlandIDCardOCR request structure.
10117
10160
  * @class
10118
10161
  */
10119
- class LicensePlateInfo extends AbstractModel {
10162
+ class RecognizeMainlandIDCardOCRRequest extends AbstractModel {
10120
10163
  constructor(){
10121
10164
  super();
10122
10165
 
10123
10166
  /**
10124
- * The recognized license plate number.
10167
+ * The Base64 value of the image. The image is required to be no larger than 7M after Base64 encoding, and the resolution is recommended to be 500*800 or above. PNG, JPG, JPEG, and BMP formats are supported. It is recommended that the card part occupies at least 2/3 of the picture. One of ImageUrl and ImageBase64 of the image must be provided. If both are provided, only ImageUrl will be used.
10125
10168
  * @type {string || null}
10126
10169
  */
10127
- this.Number = null;
10170
+ this.ImageBase64 = null;
10128
10171
 
10129
10172
  /**
10130
- * The confidence score (0–100).
10131
- * @type {number || null}
10173
+ * The URL address of the image. The image is required to be no larger than 7M after Base64 encoding, and the resolution is recommended to be 500*800 or above. PNG, JPG, JPEG, and BMP formats are supported. It is recommended that the card part occupies at least 2/3 of the picture. It is recommended that images be stored in Tencent Cloud to ensure higher download speed and stability.
10174
+ * @type {string || null}
10132
10175
  */
10133
- this.Confidence = null;
10176
+ this.ImageUrl = null;
10134
10177
 
10135
10178
  /**
10136
- * The bounding box coordinates of the text line in the original image.
10137
- * @type {Rect || null}
10179
+ * FRONT: The side of the ID card with the photo (portrait side), BACK: The side of the ID card with the national emblem (national emblem side). If this parameter is not filled in, the front and back of the ID card will be automatically determined for you.
10180
+ * @type {string || null}
10138
10181
  */
10139
- this.Rect = null;
10182
+ this.CardSide = null;
10140
10183
 
10141
10184
  /**
10142
- * The recognized license plate color, which currently includes "white", "black", "blue", "green", "yellow", "yellow-green", and "temporary plate".
10143
- * @type {string || null}
10185
+ * Whether to return the ID card portrait, the default is false
10186
+ * @type {boolean || null}
10144
10187
  */
10145
- this.Color = null;
10188
+ this.CropPortrait = null;
10189
+
10190
+ /**
10191
+ * Whether to enable ID card photo cropping (removing excess edges outside the ID, automatically correcting the shooting angle), the default value is false
10192
+ * @type {boolean || null}
10193
+ */
10194
+ this.CropIdCard = null;
10146
10195
 
10147
10196
  }
10148
10197
 
@@ -10153,15 +10202,11 @@ class LicensePlateInfo extends AbstractModel {
10153
10202
  if (!params) {
10154
10203
  return;
10155
10204
  }
10156
- this.Number = 'Number' in params ? params.Number : null;
10157
- this.Confidence = 'Confidence' in params ? params.Confidence : null;
10158
-
10159
- if (params.Rect) {
10160
- let obj = new Rect();
10161
- obj.deserialize(params.Rect)
10162
- this.Rect = obj;
10163
- }
10164
- this.Color = 'Color' in params ? params.Color : null;
10205
+ this.ImageBase64 = 'ImageBase64' in params ? params.ImageBase64 : null;
10206
+ this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
10207
+ this.CardSide = 'CardSide' in params ? params.CardSide : null;
10208
+ this.CropPortrait = 'CropPortrait' in params ? params.CropPortrait : null;
10209
+ this.CropIdCard = 'CropIdCard' in params ? params.CropIdCard : null;
10165
10210
 
10166
10211
  }
10167
10212
  }
@@ -11349,6 +11394,70 @@ class RecognizeMexicoVTIDRequest extends AbstractModel {
11349
11394
  }
11350
11395
  }
11351
11396
 
11397
+ /**
11398
+ * PODAuditAI response structure.
11399
+ * @class
11400
+ */
11401
+ class PODAuditAIResponse extends AbstractModel {
11402
+ constructor(){
11403
+ super();
11404
+
11405
+ /**
11406
+ * <p>0 means non-compliance 1 means compliance</p>
11407
+ * @type {number || null}
11408
+ */
11409
+ this.AuditorDecision = null;
11410
+
11411
+ /**
11412
+ * <p>Reason code for non-compliance. If there are multiple, return a list of multiple codes.</p><p>Enumeration value:</p><ul><li>100: Wrong delivery address</li><li>101: No house number</li><li>104: Single question</li><li>200: No package</li><li>202: Privacy leakage</li></ul>
11413
+ * @type {Array.<string> || null}
11414
+ */
11415
+ this.FailCode = null;
11416
+
11417
+ /**
11418
+ * <p>Entire approval result analysis content</p>
11419
+ * @type {string || null}
11420
+ */
11421
+ this.ResultAnalysis = null;
11422
+
11423
+ /**
11424
+ * <p>Analysis result logs of each layer, including time taken, judgment reason, and judgment conclusion</p>
11425
+ * @type {Array.<AnalyzedLog> || null}
11426
+ */
11427
+ this.AnalyzedLogs = null;
11428
+
11429
+ /**
11430
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
11431
+ * @type {string || null}
11432
+ */
11433
+ this.RequestId = null;
11434
+
11435
+ }
11436
+
11437
+ /**
11438
+ * @private
11439
+ */
11440
+ deserialize(params) {
11441
+ if (!params) {
11442
+ return;
11443
+ }
11444
+ this.AuditorDecision = 'AuditorDecision' in params ? params.AuditorDecision : null;
11445
+ this.FailCode = 'FailCode' in params ? params.FailCode : null;
11446
+ this.ResultAnalysis = 'ResultAnalysis' in params ? params.ResultAnalysis : null;
11447
+
11448
+ if (params.AnalyzedLogs) {
11449
+ this.AnalyzedLogs = new Array();
11450
+ for (let z in params.AnalyzedLogs) {
11451
+ let obj = new AnalyzedLog();
11452
+ obj.deserialize(params.AnalyzedLogs[z]);
11453
+ this.AnalyzedLogs.push(obj);
11454
+ }
11455
+ }
11456
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
11457
+
11458
+ }
11459
+ }
11460
+
11352
11461
  /**
11353
11462
  * Toll receipt
11354
11463
  * @class
@@ -11871,24 +11980,36 @@ V2
11871
11980
  }
11872
11981
 
11873
11982
  /**
11874
- * Detected coordinate recognition information.
11983
+ * Intelligent review log
11875
11984
  * @class
11876
11985
  */
11877
- class CoordsItem extends AbstractModel {
11986
+ class AnalyzedLog extends AbstractModel {
11878
11987
  constructor(){
11879
11988
  super();
11880
11989
 
11881
11990
  /**
11882
- * Coordinates of four points in the image.
11883
- * @type {Polygon || null}
11991
+ * <p>Indexes of the procedure.</p><p>Enumeration value:</p><ul><li>L1_IMAGE_QUALITY: Image quality detection</li><li>L2_RULE_ENGINE: Rule verification</li><li>L3_LLM_JUDGE: Large model judgment</li></ul>
11992
+ * @type {string || null}
11884
11993
  */
11885
- this.Polygon = null;
11994
+ this.StepKey = null;
11886
11995
 
11887
11996
  /**
11888
- * Coordinates of two points in the image.
11889
- * @type {ItemCoord || null}
11997
+ * <p>Compliant and non-compliant are final states; to be determined is an intermediate state. Judgment status of each layer: Compliant Non-Compliant Pending.</p>
11998
+ * @type {string || null}
11890
11999
  */
11891
- this.Coords = null;
12000
+ this.Decision = null;
12001
+
12002
+ /**
12003
+ * <p>Reason for the current layer judgment</p>
12004
+ * @type {string || null}
12005
+ */
12006
+ this.DecisionMessage = null;
12007
+
12008
+ /**
12009
+ * <p>Time taken by the current layer</p><p>Unit: ms</p>
12010
+ * @type {number || null}
12011
+ */
12012
+ this.CostTime = null;
11892
12013
 
11893
12014
  }
11894
12015
 
@@ -11899,18 +12020,10 @@ class CoordsItem extends AbstractModel {
11899
12020
  if (!params) {
11900
12021
  return;
11901
12022
  }
11902
-
11903
- if (params.Polygon) {
11904
- let obj = new Polygon();
11905
- obj.deserialize(params.Polygon)
11906
- this.Polygon = obj;
11907
- }
11908
-
11909
- if (params.Coords) {
11910
- let obj = new ItemCoord();
11911
- obj.deserialize(params.Coords)
11912
- this.Coords = obj;
11913
- }
12023
+ this.StepKey = 'StepKey' in params ? params.StepKey : null;
12024
+ this.Decision = 'Decision' in params ? params.Decision : null;
12025
+ this.DecisionMessage = 'DecisionMessage' in params ? params.DecisionMessage : null;
12026
+ this.CostTime = 'CostTime' in params ? params.CostTime : null;
11914
12027
 
11915
12028
  }
11916
12029
  }
@@ -12262,6 +12375,55 @@ For a non-Tencent Cloud URL, the download speed and stability may be affected.
12262
12375
  }
12263
12376
  }
12264
12377
 
12378
+ /**
12379
+ * PODAuditAI request structure.
12380
+ * @class
12381
+ */
12382
+ class PODAuditAIRequest extends AbstractModel {
12383
+ constructor(){
12384
+ super();
12385
+
12386
+ /**
12387
+ * <p>The Base64 value of the image/PDF. The Base64 must be no more than 10M, resolution is recommended to be 600*800 or higher, and supports PNG, JPG, JPEG, BMP, PDF formats. Either ImageUrl or ImageBase64 of the image must be provided. If both are provided, only use ImageUrl. Example value: /9j/4AAQSkZJRg.....s97n//2Q==</p>
12388
+ * @type {Array.<string> || null}
12389
+ */
12390
+ this.ImageBase64List = null;
12391
+
12392
+ /**
12393
+ * <p>The Url address of the image/PDF. The image after Base64 encoding should be no more than 10M, with a resolution of 600*800 or higher, and supports PNG, JPG, JPEG, BMP, and PDF formats. The image download time should not exceed 3 seconds. Images stored in Tencent Cloud's Url can guarantee higher download speed and stability. It is recommended to store images in Tencent Cloud. The speed and stability of non-Tencent Cloud storage URLs may be impacted to a certain extent. Example value: https://ocr-demo-1254418846.cos.ap-guangzhou.myqcloud.com/general/GeneralAccurateOCR/GeneralAccurateOCR1.JPG</p>
12394
+ * @type {Array.<string> || null}
12395
+ */
12396
+ this.ImageUrlList = null;
12397
+
12398
+ /**
12399
+ * <p>Waybill number is used for pod rule review assistance</p>
12400
+ * @type {string || null}
12401
+ */
12402
+ this.WaybillNumber = null;
12403
+
12404
+ /**
12405
+ * <p>No The acknowledge type, 0 is selected by default</p><p>Enumeration value:</p><ul><li>0: Doorstep/yard</li><li>1: Parcel reception room</li><li>2: Myself/others acknowledge</li><li>3: Front desk/reception</li><li>4: Express delivery collection point</li><li>5: Express cabinet</li></ul>
12406
+ * @type {number || null}
12407
+ */
12408
+ this.SignType = null;
12409
+
12410
+ }
12411
+
12412
+ /**
12413
+ * @private
12414
+ */
12415
+ deserialize(params) {
12416
+ if (!params) {
12417
+ return;
12418
+ }
12419
+ this.ImageBase64List = 'ImageBase64List' in params ? params.ImageBase64List : null;
12420
+ this.ImageUrlList = 'ImageUrlList' in params ? params.ImageUrlList : null;
12421
+ this.WaybillNumber = 'WaybillNumber' in params ? params.WaybillNumber : null;
12422
+ this.SignType = 'SignType' in params ? params.SignType : null;
12423
+
12424
+ }
12425
+ }
12426
+
12265
12427
  /**
12266
12428
  * RecognizeThaiPinkCard request structure.
12267
12429
  * @class
@@ -12737,7 +12899,7 @@ module.exports = {
12737
12899
  PermitOCRResponse: PermitOCRResponse,
12738
12900
  RecognizeBrazilDriverLicenseOCRRequest: RecognizeBrazilDriverLicenseOCRRequest,
12739
12901
  Rect: Rect,
12740
- RecognizeMainlandIDCardOCRRequest: RecognizeMainlandIDCardOCRRequest,
12902
+ LicensePlateInfo: LicensePlateInfo,
12741
12903
  VatRollItem: VatRollItem,
12742
12904
  HmtResidentPermitOCRResponse: HmtResidentPermitOCRResponse,
12743
12905
  WordPolygon: WordPolygon,
@@ -12809,6 +12971,7 @@ module.exports = {
12809
12971
  GeneralAccurateOCRRequest: GeneralAccurateOCRRequest,
12810
12972
  UsedCarPurchaseInvoice: UsedCarPurchaseInvoice,
12811
12973
  RecognizeMacaoIDCardOCRRequest: RecognizeMacaoIDCardOCRRequest,
12974
+ CoordsItem: CoordsItem,
12812
12975
  NonTaxIncomeBill: NonTaxIncomeBill,
12813
12976
  MLIDPassportOCRResponse: MLIDPassportOCRResponse,
12814
12977
  AirTransport: AirTransport,
@@ -12825,7 +12988,7 @@ module.exports = {
12825
12988
  ConfigAdvanced: ConfigAdvanced,
12826
12989
  LineInfo: LineInfo,
12827
12990
  ItemCoord: ItemCoord,
12828
- LicensePlateInfo: LicensePlateInfo,
12991
+ RecognizeMainlandIDCardOCRRequest: RecognizeMainlandIDCardOCRRequest,
12829
12992
  VatInvoiceRoll: VatInvoiceRoll,
12830
12993
  ApplyCardVerificationExternalResponse: ApplyCardVerificationExternalResponse,
12831
12994
  Polygon: Polygon,
@@ -12841,6 +13004,7 @@ module.exports = {
12841
13004
  MainlandPermitOCRResponse: MainlandPermitOCRResponse,
12842
13005
  NonTaxItem: NonTaxItem,
12843
13006
  RecognizeMexicoVTIDRequest: RecognizeMexicoVTIDRequest,
13007
+ PODAuditAIResponse: PODAuditAIResponse,
12844
13008
  TollInvoice: TollInvoice,
12845
13009
  SmartStructuralProResponse: SmartStructuralProResponse,
12846
13010
  TableOCRResponse: TableOCRResponse,
@@ -12848,11 +13012,12 @@ module.exports = {
12848
13012
  RecognizeBrazilDriverLicenseOCRResponse: RecognizeBrazilDriverLicenseOCRResponse,
12849
13013
  BrazilCardInfo: BrazilCardInfo,
12850
13014
  RecognizeIndonesiaIDCardOCRRequest: RecognizeIndonesiaIDCardOCRRequest,
12851
- CoordsItem: CoordsItem,
13015
+ AnalyzedLog: AnalyzedLog,
12852
13016
  VinOCRRequest: VinOCRRequest,
12853
13017
  BrazilRNEInfo: BrazilRNEInfo,
12854
13018
  MLIDCardOCRResponse: MLIDCardOCRResponse,
12855
13019
  RecognizePhilippinesTinIDOCRRequest: RecognizePhilippinesTinIDOCRRequest,
13020
+ PODAuditAIRequest: PODAuditAIRequest,
12856
13021
  RecognizeThaiPinkCardRequest: RecognizeThaiPinkCardRequest,
12857
13022
  BankCardOCRResponse: BankCardOCRResponse,
12858
13023
  RecognizeThaiPinkCardResponse: RecognizeThaiPinkCardResponse,
@@ -33,7 +33,7 @@ const GetCardVerificationExternalResultResponse = models.GetCardVerificationExte
33
33
  const PermitOCRResponse = models.PermitOCRResponse;
34
34
  const RecognizeBrazilDriverLicenseOCRRequest = models.RecognizeBrazilDriverLicenseOCRRequest;
35
35
  const Rect = models.Rect;
36
- const RecognizeMainlandIDCardOCRRequest = models.RecognizeMainlandIDCardOCRRequest;
36
+ const LicensePlateInfo = models.LicensePlateInfo;
37
37
  const VatRollItem = models.VatRollItem;
38
38
  const HmtResidentPermitOCRResponse = models.HmtResidentPermitOCRResponse;
39
39
  const WordPolygon = models.WordPolygon;
@@ -105,6 +105,7 @@ const IDCardOCRRequest = models.IDCardOCRRequest;
105
105
  const GeneralAccurateOCRRequest = models.GeneralAccurateOCRRequest;
106
106
  const UsedCarPurchaseInvoice = models.UsedCarPurchaseInvoice;
107
107
  const RecognizeMacaoIDCardOCRRequest = models.RecognizeMacaoIDCardOCRRequest;
108
+ const CoordsItem = models.CoordsItem;
108
109
  const NonTaxIncomeBill = models.NonTaxIncomeBill;
109
110
  const MLIDPassportOCRResponse = models.MLIDPassportOCRResponse;
110
111
  const AirTransport = models.AirTransport;
@@ -121,7 +122,7 @@ const VatElectronicItemInfo = models.VatElectronicItemInfo;
121
122
  const ConfigAdvanced = models.ConfigAdvanced;
122
123
  const LineInfo = models.LineInfo;
123
124
  const ItemCoord = models.ItemCoord;
124
- const LicensePlateInfo = models.LicensePlateInfo;
125
+ const RecognizeMainlandIDCardOCRRequest = models.RecognizeMainlandIDCardOCRRequest;
125
126
  const VatInvoiceRoll = models.VatInvoiceRoll;
126
127
  const ApplyCardVerificationExternalResponse = models.ApplyCardVerificationExternalResponse;
127
128
  const Polygon = models.Polygon;
@@ -137,6 +138,7 @@ const RecognizeMainlandIDCardOCRResponse = models.RecognizeMainlandIDCardOCRResp
137
138
  const MainlandPermitOCRResponse = models.MainlandPermitOCRResponse;
138
139
  const NonTaxItem = models.NonTaxItem;
139
140
  const RecognizeMexicoVTIDRequest = models.RecognizeMexicoVTIDRequest;
141
+ const PODAuditAIResponse = models.PODAuditAIResponse;
140
142
  const TollInvoice = models.TollInvoice;
141
143
  const SmartStructuralProResponse = models.SmartStructuralProResponse;
142
144
  const TableOCRResponse = models.TableOCRResponse;
@@ -144,11 +146,12 @@ const DetectedWordCoordPoint = models.DetectedWordCoordPoint;
144
146
  const RecognizeBrazilDriverLicenseOCRResponse = models.RecognizeBrazilDriverLicenseOCRResponse;
145
147
  const BrazilCardInfo = models.BrazilCardInfo;
146
148
  const RecognizeIndonesiaIDCardOCRRequest = models.RecognizeIndonesiaIDCardOCRRequest;
147
- const CoordsItem = models.CoordsItem;
149
+ const AnalyzedLog = models.AnalyzedLog;
148
150
  const VinOCRRequest = models.VinOCRRequest;
149
151
  const BrazilRNEInfo = models.BrazilRNEInfo;
150
152
  const MLIDCardOCRResponse = models.MLIDCardOCRResponse;
151
153
  const RecognizePhilippinesTinIDOCRRequest = models.RecognizePhilippinesTinIDOCRRequest;
154
+ const PODAuditAIRequest = models.PODAuditAIRequest;
152
155
  const RecognizeThaiPinkCardRequest = models.RecognizeThaiPinkCardRequest;
153
156
  const BankCardOCRResponse = models.BankCardOCRResponse;
154
157
  const RecognizeThaiPinkCardResponse = models.RecognizeThaiPinkCardResponse;
@@ -1029,6 +1032,17 @@ Default API request rate limit: 5 requests/second.
1029
1032
  this.request("RecognizeIndonesiaIDCardOCR", req, resp, cb);
1030
1033
  }
1031
1034
 
1035
+ /**
1036
+ * The POD intelligent review deeply integrates multimodal large model image understanding technology, targeting the logistics last-mile delivery scenario to provide high-precision POD compliance audit service. The system auto-recognizes ticket imperfections and risks of non-compliance, helping businesses achieve standardized control in the delivery process and effectively avoid customer complaints and disputes caused by non-compliant credentials.
1037
+ * @param {PODAuditAIRequest} req
1038
+ * @param {function(string, PODAuditAIResponse):void} cb
1039
+ * @public
1040
+ */
1041
+ PODAuditAI(req, cb) {
1042
+ let resp = new PODAuditAIResponse();
1043
+ this.request("PODAuditAI", req, resp, cb);
1044
+ }
1045
+
1032
1046
  /**
1033
1047
  * This API is used to recognize a Philippine TIN ID card.
1034
1048
  * @param {RecognizePhilippinesTinIDOCRRequest} req
@@ -374,7 +374,7 @@ class SslClient extends AbstractClient {
374
374
  }
375
375
 
376
376
  /**
377
- * This API is used to update certificate content (certificate ID unchanged) and update associated Tencent Cloud resources. This is an asynchronous API. After calling, a DeployRecordId of 0 indicates that the task is in progress. Repeatedly request this API, and when DeployRecordId is greater than 0, it means the task has been successfully created. If the task is not successfully created, an exception will be thrown.
377
+ * This API requires contacting support to be whitelisted for use, and it only supports updating CLB resources related to certificates. This API is used to update certificate content (certificate ID unchanged) and update associated Tencent Cloud resources. This is an asynchronous API. After calling, a DeployRecordId of 0 indicates that the task is in progress. Repeatedly request this API, and when DeployRecordId is greater than 0, it means the task has been successfully created. If the task is not successfully created, an exception will be thrown.
378
378
  * @param {UploadUpdateCertificateInstanceRequest} req
379
379
  * @param {function(string, UploadUpdateCertificateInstanceResponse):void} cb
380
380
  * @public