tencentcloud-sdk-python 3.0.1416__py2.py3-none-any.whl → 3.0.1418__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/ai3d/__init__.py +0 -0
- tencentcloud/ai3d/v20250513/__init__.py +0 -0
- tencentcloud/ai3d/v20250513/ai3d_client.py +74 -0
- tencentcloud/ai3d/v20250513/errorcodes.py +15 -0
- tencentcloud/ai3d/v20250513/models.py +461 -0
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cdb/v20170320/cdb_client.py +2 -2
- tencentcloud/cdb/v20170320/models.py +46 -36
- tencentcloud/cvm/v20170312/models.py +156 -0
- tencentcloud/cwp/v20180228/models.py +197 -2
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +84 -0
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/emr/v20190103/models.py +30 -0
- tencentcloud/gs/v20191118/gs_client.py +1 -1
- tencentcloud/gs/v20191118/models.py +169 -23
- tencentcloud/ioa/v20220601/ioa_client.py +23 -0
- tencentcloud/ioa/v20220601/models.py +297 -0
- tencentcloud/mariadb/v20170312/models.py +45 -0
- tencentcloud/ocr/v20181119/models.py +55 -0
- tencentcloud/wedata/v20210820/models.py +17 -0
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/RECORD +27 -22
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1418.dist-info}/top_level.txt +0 -0
@@ -2095,6 +2095,192 @@ class DescribeDeviceInfoRspData(AbstractModel):
|
|
2095
2095
|
|
2096
2096
|
|
2097
2097
|
|
2098
|
+
class DescribeDeviceVirtualGroupsPageRsp(AbstractModel):
|
2099
|
+
"""查询返回终端自定义分组的Data数据
|
2100
|
+
|
2101
|
+
"""
|
2102
|
+
|
2103
|
+
def __init__(self):
|
2104
|
+
r"""
|
2105
|
+
:param _Page: 分页公共对象
|
2106
|
+
:type Page: :class:`tencentcloud.ioa.v20220601.models.Paging`
|
2107
|
+
:param _Items: 终端自定义分组列表数据
|
2108
|
+
:type Items: list of DeviceVirtualDeviceGroupsDetail
|
2109
|
+
"""
|
2110
|
+
self._Page = None
|
2111
|
+
self._Items = None
|
2112
|
+
|
2113
|
+
@property
|
2114
|
+
def Page(self):
|
2115
|
+
"""分页公共对象
|
2116
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.Paging`
|
2117
|
+
"""
|
2118
|
+
return self._Page
|
2119
|
+
|
2120
|
+
@Page.setter
|
2121
|
+
def Page(self, Page):
|
2122
|
+
self._Page = Page
|
2123
|
+
|
2124
|
+
@property
|
2125
|
+
def Items(self):
|
2126
|
+
"""终端自定义分组列表数据
|
2127
|
+
:rtype: list of DeviceVirtualDeviceGroupsDetail
|
2128
|
+
"""
|
2129
|
+
return self._Items
|
2130
|
+
|
2131
|
+
@Items.setter
|
2132
|
+
def Items(self, Items):
|
2133
|
+
self._Items = Items
|
2134
|
+
|
2135
|
+
|
2136
|
+
def _deserialize(self, params):
|
2137
|
+
if params.get("Page") is not None:
|
2138
|
+
self._Page = Paging()
|
2139
|
+
self._Page._deserialize(params.get("Page"))
|
2140
|
+
if params.get("Items") is not None:
|
2141
|
+
self._Items = []
|
2142
|
+
for item in params.get("Items"):
|
2143
|
+
obj = DeviceVirtualDeviceGroupsDetail()
|
2144
|
+
obj._deserialize(item)
|
2145
|
+
self._Items.append(obj)
|
2146
|
+
memeber_set = set(params.keys())
|
2147
|
+
for name, value in vars(self).items():
|
2148
|
+
property_name = name[1:]
|
2149
|
+
if property_name in memeber_set:
|
2150
|
+
memeber_set.remove(property_name)
|
2151
|
+
if len(memeber_set) > 0:
|
2152
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2153
|
+
|
2154
|
+
|
2155
|
+
|
2156
|
+
class DescribeDeviceVirtualGroupsRequest(AbstractModel):
|
2157
|
+
"""DescribeDeviceVirtualGroups请求参数结构体
|
2158
|
+
|
2159
|
+
"""
|
2160
|
+
|
2161
|
+
def __init__(self):
|
2162
|
+
r"""
|
2163
|
+
:param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
2164
|
+
:type DomainInstanceId: str
|
2165
|
+
:param _Condition: 滤条件、分页参数 <li>Name - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li> <li>DeviceVirtualGroupName - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li>
|
2166
|
+
:type Condition: :class:`tencentcloud.ioa.v20220601.models.Condition`
|
2167
|
+
:param _OsType: 必填,系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
|
2168
|
+
:type OsType: int
|
2169
|
+
:param _VirtualGroupIds: 非必填,自定义分组ids
|
2170
|
+
:type VirtualGroupIds: list of int
|
2171
|
+
"""
|
2172
|
+
self._DomainInstanceId = None
|
2173
|
+
self._Condition = None
|
2174
|
+
self._OsType = None
|
2175
|
+
self._VirtualGroupIds = None
|
2176
|
+
|
2177
|
+
@property
|
2178
|
+
def DomainInstanceId(self):
|
2179
|
+
"""管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
2180
|
+
:rtype: str
|
2181
|
+
"""
|
2182
|
+
return self._DomainInstanceId
|
2183
|
+
|
2184
|
+
@DomainInstanceId.setter
|
2185
|
+
def DomainInstanceId(self, DomainInstanceId):
|
2186
|
+
self._DomainInstanceId = DomainInstanceId
|
2187
|
+
|
2188
|
+
@property
|
2189
|
+
def Condition(self):
|
2190
|
+
"""滤条件、分页参数 <li>Name - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li> <li>DeviceVirtualGroupName - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li>
|
2191
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.Condition`
|
2192
|
+
"""
|
2193
|
+
return self._Condition
|
2194
|
+
|
2195
|
+
@Condition.setter
|
2196
|
+
def Condition(self, Condition):
|
2197
|
+
self._Condition = Condition
|
2198
|
+
|
2199
|
+
@property
|
2200
|
+
def OsType(self):
|
2201
|
+
"""必填,系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
|
2202
|
+
:rtype: int
|
2203
|
+
"""
|
2204
|
+
return self._OsType
|
2205
|
+
|
2206
|
+
@OsType.setter
|
2207
|
+
def OsType(self, OsType):
|
2208
|
+
self._OsType = OsType
|
2209
|
+
|
2210
|
+
@property
|
2211
|
+
def VirtualGroupIds(self):
|
2212
|
+
"""非必填,自定义分组ids
|
2213
|
+
:rtype: list of int
|
2214
|
+
"""
|
2215
|
+
return self._VirtualGroupIds
|
2216
|
+
|
2217
|
+
@VirtualGroupIds.setter
|
2218
|
+
def VirtualGroupIds(self, VirtualGroupIds):
|
2219
|
+
self._VirtualGroupIds = VirtualGroupIds
|
2220
|
+
|
2221
|
+
|
2222
|
+
def _deserialize(self, params):
|
2223
|
+
self._DomainInstanceId = params.get("DomainInstanceId")
|
2224
|
+
if params.get("Condition") is not None:
|
2225
|
+
self._Condition = Condition()
|
2226
|
+
self._Condition._deserialize(params.get("Condition"))
|
2227
|
+
self._OsType = params.get("OsType")
|
2228
|
+
self._VirtualGroupIds = params.get("VirtualGroupIds")
|
2229
|
+
memeber_set = set(params.keys())
|
2230
|
+
for name, value in vars(self).items():
|
2231
|
+
property_name = name[1:]
|
2232
|
+
if property_name in memeber_set:
|
2233
|
+
memeber_set.remove(property_name)
|
2234
|
+
if len(memeber_set) > 0:
|
2235
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2236
|
+
|
2237
|
+
|
2238
|
+
|
2239
|
+
class DescribeDeviceVirtualGroupsResponse(AbstractModel):
|
2240
|
+
"""DescribeDeviceVirtualGroups返回参数结构体
|
2241
|
+
|
2242
|
+
"""
|
2243
|
+
|
2244
|
+
def __init__(self):
|
2245
|
+
r"""
|
2246
|
+
:param _Data: 查询终端自定义分组的Data数据
|
2247
|
+
:type Data: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceVirtualGroupsPageRsp`
|
2248
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2249
|
+
:type RequestId: str
|
2250
|
+
"""
|
2251
|
+
self._Data = None
|
2252
|
+
self._RequestId = None
|
2253
|
+
|
2254
|
+
@property
|
2255
|
+
def Data(self):
|
2256
|
+
"""查询终端自定义分组的Data数据
|
2257
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceVirtualGroupsPageRsp`
|
2258
|
+
"""
|
2259
|
+
return self._Data
|
2260
|
+
|
2261
|
+
@Data.setter
|
2262
|
+
def Data(self, Data):
|
2263
|
+
self._Data = Data
|
2264
|
+
|
2265
|
+
@property
|
2266
|
+
def RequestId(self):
|
2267
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2268
|
+
:rtype: str
|
2269
|
+
"""
|
2270
|
+
return self._RequestId
|
2271
|
+
|
2272
|
+
@RequestId.setter
|
2273
|
+
def RequestId(self, RequestId):
|
2274
|
+
self._RequestId = RequestId
|
2275
|
+
|
2276
|
+
|
2277
|
+
def _deserialize(self, params):
|
2278
|
+
if params.get("Data") is not None:
|
2279
|
+
self._Data = DescribeDeviceVirtualGroupsPageRsp()
|
2280
|
+
self._Data._deserialize(params.get("Data"))
|
2281
|
+
self._RequestId = params.get("RequestId")
|
2282
|
+
|
2283
|
+
|
2098
2284
|
class DescribeDevicesPageRsp(AbstractModel):
|
2099
2285
|
"""分页的data数据
|
2100
2286
|
|
@@ -5051,6 +5237,117 @@ class DeviceServiceInfo(AbstractModel):
|
|
5051
5237
|
|
5052
5238
|
|
5053
5239
|
|
5240
|
+
class DeviceVirtualDeviceGroupsDetail(AbstractModel):
|
5241
|
+
"""终端自定义分组列表数据
|
5242
|
+
|
5243
|
+
"""
|
5244
|
+
|
5245
|
+
def __init__(self):
|
5246
|
+
r"""
|
5247
|
+
:param _Id: 终端自定义分组id
|
5248
|
+
:type Id: int
|
5249
|
+
:param _DeviceVirtualGroupName: 自定义分组名称
|
5250
|
+
:type DeviceVirtualGroupName: str
|
5251
|
+
:param _DeviceCount: 设备数
|
5252
|
+
:type DeviceCount: int
|
5253
|
+
:param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios )
|
5254
|
+
:type OsType: int
|
5255
|
+
:param _Itime: 创建时间
|
5256
|
+
:type Itime: str
|
5257
|
+
:param _Utime: 更新时间
|
5258
|
+
:type Utime: str
|
5259
|
+
"""
|
5260
|
+
self._Id = None
|
5261
|
+
self._DeviceVirtualGroupName = None
|
5262
|
+
self._DeviceCount = None
|
5263
|
+
self._OsType = None
|
5264
|
+
self._Itime = None
|
5265
|
+
self._Utime = None
|
5266
|
+
|
5267
|
+
@property
|
5268
|
+
def Id(self):
|
5269
|
+
"""终端自定义分组id
|
5270
|
+
:rtype: int
|
5271
|
+
"""
|
5272
|
+
return self._Id
|
5273
|
+
|
5274
|
+
@Id.setter
|
5275
|
+
def Id(self, Id):
|
5276
|
+
self._Id = Id
|
5277
|
+
|
5278
|
+
@property
|
5279
|
+
def DeviceVirtualGroupName(self):
|
5280
|
+
"""自定义分组名称
|
5281
|
+
:rtype: str
|
5282
|
+
"""
|
5283
|
+
return self._DeviceVirtualGroupName
|
5284
|
+
|
5285
|
+
@DeviceVirtualGroupName.setter
|
5286
|
+
def DeviceVirtualGroupName(self, DeviceVirtualGroupName):
|
5287
|
+
self._DeviceVirtualGroupName = DeviceVirtualGroupName
|
5288
|
+
|
5289
|
+
@property
|
5290
|
+
def DeviceCount(self):
|
5291
|
+
"""设备数
|
5292
|
+
:rtype: int
|
5293
|
+
"""
|
5294
|
+
return self._DeviceCount
|
5295
|
+
|
5296
|
+
@DeviceCount.setter
|
5297
|
+
def DeviceCount(self, DeviceCount):
|
5298
|
+
self._DeviceCount = DeviceCount
|
5299
|
+
|
5300
|
+
@property
|
5301
|
+
def OsType(self):
|
5302
|
+
"""系统类型(0: win,1:linux,2: mac,4:android,5:ios )
|
5303
|
+
:rtype: int
|
5304
|
+
"""
|
5305
|
+
return self._OsType
|
5306
|
+
|
5307
|
+
@OsType.setter
|
5308
|
+
def OsType(self, OsType):
|
5309
|
+
self._OsType = OsType
|
5310
|
+
|
5311
|
+
@property
|
5312
|
+
def Itime(self):
|
5313
|
+
"""创建时间
|
5314
|
+
:rtype: str
|
5315
|
+
"""
|
5316
|
+
return self._Itime
|
5317
|
+
|
5318
|
+
@Itime.setter
|
5319
|
+
def Itime(self, Itime):
|
5320
|
+
self._Itime = Itime
|
5321
|
+
|
5322
|
+
@property
|
5323
|
+
def Utime(self):
|
5324
|
+
"""更新时间
|
5325
|
+
:rtype: str
|
5326
|
+
"""
|
5327
|
+
return self._Utime
|
5328
|
+
|
5329
|
+
@Utime.setter
|
5330
|
+
def Utime(self, Utime):
|
5331
|
+
self._Utime = Utime
|
5332
|
+
|
5333
|
+
|
5334
|
+
def _deserialize(self, params):
|
5335
|
+
self._Id = params.get("Id")
|
5336
|
+
self._DeviceVirtualGroupName = params.get("DeviceVirtualGroupName")
|
5337
|
+
self._DeviceCount = params.get("DeviceCount")
|
5338
|
+
self._OsType = params.get("OsType")
|
5339
|
+
self._Itime = params.get("Itime")
|
5340
|
+
self._Utime = params.get("Utime")
|
5341
|
+
memeber_set = set(params.keys())
|
5342
|
+
for name, value in vars(self).items():
|
5343
|
+
property_name = name[1:]
|
5344
|
+
if property_name in memeber_set:
|
5345
|
+
memeber_set.remove(property_name)
|
5346
|
+
if len(memeber_set) > 0:
|
5347
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5348
|
+
|
5349
|
+
|
5350
|
+
|
5054
5351
|
class Filter(AbstractModel):
|
5055
5352
|
"""Filters 条件过滤
|
5056
5353
|
|
@@ -15650,6 +15650,12 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
15650
15650
|
:type VoucherIds: list of str
|
15651
15651
|
:param _Zones: 变更部署时指定的新可用区列表,第1个为主可用区,其余为从可用区
|
15652
15652
|
:type Zones: list of str
|
15653
|
+
:param _SwitchStartTime: 切换开始时间,格式如: "2019-12-12 07:00:00"。开始时间必须在当前时间一个小时以后,3天以内。
|
15654
|
+
:type SwitchStartTime: str
|
15655
|
+
:param _SwitchEndTime: 切换结束时间, 格式如: "2019-12-12 07:15:00",结束时间必须大于开始时间。
|
15656
|
+
:type SwitchEndTime: str
|
15657
|
+
:param _SwitchAutoRetry: 是否自动重试。 0:不自动重试 1:自动重试
|
15658
|
+
:type SwitchAutoRetry: int
|
15653
15659
|
"""
|
15654
15660
|
self._InstanceId = None
|
15655
15661
|
self._Memory = None
|
@@ -15657,6 +15663,9 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
15657
15663
|
self._AutoVoucher = None
|
15658
15664
|
self._VoucherIds = None
|
15659
15665
|
self._Zones = None
|
15666
|
+
self._SwitchStartTime = None
|
15667
|
+
self._SwitchEndTime = None
|
15668
|
+
self._SwitchAutoRetry = None
|
15660
15669
|
|
15661
15670
|
@property
|
15662
15671
|
def InstanceId(self):
|
@@ -15726,6 +15735,39 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
15726
15735
|
def Zones(self, Zones):
|
15727
15736
|
self._Zones = Zones
|
15728
15737
|
|
15738
|
+
@property
|
15739
|
+
def SwitchStartTime(self):
|
15740
|
+
"""切换开始时间,格式如: "2019-12-12 07:00:00"。开始时间必须在当前时间一个小时以后,3天以内。
|
15741
|
+
:rtype: str
|
15742
|
+
"""
|
15743
|
+
return self._SwitchStartTime
|
15744
|
+
|
15745
|
+
@SwitchStartTime.setter
|
15746
|
+
def SwitchStartTime(self, SwitchStartTime):
|
15747
|
+
self._SwitchStartTime = SwitchStartTime
|
15748
|
+
|
15749
|
+
@property
|
15750
|
+
def SwitchEndTime(self):
|
15751
|
+
"""切换结束时间, 格式如: "2019-12-12 07:15:00",结束时间必须大于开始时间。
|
15752
|
+
:rtype: str
|
15753
|
+
"""
|
15754
|
+
return self._SwitchEndTime
|
15755
|
+
|
15756
|
+
@SwitchEndTime.setter
|
15757
|
+
def SwitchEndTime(self, SwitchEndTime):
|
15758
|
+
self._SwitchEndTime = SwitchEndTime
|
15759
|
+
|
15760
|
+
@property
|
15761
|
+
def SwitchAutoRetry(self):
|
15762
|
+
"""是否自动重试。 0:不自动重试 1:自动重试
|
15763
|
+
:rtype: int
|
15764
|
+
"""
|
15765
|
+
return self._SwitchAutoRetry
|
15766
|
+
|
15767
|
+
@SwitchAutoRetry.setter
|
15768
|
+
def SwitchAutoRetry(self, SwitchAutoRetry):
|
15769
|
+
self._SwitchAutoRetry = SwitchAutoRetry
|
15770
|
+
|
15729
15771
|
|
15730
15772
|
def _deserialize(self, params):
|
15731
15773
|
self._InstanceId = params.get("InstanceId")
|
@@ -15734,6 +15776,9 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
15734
15776
|
self._AutoVoucher = params.get("AutoVoucher")
|
15735
15777
|
self._VoucherIds = params.get("VoucherIds")
|
15736
15778
|
self._Zones = params.get("Zones")
|
15779
|
+
self._SwitchStartTime = params.get("SwitchStartTime")
|
15780
|
+
self._SwitchEndTime = params.get("SwitchEndTime")
|
15781
|
+
self._SwitchAutoRetry = params.get("SwitchAutoRetry")
|
15737
15782
|
memeber_set = set(params.keys())
|
15738
15783
|
for name, value in vars(self).items():
|
15739
15784
|
property_name = name[1:]
|
@@ -3499,12 +3499,20 @@ class CardWarnInfo(AbstractModel):
|
|
3499
3499
|
0:正常
|
3500
3500
|
1:有PS
|
3501
3501
|
:type PSCheck: int
|
3502
|
+
:param _BlurCheck: 是否模糊:
|
3503
|
+
0:正常
|
3504
|
+
1:模糊
|
3505
|
+
:type BlurCheck: int
|
3506
|
+
:param _BlurScore: 模糊分数, 范围:0.0-1.0,分数越高越模糊,建议阈值为0.5
|
3507
|
+
:type BlurScore: float
|
3502
3508
|
"""
|
3503
3509
|
self._BorderCheck = None
|
3504
3510
|
self._OcclusionCheck = None
|
3505
3511
|
self._CopyCheck = None
|
3506
3512
|
self._ReshootCheck = None
|
3507
3513
|
self._PSCheck = None
|
3514
|
+
self._BlurCheck = None
|
3515
|
+
self._BlurScore = None
|
3508
3516
|
|
3509
3517
|
@property
|
3510
3518
|
def BorderCheck(self):
|
@@ -3571,6 +3579,30 @@ class CardWarnInfo(AbstractModel):
|
|
3571
3579
|
def PSCheck(self, PSCheck):
|
3572
3580
|
self._PSCheck = PSCheck
|
3573
3581
|
|
3582
|
+
@property
|
3583
|
+
def BlurCheck(self):
|
3584
|
+
"""是否模糊:
|
3585
|
+
0:正常
|
3586
|
+
1:模糊
|
3587
|
+
:rtype: int
|
3588
|
+
"""
|
3589
|
+
return self._BlurCheck
|
3590
|
+
|
3591
|
+
@BlurCheck.setter
|
3592
|
+
def BlurCheck(self, BlurCheck):
|
3593
|
+
self._BlurCheck = BlurCheck
|
3594
|
+
|
3595
|
+
@property
|
3596
|
+
def BlurScore(self):
|
3597
|
+
"""模糊分数, 范围:0.0-1.0,分数越高越模糊,建议阈值为0.5
|
3598
|
+
:rtype: float
|
3599
|
+
"""
|
3600
|
+
return self._BlurScore
|
3601
|
+
|
3602
|
+
@BlurScore.setter
|
3603
|
+
def BlurScore(self, BlurScore):
|
3604
|
+
self._BlurScore = BlurScore
|
3605
|
+
|
3574
3606
|
|
3575
3607
|
def _deserialize(self, params):
|
3576
3608
|
self._BorderCheck = params.get("BorderCheck")
|
@@ -3578,6 +3610,8 @@ class CardWarnInfo(AbstractModel):
|
|
3578
3610
|
self._CopyCheck = params.get("CopyCheck")
|
3579
3611
|
self._ReshootCheck = params.get("ReshootCheck")
|
3580
3612
|
self._PSCheck = params.get("PSCheck")
|
3613
|
+
self._BlurCheck = params.get("BlurCheck")
|
3614
|
+
self._BlurScore = params.get("BlurScore")
|
3581
3615
|
memeber_set = set(params.keys())
|
3582
3616
|
for name, value in vars(self).items():
|
3583
3617
|
property_name = name[1:]
|
@@ -8481,6 +8515,9 @@ AirWayBill -- 航空运单识别模板
|
|
8481
8515
|
Table -- 表格模版
|
8482
8516
|
SteelLabel -- 实物标签识别模板
|
8483
8517
|
CarInsurance -- 车辆保险单识别模板
|
8518
|
+
MultiRealEstateCertificate -- 房产材料识别模板
|
8519
|
+
MultiRealEstateMaterial -- 房产证明识别模板
|
8520
|
+
HongKongUtilityBill -- 香港水电煤单识别模板
|
8484
8521
|
:type ConfigId: str
|
8485
8522
|
:param _EnableCoord: 是否开启全文字段坐标值的识别
|
8486
8523
|
:type EnableCoord: bool
|
@@ -8585,6 +8622,9 @@ AirWayBill -- 航空运单识别模板
|
|
8585
8622
|
Table -- 表格模版
|
8586
8623
|
SteelLabel -- 实物标签识别模板
|
8587
8624
|
CarInsurance -- 车辆保险单识别模板
|
8625
|
+
MultiRealEstateCertificate -- 房产材料识别模板
|
8626
|
+
MultiRealEstateMaterial -- 房产证明识别模板
|
8627
|
+
HongKongUtilityBill -- 香港水电煤单识别模板
|
8588
8628
|
:rtype: str
|
8589
8629
|
"""
|
8590
8630
|
return self._ConfigId
|
@@ -26844,6 +26884,8 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
|
|
26844
26884
|
:type EnablePSCheck: bool
|
26845
26885
|
:param _EnableWordCheck: 默认值为false,打开返回字段级反光和字段级完整性告警。类型为:临时、港澳台居住证、外国人居住证失效
|
26846
26886
|
:type EnableWordCheck: bool
|
26887
|
+
:param _EnableQualityCheck: 默认值为false,打开返回证件是否模糊。
|
26888
|
+
:type EnableQualityCheck: bool
|
26847
26889
|
"""
|
26848
26890
|
self._ImageBase64 = None
|
26849
26891
|
self._ImageUrl = None
|
@@ -26856,6 +26898,7 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
|
|
26856
26898
|
self._EnableReshootCheck = None
|
26857
26899
|
self._EnablePSCheck = None
|
26858
26900
|
self._EnableWordCheck = None
|
26901
|
+
self._EnableQualityCheck = None
|
26859
26902
|
|
26860
26903
|
@property
|
26861
26904
|
def ImageBase64(self):
|
@@ -26991,6 +27034,17 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
|
|
26991
27034
|
def EnableWordCheck(self, EnableWordCheck):
|
26992
27035
|
self._EnableWordCheck = EnableWordCheck
|
26993
27036
|
|
27037
|
+
@property
|
27038
|
+
def EnableQualityCheck(self):
|
27039
|
+
"""默认值为false,打开返回证件是否模糊。
|
27040
|
+
:rtype: bool
|
27041
|
+
"""
|
27042
|
+
return self._EnableQualityCheck
|
27043
|
+
|
27044
|
+
@EnableQualityCheck.setter
|
27045
|
+
def EnableQualityCheck(self, EnableQualityCheck):
|
27046
|
+
self._EnableQualityCheck = EnableQualityCheck
|
27047
|
+
|
26994
27048
|
|
26995
27049
|
def _deserialize(self, params):
|
26996
27050
|
self._ImageBase64 = params.get("ImageBase64")
|
@@ -27004,6 +27058,7 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
|
|
27004
27058
|
self._EnableReshootCheck = params.get("EnableReshootCheck")
|
27005
27059
|
self._EnablePSCheck = params.get("EnablePSCheck")
|
27006
27060
|
self._EnableWordCheck = params.get("EnableWordCheck")
|
27061
|
+
self._EnableQualityCheck = params.get("EnableQualityCheck")
|
27007
27062
|
memeber_set = set(params.keys())
|
27008
27063
|
for name, value in vars(self).items():
|
27009
27064
|
property_name = name[1:]
|
@@ -7242,6 +7242,9 @@ class BizCatalogsInfo(AbstractModel):
|
|
7242
7242
|
:param _Position: 类目顺序
|
7243
7243
|
注意:此字段可能返回 null,表示取不到有效值。
|
7244
7244
|
:type Position: int
|
7245
|
+
:param _NameEn: 类目名称英文
|
7246
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7247
|
+
:type NameEn: str
|
7245
7248
|
"""
|
7246
7249
|
self._AppId = None
|
7247
7250
|
self._Id = None
|
@@ -7249,6 +7252,7 @@ class BizCatalogsInfo(AbstractModel):
|
|
7249
7252
|
self._Name = None
|
7250
7253
|
self._ParentId = None
|
7251
7254
|
self._Position = None
|
7255
|
+
self._NameEn = None
|
7252
7256
|
|
7253
7257
|
@property
|
7254
7258
|
def AppId(self):
|
@@ -7322,6 +7326,18 @@ class BizCatalogsInfo(AbstractModel):
|
|
7322
7326
|
def Position(self, Position):
|
7323
7327
|
self._Position = Position
|
7324
7328
|
|
7329
|
+
@property
|
7330
|
+
def NameEn(self):
|
7331
|
+
"""类目名称英文
|
7332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7333
|
+
:rtype: str
|
7334
|
+
"""
|
7335
|
+
return self._NameEn
|
7336
|
+
|
7337
|
+
@NameEn.setter
|
7338
|
+
def NameEn(self, NameEn):
|
7339
|
+
self._NameEn = NameEn
|
7340
|
+
|
7325
7341
|
|
7326
7342
|
def _deserialize(self, params):
|
7327
7343
|
self._AppId = params.get("AppId")
|
@@ -7330,6 +7346,7 @@ class BizCatalogsInfo(AbstractModel):
|
|
7330
7346
|
self._Name = params.get("Name")
|
7331
7347
|
self._ParentId = params.get("ParentId")
|
7332
7348
|
self._Position = params.get("Position")
|
7349
|
+
self._NameEn = params.get("NameEn")
|
7333
7350
|
memeber_set = set(params.keys())
|
7334
7351
|
for name, value in vars(self).items():
|
7335
7352
|
property_name = name[1:]
|