tencentcloud-sdk-python 3.0.1277__py2.py3-none-any.whl → 3.0.1279__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/aiart_client.py +48 -0
  3. tencentcloud/aiart/v20221229/models.py +402 -21
  4. tencentcloud/batch/v20170312/models.py +19 -19
  5. tencentcloud/cam/v20190116/cam_client.py +23 -0
  6. tencentcloud/cam/v20190116/errorcodes.py +3 -0
  7. tencentcloud/cam/v20190116/models.py +111 -0
  8. tencentcloud/cfg/v20210820/models.py +15 -0
  9. tencentcloud/cfw/v20190904/models.py +2 -2
  10. tencentcloud/cloudapp/v20220530/errorcodes.py +6 -0
  11. tencentcloud/cloudaudit/v20190319/models.py +8 -8
  12. tencentcloud/cvm/v20170312/models.py +14 -14
  13. tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
  14. tencentcloud/cynosdb/v20190107/models.py +311 -30
  15. tencentcloud/dbbrain/v20210527/models.py +2 -2
  16. tencentcloud/emr/v20190103/emr_client.py +46 -0
  17. tencentcloud/emr/v20190103/errorcodes.py +33 -0
  18. tencentcloud/emr/v20190103/models.py +1283 -27
  19. tencentcloud/es/v20180416/models.py +171 -0
  20. tencentcloud/faceid/v20180301/errorcodes.py +3 -0
  21. tencentcloud/iotexplorer/v20190423/models.py +17 -0
  22. tencentcloud/ivld/v20210903/ivld_client.py +0 -1
  23. tencentcloud/lcic/v20220817/models.py +2 -2
  24. tencentcloud/lke/v20231130/lke_client.py +6 -2
  25. tencentcloud/mps/v20190612/models.py +110 -0
  26. tencentcloud/mqtt/v20240516/models.py +530 -0
  27. tencentcloud/mqtt/v20240516/mqtt_client.py +92 -0
  28. tencentcloud/ocr/v20181119/errorcodes.py +6 -0
  29. tencentcloud/ocr/v20181119/models.py +379 -4
  30. tencentcloud/postgres/v20170312/models.py +2 -2
  31. tencentcloud/tdmq/v20200217/tdmq_client.py +3 -1
  32. tencentcloud/tse/v20201207/errorcodes.py +3 -0
  33. tencentcloud/tse/v20201207/models.py +923 -37
  34. tencentcloud/tse/v20201207/tse_client.py +92 -0
  35. tencentcloud/vclm/v20240523/models.py +6 -6
  36. tencentcloud/vdb/v20230616/models.py +12 -0
  37. tencentcloud/vod/v20180717/models.py +41 -26
  38. tencentcloud/vpc/v20170312/errorcodes.py +3 -0
  39. tencentcloud/vpc/v20170312/models.py +1002 -40
  40. tencentcloud/vpc/v20170312/vpc_client.py +181 -3
  41. {tencentcloud_sdk_python-3.0.1277.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/METADATA +1 -1
  42. {tencentcloud_sdk_python-3.0.1277.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/RECORD +45 -45
  43. {tencentcloud_sdk_python-3.0.1277.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/LICENSE +0 -0
  44. {tencentcloud_sdk_python-3.0.1277.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/WHEEL +0 -0
  45. {tencentcloud_sdk_python-3.0.1277.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/top_level.txt +0 -0
@@ -686,6 +686,20 @@ class AirTransport(AbstractModel):
686
686
  :type QRCodeMark: int
687
687
  :param _FlightItems: 条目
688
688
  :type FlightItems: list of FlightItem
689
+ :param _PromptInformation: 提示信息
690
+ :type PromptInformation: str
691
+ :param _BuyerTaxID: 统一社会信用代码/纳税人识别号
692
+ :type BuyerTaxID: str
693
+ :param _Buyer: 购买方名称
694
+ :type Buyer: str
695
+ :param _ReceiptNumber: 发票号码
696
+ :type ReceiptNumber: str
697
+ :param _InvoiceStatus: 开票状态
698
+ :type InvoiceStatus: str
699
+ :param _TaxRate: 增值税税率
700
+ :type TaxRate: str
701
+ :param _TaxAmount: 增值税税额
702
+ :type TaxAmount: str
689
703
  """
690
704
  self._Title = None
691
705
  self._Number = None
@@ -711,6 +725,13 @@ class AirTransport(AbstractModel):
711
725
  self._Endorsement = None
712
726
  self._QRCodeMark = None
713
727
  self._FlightItems = None
728
+ self._PromptInformation = None
729
+ self._BuyerTaxID = None
730
+ self._Buyer = None
731
+ self._ReceiptNumber = None
732
+ self._InvoiceStatus = None
733
+ self._TaxRate = None
734
+ self._TaxAmount = None
714
735
 
715
736
  @property
716
737
  def Title(self):
@@ -976,6 +997,83 @@ class AirTransport(AbstractModel):
976
997
  def FlightItems(self, FlightItems):
977
998
  self._FlightItems = FlightItems
978
999
 
1000
+ @property
1001
+ def PromptInformation(self):
1002
+ """提示信息
1003
+ :rtype: str
1004
+ """
1005
+ return self._PromptInformation
1006
+
1007
+ @PromptInformation.setter
1008
+ def PromptInformation(self, PromptInformation):
1009
+ self._PromptInformation = PromptInformation
1010
+
1011
+ @property
1012
+ def BuyerTaxID(self):
1013
+ """统一社会信用代码/纳税人识别号
1014
+ :rtype: str
1015
+ """
1016
+ return self._BuyerTaxID
1017
+
1018
+ @BuyerTaxID.setter
1019
+ def BuyerTaxID(self, BuyerTaxID):
1020
+ self._BuyerTaxID = BuyerTaxID
1021
+
1022
+ @property
1023
+ def Buyer(self):
1024
+ """购买方名称
1025
+ :rtype: str
1026
+ """
1027
+ return self._Buyer
1028
+
1029
+ @Buyer.setter
1030
+ def Buyer(self, Buyer):
1031
+ self._Buyer = Buyer
1032
+
1033
+ @property
1034
+ def ReceiptNumber(self):
1035
+ """发票号码
1036
+ :rtype: str
1037
+ """
1038
+ return self._ReceiptNumber
1039
+
1040
+ @ReceiptNumber.setter
1041
+ def ReceiptNumber(self, ReceiptNumber):
1042
+ self._ReceiptNumber = ReceiptNumber
1043
+
1044
+ @property
1045
+ def InvoiceStatus(self):
1046
+ """开票状态
1047
+ :rtype: str
1048
+ """
1049
+ return self._InvoiceStatus
1050
+
1051
+ @InvoiceStatus.setter
1052
+ def InvoiceStatus(self, InvoiceStatus):
1053
+ self._InvoiceStatus = InvoiceStatus
1054
+
1055
+ @property
1056
+ def TaxRate(self):
1057
+ """增值税税率
1058
+ :rtype: str
1059
+ """
1060
+ return self._TaxRate
1061
+
1062
+ @TaxRate.setter
1063
+ def TaxRate(self, TaxRate):
1064
+ self._TaxRate = TaxRate
1065
+
1066
+ @property
1067
+ def TaxAmount(self):
1068
+ """增值税税额
1069
+ :rtype: str
1070
+ """
1071
+ return self._TaxAmount
1072
+
1073
+ @TaxAmount.setter
1074
+ def TaxAmount(self, TaxAmount):
1075
+ self._TaxAmount = TaxAmount
1076
+
979
1077
 
980
1078
  def _deserialize(self, params):
981
1079
  self._Title = params.get("Title")
@@ -1007,6 +1105,13 @@ class AirTransport(AbstractModel):
1007
1105
  obj = FlightItem()
1008
1106
  obj._deserialize(item)
1009
1107
  self._FlightItems.append(obj)
1108
+ self._PromptInformation = params.get("PromptInformation")
1109
+ self._BuyerTaxID = params.get("BuyerTaxID")
1110
+ self._Buyer = params.get("Buyer")
1111
+ self._ReceiptNumber = params.get("ReceiptNumber")
1112
+ self._InvoiceStatus = params.get("InvoiceStatus")
1113
+ self._TaxRate = params.get("TaxRate")
1114
+ self._TaxAmount = params.get("TaxAmount")
1010
1115
  memeber_set = set(params.keys())
1011
1116
  for name, value in vars(self).items():
1012
1117
  property_name = name[1:]
@@ -6934,6 +7039,8 @@ class ElectronicTrainTicketFull(AbstractModel):
6934
7039
  :type BuyerTaxID: str
6935
7040
  :param _OriginalNumber: 原发票号码
6936
7041
  :type OriginalNumber: str
7042
+ :param _IDInfo: 标识信息
7043
+ :type IDInfo: str
6937
7044
  """
6938
7045
  self._TypeOfVoucher = None
6939
7046
  self._ElectronicTicketNum = None
@@ -6955,6 +7062,7 @@ class ElectronicTrainTicketFull(AbstractModel):
6955
7062
  self._Buyer = None
6956
7063
  self._BuyerTaxID = None
6957
7064
  self._OriginalNumber = None
7065
+ self._IDInfo = None
6958
7066
 
6959
7067
  @property
6960
7068
  def TypeOfVoucher(self):
@@ -7176,6 +7284,17 @@ class ElectronicTrainTicketFull(AbstractModel):
7176
7284
  def OriginalNumber(self, OriginalNumber):
7177
7285
  self._OriginalNumber = OriginalNumber
7178
7286
 
7287
+ @property
7288
+ def IDInfo(self):
7289
+ """标识信息
7290
+ :rtype: str
7291
+ """
7292
+ return self._IDInfo
7293
+
7294
+ @IDInfo.setter
7295
+ def IDInfo(self, IDInfo):
7296
+ self._IDInfo = IDInfo
7297
+
7179
7298
 
7180
7299
  def _deserialize(self, params):
7181
7300
  self._TypeOfVoucher = params.get("TypeOfVoucher")
@@ -7198,6 +7317,7 @@ class ElectronicTrainTicketFull(AbstractModel):
7198
7317
  self._Buyer = params.get("Buyer")
7199
7318
  self._BuyerTaxID = params.get("BuyerTaxID")
7200
7319
  self._OriginalNumber = params.get("OriginalNumber")
7320
+ self._IDInfo = params.get("IDInfo")
7201
7321
  memeber_set = set(params.keys())
7202
7322
  for name, value in vars(self).items():
7203
7323
  property_name = name[1:]
@@ -14075,17 +14195,23 @@ class MLIDCardOCRRequest(AbstractModel):
14075
14195
  支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。
14076
14196
  支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。
14077
14197
  :type ImageBase64: str
14198
+ :param _BackImageBase64: 卡证背面图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
14199
+ :type BackImageBase64: str
14078
14200
  :param _ImageUrl: 图片的 Url 地址。( 中国地区之外不支持这个字段 )
14079
14201
  支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。
14080
14202
  支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。
14081
14203
  图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。
14082
14204
  非腾讯云存储的 Url 速度和稳定性可能受一定影响。
14083
14205
  :type ImageUrl: str
14206
+ :param _BackImageUrl: 卡证背面图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
14207
+ :type BackImageUrl: str
14084
14208
  :param _RetImage: 是否返回图片,默认false
14085
14209
  :type RetImage: bool
14086
14210
  """
14087
14211
  self._ImageBase64 = None
14212
+ self._BackImageBase64 = None
14088
14213
  self._ImageUrl = None
14214
+ self._BackImageUrl = None
14089
14215
  self._RetImage = None
14090
14216
 
14091
14217
  @property
@@ -14101,6 +14227,17 @@ class MLIDCardOCRRequest(AbstractModel):
14101
14227
  def ImageBase64(self, ImageBase64):
14102
14228
  self._ImageBase64 = ImageBase64
14103
14229
 
14230
+ @property
14231
+ def BackImageBase64(self):
14232
+ """卡证背面图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
14233
+ :rtype: str
14234
+ """
14235
+ return self._BackImageBase64
14236
+
14237
+ @BackImageBase64.setter
14238
+ def BackImageBase64(self, BackImageBase64):
14239
+ self._BackImageBase64 = BackImageBase64
14240
+
14104
14241
  @property
14105
14242
  def ImageUrl(self):
14106
14243
  """图片的 Url 地址。( 中国地区之外不支持这个字段 )
@@ -14116,6 +14253,17 @@ class MLIDCardOCRRequest(AbstractModel):
14116
14253
  def ImageUrl(self, ImageUrl):
14117
14254
  self._ImageUrl = ImageUrl
14118
14255
 
14256
+ @property
14257
+ def BackImageUrl(self):
14258
+ """卡证背面图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
14259
+ :rtype: str
14260
+ """
14261
+ return self._BackImageUrl
14262
+
14263
+ @BackImageUrl.setter
14264
+ def BackImageUrl(self, BackImageUrl):
14265
+ self._BackImageUrl = BackImageUrl
14266
+
14119
14267
  @property
14120
14268
  def RetImage(self):
14121
14269
  """是否返回图片,默认false
@@ -14130,7 +14278,9 @@ class MLIDCardOCRRequest(AbstractModel):
14130
14278
 
14131
14279
  def _deserialize(self, params):
14132
14280
  self._ImageBase64 = params.get("ImageBase64")
14281
+ self._BackImageBase64 = params.get("BackImageBase64")
14133
14282
  self._ImageUrl = params.get("ImageUrl")
14283
+ self._BackImageUrl = params.get("BackImageUrl")
14134
14284
  self._RetImage = params.get("RetImage")
14135
14285
  memeber_set = set(params.keys())
14136
14286
  for name, value in vars(self).items():
@@ -14184,6 +14334,8 @@ MyKid 儿童卡
14184
14334
  :type Type: str
14185
14335
  :param _Birthday: 出生日期(目前该字段仅支持IKAD劳工证、MyKad 身份证)
14186
14336
  :type Birthday: str
14337
+ :param _MyKadNumber: 马来身份证背面号码
14338
+ :type MyKadNumber: str
14187
14339
  :param _WarnCardInfos: 告警码
14188
14340
  -9101 证件边框不完整告警
14189
14341
  -9102 证件复印件告警
@@ -14205,6 +14357,7 @@ MyKid 儿童卡
14205
14357
  self._AdvancedInfo = None
14206
14358
  self._Type = None
14207
14359
  self._Birthday = None
14360
+ self._MyKadNumber = None
14208
14361
  self._WarnCardInfos = None
14209
14362
  self._RequestId = None
14210
14363
 
@@ -14328,6 +14481,17 @@ MyKid 儿童卡
14328
14481
  def Birthday(self, Birthday):
14329
14482
  self._Birthday = Birthday
14330
14483
 
14484
+ @property
14485
+ def MyKadNumber(self):
14486
+ """马来身份证背面号码
14487
+ :rtype: str
14488
+ """
14489
+ return self._MyKadNumber
14490
+
14491
+ @MyKadNumber.setter
14492
+ def MyKadNumber(self, MyKadNumber):
14493
+ self._MyKadNumber = MyKadNumber
14494
+
14331
14495
  @property
14332
14496
  def WarnCardInfos(self):
14333
14497
  """告警码
@@ -14368,6 +14532,7 @@ MyKid 儿童卡
14368
14532
  self._AdvancedInfo = params.get("AdvancedInfo")
14369
14533
  self._Type = params.get("Type")
14370
14534
  self._Birthday = params.get("Birthday")
14535
+ self._MyKadNumber = params.get("MyKadNumber")
14371
14536
  self._WarnCardInfos = params.get("WarnCardInfos")
14372
14537
  self._RequestId = params.get("RequestId")
14373
14538
 
@@ -28644,8 +28809,9 @@ class TableInfo(AbstractModel):
28644
28809
  :param _Cells: 单元格内容
28645
28810
  注意:此字段可能返回 null,表示取不到有效值。
28646
28811
  :type Cells: list of TableCellInfo
28647
- :param _Type: 图像中的文本块类型,0 为非表格文本,
28648
- 1 为有线表格,2 为无线表格
28812
+ :param _Type: 图像中的文本块类型:0为非表格文本、1为有线表格、2为无线表格,
28813
+ 有线表格:在表格内部,有横线/竖线纵跨整个表格的宽/高;
28814
+ 无线表格:在表格内部,无横线/竖线纵跨整个表格的宽/高。
28649
28815
  注意:此字段可能返回 null,表示取不到有效值。
28650
28816
  :type Type: int
28651
28817
  :param _TableCoordPoint: 表格主体四个顶点坐标(依次为左上角,
@@ -28671,8 +28837,9 @@ class TableInfo(AbstractModel):
28671
28837
 
28672
28838
  @property
28673
28839
  def Type(self):
28674
- """图像中的文本块类型,0 为非表格文本,
28675
- 1 为有线表格,2 为无线表格
28840
+ """图像中的文本块类型:0为非表格文本、1为有线表格、2为无线表格,
28841
+ 有线表格:在表格内部,有横线/竖线纵跨整个表格的宽/高;
28842
+ 无线表格:在表格内部,无横线/竖线纵跨整个表格的宽/高。
28676
28843
  注意:此字段可能返回 null,表示取不到有效值。
28677
28844
  :rtype: int
28678
28845
  """
@@ -30644,6 +30811,180 @@ class TextTable(AbstractModel):
30644
30811
 
30645
30812
 
30646
30813
 
30814
+ class TextTractorVehicleBack(AbstractModel):
30815
+ """拖拉机行驶证副页正面的识别结果
30816
+
30817
+ """
30818
+
30819
+ def __init__(self):
30820
+ r"""
30821
+ :param _PlateNo: 号牌号码
30822
+ 注意:此字段可能返回 null,表示取不到有效值。
30823
+ :type PlateNo: str
30824
+ :param _AllowNum: 准乘人数
30825
+ 注意:此字段可能返回 null,表示取不到有效值。
30826
+ :type AllowNum: str
30827
+ :param _CombineHarvesterQuality: 联合收割机质量
30828
+ 注意:此字段可能返回 null,表示取不到有效值。
30829
+ :type CombineHarvesterQuality: str
30830
+ :param _TractorMinUsageWeight: 拖拉机最小使用质量
30831
+ 注意:此字段可能返回 null,表示取不到有效值。
30832
+ :type TractorMinUsageWeight: str
30833
+ :param _TractorMaxAllowLoadCapacity: 拖拉机最大允许载质量
30834
+ 注意:此字段可能返回 null,表示取不到有效值。
30835
+ :type TractorMaxAllowLoadCapacity: str
30836
+ :param _ExternalSize: 外廓尺寸
30837
+ 注意:此字段可能返回 null,表示取不到有效值。
30838
+ :type ExternalSize: str
30839
+ :param _Record: 检验记录
30840
+ 注意:此字段可能返回 null,表示取不到有效值。
30841
+ :type Record: str
30842
+ :param _VehicleType: 类型
30843
+ 注意:此字段可能返回 null,表示取不到有效值。
30844
+ :type VehicleType: str
30845
+ :param _Address: 住址
30846
+ 注意:此字段可能返回 null,表示取不到有效值。
30847
+ :type Address: str
30848
+ """
30849
+ self._PlateNo = None
30850
+ self._AllowNum = None
30851
+ self._CombineHarvesterQuality = None
30852
+ self._TractorMinUsageWeight = None
30853
+ self._TractorMaxAllowLoadCapacity = None
30854
+ self._ExternalSize = None
30855
+ self._Record = None
30856
+ self._VehicleType = None
30857
+ self._Address = None
30858
+
30859
+ @property
30860
+ def PlateNo(self):
30861
+ """号牌号码
30862
+ 注意:此字段可能返回 null,表示取不到有效值。
30863
+ :rtype: str
30864
+ """
30865
+ return self._PlateNo
30866
+
30867
+ @PlateNo.setter
30868
+ def PlateNo(self, PlateNo):
30869
+ self._PlateNo = PlateNo
30870
+
30871
+ @property
30872
+ def AllowNum(self):
30873
+ """准乘人数
30874
+ 注意:此字段可能返回 null,表示取不到有效值。
30875
+ :rtype: str
30876
+ """
30877
+ return self._AllowNum
30878
+
30879
+ @AllowNum.setter
30880
+ def AllowNum(self, AllowNum):
30881
+ self._AllowNum = AllowNum
30882
+
30883
+ @property
30884
+ def CombineHarvesterQuality(self):
30885
+ """联合收割机质量
30886
+ 注意:此字段可能返回 null,表示取不到有效值。
30887
+ :rtype: str
30888
+ """
30889
+ return self._CombineHarvesterQuality
30890
+
30891
+ @CombineHarvesterQuality.setter
30892
+ def CombineHarvesterQuality(self, CombineHarvesterQuality):
30893
+ self._CombineHarvesterQuality = CombineHarvesterQuality
30894
+
30895
+ @property
30896
+ def TractorMinUsageWeight(self):
30897
+ """拖拉机最小使用质量
30898
+ 注意:此字段可能返回 null,表示取不到有效值。
30899
+ :rtype: str
30900
+ """
30901
+ return self._TractorMinUsageWeight
30902
+
30903
+ @TractorMinUsageWeight.setter
30904
+ def TractorMinUsageWeight(self, TractorMinUsageWeight):
30905
+ self._TractorMinUsageWeight = TractorMinUsageWeight
30906
+
30907
+ @property
30908
+ def TractorMaxAllowLoadCapacity(self):
30909
+ """拖拉机最大允许载质量
30910
+ 注意:此字段可能返回 null,表示取不到有效值。
30911
+ :rtype: str
30912
+ """
30913
+ return self._TractorMaxAllowLoadCapacity
30914
+
30915
+ @TractorMaxAllowLoadCapacity.setter
30916
+ def TractorMaxAllowLoadCapacity(self, TractorMaxAllowLoadCapacity):
30917
+ self._TractorMaxAllowLoadCapacity = TractorMaxAllowLoadCapacity
30918
+
30919
+ @property
30920
+ def ExternalSize(self):
30921
+ """外廓尺寸
30922
+ 注意:此字段可能返回 null,表示取不到有效值。
30923
+ :rtype: str
30924
+ """
30925
+ return self._ExternalSize
30926
+
30927
+ @ExternalSize.setter
30928
+ def ExternalSize(self, ExternalSize):
30929
+ self._ExternalSize = ExternalSize
30930
+
30931
+ @property
30932
+ def Record(self):
30933
+ """检验记录
30934
+ 注意:此字段可能返回 null,表示取不到有效值。
30935
+ :rtype: str
30936
+ """
30937
+ return self._Record
30938
+
30939
+ @Record.setter
30940
+ def Record(self, Record):
30941
+ self._Record = Record
30942
+
30943
+ @property
30944
+ def VehicleType(self):
30945
+ """类型
30946
+ 注意:此字段可能返回 null,表示取不到有效值。
30947
+ :rtype: str
30948
+ """
30949
+ return self._VehicleType
30950
+
30951
+ @VehicleType.setter
30952
+ def VehicleType(self, VehicleType):
30953
+ self._VehicleType = VehicleType
30954
+
30955
+ @property
30956
+ def Address(self):
30957
+ """住址
30958
+ 注意:此字段可能返回 null,表示取不到有效值。
30959
+ :rtype: str
30960
+ """
30961
+ return self._Address
30962
+
30963
+ @Address.setter
30964
+ def Address(self, Address):
30965
+ self._Address = Address
30966
+
30967
+
30968
+ def _deserialize(self, params):
30969
+ self._PlateNo = params.get("PlateNo")
30970
+ self._AllowNum = params.get("AllowNum")
30971
+ self._CombineHarvesterQuality = params.get("CombineHarvesterQuality")
30972
+ self._TractorMinUsageWeight = params.get("TractorMinUsageWeight")
30973
+ self._TractorMaxAllowLoadCapacity = params.get("TractorMaxAllowLoadCapacity")
30974
+ self._ExternalSize = params.get("ExternalSize")
30975
+ self._Record = params.get("Record")
30976
+ self._VehicleType = params.get("VehicleType")
30977
+ self._Address = params.get("Address")
30978
+ memeber_set = set(params.keys())
30979
+ for name, value in vars(self).items():
30980
+ property_name = name[1:]
30981
+ if property_name in memeber_set:
30982
+ memeber_set.remove(property_name)
30983
+ if len(memeber_set) > 0:
30984
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
30985
+
30986
+
30987
+
30647
30988
  class TextVatInvoice(AbstractModel):
30648
30989
  """增值税发票识别结果
30649
30990
 
@@ -37885,10 +38226,13 @@ BACK 为行驶证副页正面(有号码号牌的一面),
37885
38226
  DOUBLE 为行驶证主页正面和副页正面。
37886
38227
  默认值为:FRONT。
37887
38228
  :type CardSide: str
38229
+ :param _TractorCardSide: FRONT为行驶证主页正面(有红色印章的一面),BACK 为拖拉机行驶证副页正面识别
38230
+ :type TractorCardSide: str
37888
38231
  """
37889
38232
  self._ImageBase64 = None
37890
38233
  self._ImageUrl = None
37891
38234
  self._CardSide = None
38235
+ self._TractorCardSide = None
37892
38236
 
37893
38237
  @property
37894
38238
  def ImageBase64(self):
@@ -37928,11 +38272,23 @@ DOUBLE 为行驶证主页正面和副页正面。
37928
38272
  def CardSide(self, CardSide):
37929
38273
  self._CardSide = CardSide
37930
38274
 
38275
+ @property
38276
+ def TractorCardSide(self):
38277
+ """FRONT为行驶证主页正面(有红色印章的一面),BACK 为拖拉机行驶证副页正面识别
38278
+ :rtype: str
38279
+ """
38280
+ return self._TractorCardSide
38281
+
38282
+ @TractorCardSide.setter
38283
+ def TractorCardSide(self, TractorCardSide):
38284
+ self._TractorCardSide = TractorCardSide
38285
+
37931
38286
 
37932
38287
  def _deserialize(self, params):
37933
38288
  self._ImageBase64 = params.get("ImageBase64")
37934
38289
  self._ImageUrl = params.get("ImageUrl")
37935
38290
  self._CardSide = params.get("CardSide")
38291
+ self._TractorCardSide = params.get("TractorCardSide")
37936
38292
  memeber_set = set(params.keys())
37937
38293
  for name, value in vars(self).items():
37938
38294
  property_name = name[1:]
@@ -37974,6 +38330,9 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
37974
38330
  :type RecognizeWarnMsg: list of str
37975
38331
  :param _VehicleLicenseType: 行驶证类型 电子行驶证:Electronic 普通行驶证:Normal
37976
38332
  :type VehicleLicenseType: str
38333
+ :param _TractorBackInfo: 拖拉机行驶证副页正面的识别结果,CardSide 为 BACK。
38334
+ 注意:此字段可能返回 null,表示取不到有效值。
38335
+ :type TractorBackInfo: :class:`tencentcloud.ocr.v20181119.models.TextTractorVehicleBack`
37977
38336
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
37978
38337
  :type RequestId: str
37979
38338
  """
@@ -37982,6 +38341,7 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
37982
38341
  self._RecognizeWarnCode = None
37983
38342
  self._RecognizeWarnMsg = None
37984
38343
  self._VehicleLicenseType = None
38344
+ self._TractorBackInfo = None
37985
38345
  self._RequestId = None
37986
38346
 
37987
38347
  @property
@@ -38053,6 +38413,18 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
38053
38413
  def VehicleLicenseType(self, VehicleLicenseType):
38054
38414
  self._VehicleLicenseType = VehicleLicenseType
38055
38415
 
38416
+ @property
38417
+ def TractorBackInfo(self):
38418
+ """拖拉机行驶证副页正面的识别结果,CardSide 为 BACK。
38419
+ 注意:此字段可能返回 null,表示取不到有效值。
38420
+ :rtype: :class:`tencentcloud.ocr.v20181119.models.TextTractorVehicleBack`
38421
+ """
38422
+ return self._TractorBackInfo
38423
+
38424
+ @TractorBackInfo.setter
38425
+ def TractorBackInfo(self, TractorBackInfo):
38426
+ self._TractorBackInfo = TractorBackInfo
38427
+
38056
38428
  @property
38057
38429
  def RequestId(self):
38058
38430
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -38075,6 +38447,9 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
38075
38447
  self._RecognizeWarnCode = params.get("RecognizeWarnCode")
38076
38448
  self._RecognizeWarnMsg = params.get("RecognizeWarnMsg")
38077
38449
  self._VehicleLicenseType = params.get("VehicleLicenseType")
38450
+ if params.get("TractorBackInfo") is not None:
38451
+ self._TractorBackInfo = TextTractorVehicleBack()
38452
+ self._TractorBackInfo._deserialize(params.get("TractorBackInfo"))
38078
38453
  self._RequestId = params.get("RequestId")
38079
38454
 
38080
38455
 
@@ -18673,7 +18673,7 @@ class RestoreDBInstanceObjectsRequest(AbstractModel):
18673
18673
  r"""
18674
18674
  :param _DBInstanceId: 实例ID。
18675
18675
  :type DBInstanceId: str
18676
- :param _RestoreObjects: 需要恢复的对象列表。假设需要恢复的对象名为test,则恢复后的名称为test_bak_${LinuxTime}。${LinuxTime}无法指定,由系统根据任务发起的linux时间设定。
18676
+ :param _RestoreObjects: 需要恢复的对象列表。假设需要恢复的对象名为user,则恢复后的名称为user_bak_${LinuxTime}。${LinuxTime}无法指定,由系统根据任务发起的linux时间设定。
18677
18677
  :type RestoreObjects: list of str
18678
18678
  :param _BackupSetId: 恢复所用备份集。BackupSetId与RestoreTargetTime有且只能传一个。
18679
18679
  :type BackupSetId: str
@@ -18698,7 +18698,7 @@ class RestoreDBInstanceObjectsRequest(AbstractModel):
18698
18698
 
18699
18699
  @property
18700
18700
  def RestoreObjects(self):
18701
- """需要恢复的对象列表。假设需要恢复的对象名为test,则恢复后的名称为test_bak_${LinuxTime}。${LinuxTime}无法指定,由系统根据任务发起的linux时间设定。
18701
+ """需要恢复的对象列表。假设需要恢复的对象名为user,则恢复后的名称为user_bak_${LinuxTime}。${LinuxTime}无法指定,由系统根据任务发起的linux时间设定。
18702
18702
  :rtype: list of str
18703
18703
  """
18704
18704
  return self._RestoreObjects
@@ -1800,7 +1800,9 @@ class TdmqClient(AbstractClient):
1800
1800
 
1801
1801
 
1802
1802
  def DescribeRabbitMQVirtualHostList(self, request):
1803
- """RabbitMQ专享版查询虚拟主机列表
1803
+ """消息队列TDMQ RabbitMQ 有一个存量旧接口没下线,目前实际上已经不在产品中使用:DescribeRabbitMQVirtualHostList,这个接口很久前已经被 DescribeRabbitMQVirtualHost 替换掉。已无用户在调用。
1804
+
1805
+ RabbitMQ专享版查询虚拟主机列表
1804
1806
 
1805
1807
  :param request: Request instance for DescribeRabbitMQVirtualHostList.
1806
1808
  :type request: :class:`tencentcloud.tdmq.v20200217.models.DescribeRabbitMQVirtualHostListRequest`
@@ -167,6 +167,9 @@ OPERATIONDENIED = 'OperationDenied'
167
167
  # 不允许的操作。
168
168
  OPERATIONDENIED_OPERATIONDENIED = 'OperationDenied.OperationDenied'
169
169
 
170
+ # 服务来源与服务关联。
171
+ RESOURCEINUSE_GATEWAYSERVICESOURCEEXISTSERVICE = 'ResourceInUse.GatewayServiceSourceExistService'
172
+
170
173
  # 服务下存在实例,无法删除。
171
174
  RESOURCEINUSE_INSTANCESEXISTEDINSERVICE = 'ResourceInUse.InstancesExistedInService'
172
175