tencentcloud-sdk-python 3.0.1278__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/aiart_client.py +24 -0
- tencentcloud/aiart/v20221229/models.py +201 -0
- tencentcloud/cam/v20190116/cam_client.py +23 -0
- tencentcloud/cam/v20190116/errorcodes.py +3 -0
- tencentcloud/cam/v20190116/models.py +111 -0
- tencentcloud/cfg/v20210820/models.py +15 -0
- tencentcloud/cloudaudit/v20190319/models.py +8 -8
- tencentcloud/cvm/v20170312/models.py +14 -14
- tencentcloud/es/v20180416/models.py +171 -0
- tencentcloud/faceid/v20180301/errorcodes.py +3 -0
- tencentcloud/mps/v20190612/models.py +17 -0
- tencentcloud/mqtt/v20240516/models.py +530 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +92 -0
- tencentcloud/ocr/v20181119/models.py +253 -0
- tencentcloud/tse/v20201207/errorcodes.py +3 -0
- tencentcloud/tse/v20201207/models.py +923 -37
- tencentcloud/tse/v20201207/tse_client.py +92 -0
- tencentcloud/vdb/v20230616/models.py +12 -0
- tencentcloud/vpc/v20170312/models.py +20 -0
- {tencentcloud_sdk_python-3.0.1278.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1278.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/RECORD +25 -25
- {tencentcloud_sdk_python-3.0.1278.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1278.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1278.dist-info → tencentcloud_sdk_python-3.0.1279.dist-info}/top_level.txt +0 -0
@@ -14195,17 +14195,23 @@ class MLIDCardOCRRequest(AbstractModel):
|
|
14195
14195
|
支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。
|
14196
14196
|
支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。
|
14197
14197
|
:type ImageBase64: str
|
14198
|
+
:param _BackImageBase64: 卡证背面图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
14199
|
+
:type BackImageBase64: str
|
14198
14200
|
:param _ImageUrl: 图片的 Url 地址。( 中国地区之外不支持这个字段 )
|
14199
14201
|
支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。
|
14200
14202
|
支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。
|
14201
14203
|
图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。
|
14202
14204
|
非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
14203
14205
|
:type ImageUrl: str
|
14206
|
+
:param _BackImageUrl: 卡证背面图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
14207
|
+
:type BackImageUrl: str
|
14204
14208
|
:param _RetImage: 是否返回图片,默认false
|
14205
14209
|
:type RetImage: bool
|
14206
14210
|
"""
|
14207
14211
|
self._ImageBase64 = None
|
14212
|
+
self._BackImageBase64 = None
|
14208
14213
|
self._ImageUrl = None
|
14214
|
+
self._BackImageUrl = None
|
14209
14215
|
self._RetImage = None
|
14210
14216
|
|
14211
14217
|
@property
|
@@ -14221,6 +14227,17 @@ class MLIDCardOCRRequest(AbstractModel):
|
|
14221
14227
|
def ImageBase64(self, ImageBase64):
|
14222
14228
|
self._ImageBase64 = ImageBase64
|
14223
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
|
+
|
14224
14241
|
@property
|
14225
14242
|
def ImageUrl(self):
|
14226
14243
|
"""图片的 Url 地址。( 中国地区之外不支持这个字段 )
|
@@ -14236,6 +14253,17 @@ class MLIDCardOCRRequest(AbstractModel):
|
|
14236
14253
|
def ImageUrl(self, ImageUrl):
|
14237
14254
|
self._ImageUrl = ImageUrl
|
14238
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
|
+
|
14239
14267
|
@property
|
14240
14268
|
def RetImage(self):
|
14241
14269
|
"""是否返回图片,默认false
|
@@ -14250,7 +14278,9 @@ class MLIDCardOCRRequest(AbstractModel):
|
|
14250
14278
|
|
14251
14279
|
def _deserialize(self, params):
|
14252
14280
|
self._ImageBase64 = params.get("ImageBase64")
|
14281
|
+
self._BackImageBase64 = params.get("BackImageBase64")
|
14253
14282
|
self._ImageUrl = params.get("ImageUrl")
|
14283
|
+
self._BackImageUrl = params.get("BackImageUrl")
|
14254
14284
|
self._RetImage = params.get("RetImage")
|
14255
14285
|
memeber_set = set(params.keys())
|
14256
14286
|
for name, value in vars(self).items():
|
@@ -14304,6 +14334,8 @@ MyKid 儿童卡
|
|
14304
14334
|
:type Type: str
|
14305
14335
|
:param _Birthday: 出生日期(目前该字段仅支持IKAD劳工证、MyKad 身份证)
|
14306
14336
|
:type Birthday: str
|
14337
|
+
:param _MyKadNumber: 马来身份证背面号码
|
14338
|
+
:type MyKadNumber: str
|
14307
14339
|
:param _WarnCardInfos: 告警码
|
14308
14340
|
-9101 证件边框不完整告警
|
14309
14341
|
-9102 证件复印件告警
|
@@ -14325,6 +14357,7 @@ MyKid 儿童卡
|
|
14325
14357
|
self._AdvancedInfo = None
|
14326
14358
|
self._Type = None
|
14327
14359
|
self._Birthday = None
|
14360
|
+
self._MyKadNumber = None
|
14328
14361
|
self._WarnCardInfos = None
|
14329
14362
|
self._RequestId = None
|
14330
14363
|
|
@@ -14448,6 +14481,17 @@ MyKid 儿童卡
|
|
14448
14481
|
def Birthday(self, Birthday):
|
14449
14482
|
self._Birthday = Birthday
|
14450
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
|
+
|
14451
14495
|
@property
|
14452
14496
|
def WarnCardInfos(self):
|
14453
14497
|
"""告警码
|
@@ -14488,6 +14532,7 @@ MyKid 儿童卡
|
|
14488
14532
|
self._AdvancedInfo = params.get("AdvancedInfo")
|
14489
14533
|
self._Type = params.get("Type")
|
14490
14534
|
self._Birthday = params.get("Birthday")
|
14535
|
+
self._MyKadNumber = params.get("MyKadNumber")
|
14491
14536
|
self._WarnCardInfos = params.get("WarnCardInfos")
|
14492
14537
|
self._RequestId = params.get("RequestId")
|
14493
14538
|
|
@@ -30766,6 +30811,180 @@ class TextTable(AbstractModel):
|
|
30766
30811
|
|
30767
30812
|
|
30768
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
|
+
|
30769
30988
|
class TextVatInvoice(AbstractModel):
|
30770
30989
|
"""增值税发票识别结果
|
30771
30990
|
|
@@ -38007,10 +38226,13 @@ BACK 为行驶证副页正面(有号码号牌的一面),
|
|
38007
38226
|
DOUBLE 为行驶证主页正面和副页正面。
|
38008
38227
|
默认值为:FRONT。
|
38009
38228
|
:type CardSide: str
|
38229
|
+
:param _TractorCardSide: FRONT为行驶证主页正面(有红色印章的一面),BACK 为拖拉机行驶证副页正面识别
|
38230
|
+
:type TractorCardSide: str
|
38010
38231
|
"""
|
38011
38232
|
self._ImageBase64 = None
|
38012
38233
|
self._ImageUrl = None
|
38013
38234
|
self._CardSide = None
|
38235
|
+
self._TractorCardSide = None
|
38014
38236
|
|
38015
38237
|
@property
|
38016
38238
|
def ImageBase64(self):
|
@@ -38050,11 +38272,23 @@ DOUBLE 为行驶证主页正面和副页正面。
|
|
38050
38272
|
def CardSide(self, CardSide):
|
38051
38273
|
self._CardSide = CardSide
|
38052
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
|
+
|
38053
38286
|
|
38054
38287
|
def _deserialize(self, params):
|
38055
38288
|
self._ImageBase64 = params.get("ImageBase64")
|
38056
38289
|
self._ImageUrl = params.get("ImageUrl")
|
38057
38290
|
self._CardSide = params.get("CardSide")
|
38291
|
+
self._TractorCardSide = params.get("TractorCardSide")
|
38058
38292
|
memeber_set = set(params.keys())
|
38059
38293
|
for name, value in vars(self).items():
|
38060
38294
|
property_name = name[1:]
|
@@ -38096,6 +38330,9 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
|
|
38096
38330
|
:type RecognizeWarnMsg: list of str
|
38097
38331
|
:param _VehicleLicenseType: 行驶证类型 电子行驶证:Electronic 普通行驶证:Normal
|
38098
38332
|
:type VehicleLicenseType: str
|
38333
|
+
:param _TractorBackInfo: 拖拉机行驶证副页正面的识别结果,CardSide 为 BACK。
|
38334
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38335
|
+
:type TractorBackInfo: :class:`tencentcloud.ocr.v20181119.models.TextTractorVehicleBack`
|
38099
38336
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
38100
38337
|
:type RequestId: str
|
38101
38338
|
"""
|
@@ -38104,6 +38341,7 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
|
|
38104
38341
|
self._RecognizeWarnCode = None
|
38105
38342
|
self._RecognizeWarnMsg = None
|
38106
38343
|
self._VehicleLicenseType = None
|
38344
|
+
self._TractorBackInfo = None
|
38107
38345
|
self._RequestId = None
|
38108
38346
|
|
38109
38347
|
@property
|
@@ -38175,6 +38413,18 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
|
|
38175
38413
|
def VehicleLicenseType(self, VehicleLicenseType):
|
38176
38414
|
self._VehicleLicenseType = VehicleLicenseType
|
38177
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
|
+
|
38178
38428
|
@property
|
38179
38429
|
def RequestId(self):
|
38180
38430
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -38197,6 +38447,9 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
|
|
38197
38447
|
self._RecognizeWarnCode = params.get("RecognizeWarnCode")
|
38198
38448
|
self._RecognizeWarnMsg = params.get("RecognizeWarnMsg")
|
38199
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"))
|
38200
38453
|
self._RequestId = params.get("RequestId")
|
38201
38454
|
|
38202
38455
|
|
@@ -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
|
|