tencentcloud-sdk-python 3.0.1263__py2.py3-none-any.whl → 3.0.1265__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/autoscaling/v20180419/models.py +234 -156
- tencentcloud/ccc/v20200210/models.py +148 -236
- tencentcloud/cdb/v20170320/cdb_client.py +40 -17
- tencentcloud/cdb/v20170320/models.py +215 -68
- tencentcloud/cdc/v20201214/models.py +20 -20
- tencentcloud/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/models.py +862 -12
- tencentcloud/cwp/v20180228/cwp_client.py +0 -25
- tencentcloud/cwp/v20180228/models.py +352 -1771
- tencentcloud/dasb/v20191018/models.py +0 -8
- tencentcloud/emr/v20190103/models.py +58 -2
- tencentcloud/ess/v20201111/models.py +10 -8
- tencentcloud/essbasic/v20210526/models.py +10 -12
- tencentcloud/hai/v20230812/errorcodes.py +18 -0
- tencentcloud/hai/v20230812/models.py +229 -4
- tencentcloud/hunyuan/v20230901/errorcodes.py +2 -2
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +19 -4
- tencentcloud/iai/v20180301/models.py +4 -4
- tencentcloud/iai/v20200303/models.py +728 -528
- tencentcloud/ig/__init__.py +0 -0
- tencentcloud/ig/v20210518/__init__.py +0 -0
- tencentcloud/ig/v20210518/errorcodes.py +24 -0
- tencentcloud/ig/v20210518/ig_client.py +49 -0
- tencentcloud/ig/v20210518/models.py +142 -0
- tencentcloud/iss/v20230517/errorcodes.py +0 -9
- tencentcloud/iss/v20230517/iss_client.py +0 -23
- tencentcloud/iss/v20230517/models.py +0 -94
- tencentcloud/lke/v20231130/errorcodes.py +3 -0
- tencentcloud/lke/v20231130/models.py +16 -16
- tencentcloud/mrs/v20200910/models.py +30 -0
- tencentcloud/redis/v20180412/models.py +6 -10
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/soe/v20180724/models.py +2 -2
- tencentcloud/ssl/v20191205/models.py +148 -0
- tencentcloud/tat/v20201028/models.py +2 -20
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/models.py +79 -0
- tencentcloud/vpc/v20170312/vpc_client.py +23 -0
- tencentcloud/wedata/v20210820/errorcodes.py +9 -0
- tencentcloud/wedata/v20210820/models.py +447 -0
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/RECORD +48 -43
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1265.dist-info}/top_level.txt +0 -0
File without changes
|
File without changes
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
|
17
|
+
# 操作失败。
|
18
|
+
FAILEDOPERATION = 'FailedOperation'
|
19
|
+
|
20
|
+
# 内部错误。
|
21
|
+
INTERNALERROR = 'InternalError'
|
22
|
+
|
23
|
+
# 参数错误。
|
24
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
import json
|
17
|
+
|
18
|
+
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
19
|
+
from tencentcloud.common.abstract_client import AbstractClient
|
20
|
+
from tencentcloud.ig.v20210518 import models
|
21
|
+
|
22
|
+
|
23
|
+
class IgClient(AbstractClient):
|
24
|
+
_apiVersion = '2021-05-18'
|
25
|
+
_endpoint = 'ig.tencentcloudapi.com'
|
26
|
+
_service = 'ig'
|
27
|
+
|
28
|
+
|
29
|
+
def DescribeIgOrderList(self, request):
|
30
|
+
"""查询智能导诊订单列表
|
31
|
+
|
32
|
+
:param request: Request instance for DescribeIgOrderList.
|
33
|
+
:type request: :class:`tencentcloud.ig.v20210518.models.DescribeIgOrderListRequest`
|
34
|
+
:rtype: :class:`tencentcloud.ig.v20210518.models.DescribeIgOrderListResponse`
|
35
|
+
|
36
|
+
"""
|
37
|
+
try:
|
38
|
+
params = request._serialize()
|
39
|
+
headers = request.headers
|
40
|
+
body = self.call("DescribeIgOrderList", params, headers=headers)
|
41
|
+
response = json.loads(body)
|
42
|
+
model = models.DescribeIgOrderListResponse()
|
43
|
+
model._deserialize(response["Response"])
|
44
|
+
return model
|
45
|
+
except Exception as e:
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
47
|
+
raise
|
48
|
+
else:
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
@@ -0,0 +1,142 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
import warnings
|
17
|
+
|
18
|
+
from tencentcloud.common.abstract_model import AbstractModel
|
19
|
+
|
20
|
+
|
21
|
+
class DescribeIgOrderListRequest(AbstractModel):
|
22
|
+
"""DescribeIgOrderList请求参数结构体
|
23
|
+
|
24
|
+
"""
|
25
|
+
|
26
|
+
def __init__(self):
|
27
|
+
r"""
|
28
|
+
:param _PageNumber: 页码
|
29
|
+
:type PageNumber: int
|
30
|
+
:param _PageSize: 每页数目
|
31
|
+
:type PageSize: int
|
32
|
+
:param _ProductType: 产品类型
|
33
|
+
:type ProductType: str
|
34
|
+
:param _OrderStatus: 订单状态
|
35
|
+
:type OrderStatus: int
|
36
|
+
:param _KeyWord: 搜索关键字
|
37
|
+
:type KeyWord: str
|
38
|
+
"""
|
39
|
+
self._PageNumber = None
|
40
|
+
self._PageSize = None
|
41
|
+
self._ProductType = None
|
42
|
+
self._OrderStatus = None
|
43
|
+
self._KeyWord = None
|
44
|
+
|
45
|
+
@property
|
46
|
+
def PageNumber(self):
|
47
|
+
"""页码
|
48
|
+
:rtype: int
|
49
|
+
"""
|
50
|
+
return self._PageNumber
|
51
|
+
|
52
|
+
@PageNumber.setter
|
53
|
+
def PageNumber(self, PageNumber):
|
54
|
+
self._PageNumber = PageNumber
|
55
|
+
|
56
|
+
@property
|
57
|
+
def PageSize(self):
|
58
|
+
"""每页数目
|
59
|
+
:rtype: int
|
60
|
+
"""
|
61
|
+
return self._PageSize
|
62
|
+
|
63
|
+
@PageSize.setter
|
64
|
+
def PageSize(self, PageSize):
|
65
|
+
self._PageSize = PageSize
|
66
|
+
|
67
|
+
@property
|
68
|
+
def ProductType(self):
|
69
|
+
"""产品类型
|
70
|
+
:rtype: str
|
71
|
+
"""
|
72
|
+
return self._ProductType
|
73
|
+
|
74
|
+
@ProductType.setter
|
75
|
+
def ProductType(self, ProductType):
|
76
|
+
self._ProductType = ProductType
|
77
|
+
|
78
|
+
@property
|
79
|
+
def OrderStatus(self):
|
80
|
+
"""订单状态
|
81
|
+
:rtype: int
|
82
|
+
"""
|
83
|
+
return self._OrderStatus
|
84
|
+
|
85
|
+
@OrderStatus.setter
|
86
|
+
def OrderStatus(self, OrderStatus):
|
87
|
+
self._OrderStatus = OrderStatus
|
88
|
+
|
89
|
+
@property
|
90
|
+
def KeyWord(self):
|
91
|
+
"""搜索关键字
|
92
|
+
:rtype: str
|
93
|
+
"""
|
94
|
+
return self._KeyWord
|
95
|
+
|
96
|
+
@KeyWord.setter
|
97
|
+
def KeyWord(self, KeyWord):
|
98
|
+
self._KeyWord = KeyWord
|
99
|
+
|
100
|
+
|
101
|
+
def _deserialize(self, params):
|
102
|
+
self._PageNumber = params.get("PageNumber")
|
103
|
+
self._PageSize = params.get("PageSize")
|
104
|
+
self._ProductType = params.get("ProductType")
|
105
|
+
self._OrderStatus = params.get("OrderStatus")
|
106
|
+
self._KeyWord = params.get("KeyWord")
|
107
|
+
memeber_set = set(params.keys())
|
108
|
+
for name, value in vars(self).items():
|
109
|
+
property_name = name[1:]
|
110
|
+
if property_name in memeber_set:
|
111
|
+
memeber_set.remove(property_name)
|
112
|
+
if len(memeber_set) > 0:
|
113
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
class DescribeIgOrderListResponse(AbstractModel):
|
118
|
+
"""DescribeIgOrderList返回参数结构体
|
119
|
+
|
120
|
+
"""
|
121
|
+
|
122
|
+
def __init__(self):
|
123
|
+
r"""
|
124
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
125
|
+
:type RequestId: str
|
126
|
+
"""
|
127
|
+
self._RequestId = None
|
128
|
+
|
129
|
+
@property
|
130
|
+
def RequestId(self):
|
131
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
132
|
+
:rtype: str
|
133
|
+
"""
|
134
|
+
return self._RequestId
|
135
|
+
|
136
|
+
@RequestId.setter
|
137
|
+
def RequestId(self, RequestId):
|
138
|
+
self._RequestId = RequestId
|
139
|
+
|
140
|
+
|
141
|
+
def _deserialize(self, params):
|
142
|
+
self._RequestId = params.get("RequestId")
|
@@ -32,9 +32,6 @@ FAILEDOPERATION_DEVICERESPONSETIMEOUT = 'FailedOperation.DeviceResponseTimeOut'
|
|
32
32
|
# 设备端结果响应超时
|
33
33
|
FAILEDOPERATION_DEVICERESULTTIMEOUT = 'FailedOperation.DeviceResultTimeOut'
|
34
34
|
|
35
|
-
# 域名CNAME解析未成功,请到域名服务商处检查配置
|
36
|
-
FAILEDOPERATION_NOMATCHEDCNAME = 'FailedOperation.NoMatchedCname'
|
37
|
-
|
38
35
|
# 没有该子用户
|
39
36
|
FAILEDOPERATION_NOTHAVESUBUSER = 'FailedOperation.NotHaveSubUser'
|
40
37
|
|
@@ -212,9 +209,6 @@ INVALIDPARAMETERVALUE_INVALIDDEVICESTATUS = 'InvalidParameterValue.InvalidDevice
|
|
212
209
|
# 无效的设备类型
|
213
210
|
INVALIDPARAMETERVALUE_INVALIDDEVICETYPE = 'InvalidParameterValue.InvalidDeviceType'
|
214
211
|
|
215
|
-
# 无效的域名,长度或内容不符合规则
|
216
|
-
INVALIDPARAMETERVALUE_INVALIDDOMAIN = 'InvalidParameterValue.InvalidDomain'
|
217
|
-
|
218
212
|
# 无效的域名类型参数
|
219
213
|
INVALIDPARAMETERVALUE_INVALIDDOMAINTYPE = 'InvalidParameterValue.InvalidDomainType'
|
220
214
|
|
@@ -527,9 +521,6 @@ RESOURCEUNAVAILABLE_DEVNOREGISTER = 'ResourceUnavailable.DevNoRegister'
|
|
527
521
|
# 设备离线
|
528
522
|
RESOURCEUNAVAILABLE_DEVOFFLINE = 'ResourceUnavailable.DevOffline'
|
529
523
|
|
530
|
-
# 该域名没有备案
|
531
|
-
RESOURCEUNAVAILABLE_DOMAINNOTRECORD = 'ResourceUnavailable.DomainNotRecord'
|
532
|
-
|
533
524
|
# 录像已归档
|
534
525
|
RESOURCEUNAVAILABLE_VIDEOARCHIVED = 'ResourceUnavailable.VideoArchived'
|
535
526
|
|
@@ -282,29 +282,6 @@ class IssClient(AbstractClient):
|
|
282
282
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
283
283
|
|
284
284
|
|
285
|
-
def CheckDomain(self, request):
|
286
|
-
"""用于检测域名是否备案。
|
287
|
-
|
288
|
-
:param request: Request instance for CheckDomain.
|
289
|
-
:type request: :class:`tencentcloud.iss.v20230517.models.CheckDomainRequest`
|
290
|
-
:rtype: :class:`tencentcloud.iss.v20230517.models.CheckDomainResponse`
|
291
|
-
|
292
|
-
"""
|
293
|
-
try:
|
294
|
-
params = request._serialize()
|
295
|
-
headers = request.headers
|
296
|
-
body = self.call("CheckDomain", params, headers=headers)
|
297
|
-
response = json.loads(body)
|
298
|
-
model = models.CheckDomainResponse()
|
299
|
-
model._deserialize(response["Response"])
|
300
|
-
return model
|
301
|
-
except Exception as e:
|
302
|
-
if isinstance(e, TencentCloudSDKException):
|
303
|
-
raise
|
304
|
-
else:
|
305
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
306
|
-
|
307
|
-
|
308
285
|
def ControlDevicePTZ(self, request):
|
309
286
|
"""用于设备通道云台控制,包括转动、变倍、变焦、光圈等。
|
310
287
|
|
@@ -3921,100 +3921,6 @@ class ChannelInfo(AbstractModel):
|
|
3921
3921
|
|
3922
3922
|
|
3923
3923
|
|
3924
|
-
class CheckDomainRequest(AbstractModel):
|
3925
|
-
"""CheckDomain请求参数结构体
|
3926
|
-
|
3927
|
-
"""
|
3928
|
-
|
3929
|
-
def __init__(self):
|
3930
|
-
r"""
|
3931
|
-
:param _PlayDomain: 播放域名
|
3932
|
-
:type PlayDomain: str
|
3933
|
-
:param _InternalDomain: CNAME 记录值
|
3934
|
-
:type InternalDomain: str
|
3935
|
-
"""
|
3936
|
-
self._PlayDomain = None
|
3937
|
-
self._InternalDomain = None
|
3938
|
-
|
3939
|
-
@property
|
3940
|
-
def PlayDomain(self):
|
3941
|
-
"""播放域名
|
3942
|
-
:rtype: str
|
3943
|
-
"""
|
3944
|
-
return self._PlayDomain
|
3945
|
-
|
3946
|
-
@PlayDomain.setter
|
3947
|
-
def PlayDomain(self, PlayDomain):
|
3948
|
-
self._PlayDomain = PlayDomain
|
3949
|
-
|
3950
|
-
@property
|
3951
|
-
def InternalDomain(self):
|
3952
|
-
"""CNAME 记录值
|
3953
|
-
:rtype: str
|
3954
|
-
"""
|
3955
|
-
return self._InternalDomain
|
3956
|
-
|
3957
|
-
@InternalDomain.setter
|
3958
|
-
def InternalDomain(self, InternalDomain):
|
3959
|
-
self._InternalDomain = InternalDomain
|
3960
|
-
|
3961
|
-
|
3962
|
-
def _deserialize(self, params):
|
3963
|
-
self._PlayDomain = params.get("PlayDomain")
|
3964
|
-
self._InternalDomain = params.get("InternalDomain")
|
3965
|
-
memeber_set = set(params.keys())
|
3966
|
-
for name, value in vars(self).items():
|
3967
|
-
property_name = name[1:]
|
3968
|
-
if property_name in memeber_set:
|
3969
|
-
memeber_set.remove(property_name)
|
3970
|
-
if len(memeber_set) > 0:
|
3971
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
3972
|
-
|
3973
|
-
|
3974
|
-
|
3975
|
-
class CheckDomainResponse(AbstractModel):
|
3976
|
-
"""CheckDomain返回参数结构体
|
3977
|
-
|
3978
|
-
"""
|
3979
|
-
|
3980
|
-
def __init__(self):
|
3981
|
-
r"""
|
3982
|
-
:param _Data: 是否备案
|
3983
|
-
:type Data: bool
|
3984
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3985
|
-
:type RequestId: str
|
3986
|
-
"""
|
3987
|
-
self._Data = None
|
3988
|
-
self._RequestId = None
|
3989
|
-
|
3990
|
-
@property
|
3991
|
-
def Data(self):
|
3992
|
-
"""是否备案
|
3993
|
-
:rtype: bool
|
3994
|
-
"""
|
3995
|
-
return self._Data
|
3996
|
-
|
3997
|
-
@Data.setter
|
3998
|
-
def Data(self, Data):
|
3999
|
-
self._Data = Data
|
4000
|
-
|
4001
|
-
@property
|
4002
|
-
def RequestId(self):
|
4003
|
-
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4004
|
-
:rtype: str
|
4005
|
-
"""
|
4006
|
-
return self._RequestId
|
4007
|
-
|
4008
|
-
@RequestId.setter
|
4009
|
-
def RequestId(self, RequestId):
|
4010
|
-
self._RequestId = RequestId
|
4011
|
-
|
4012
|
-
|
4013
|
-
def _deserialize(self, params):
|
4014
|
-
self._Data = params.get("Data")
|
4015
|
-
self._RequestId = params.get("RequestId")
|
4016
|
-
|
4017
|
-
|
4018
3924
|
class ChefClothAIResultInfo(AbstractModel):
|
4019
3925
|
"""厨师服识别结果详情
|
4020
3926
|
|
@@ -6548,7 +6548,7 @@ class DescribeStorageCredentialRequest(AbstractModel):
|
|
6548
6548
|
:type BotBizId: str
|
6549
6549
|
:param _FileType: 文件类型,正常的文件名类型后缀,例如 xlsx、pdf、 docx、png 等
|
6550
6550
|
:type FileType: str
|
6551
|
-
:param _IsPublic: IsPublic
|
6551
|
+
:param _IsPublic: IsPublic用于上传文件时选择场景,当上传为对话端文件时IsPublic为true,上传文档库文件时场景IsPublic为false
|
6552
6552
|
:type IsPublic: bool
|
6553
6553
|
:param _TypeKey: 存储类型: offline:离线文件,realtime:实时文件;为空默认为offline
|
6554
6554
|
:type TypeKey: str
|
@@ -6582,7 +6582,7 @@ class DescribeStorageCredentialRequest(AbstractModel):
|
|
6582
6582
|
|
6583
6583
|
@property
|
6584
6584
|
def IsPublic(self):
|
6585
|
-
"""IsPublic
|
6585
|
+
"""IsPublic用于上传文件时选择场景,当上传为对话端文件时IsPublic为true,上传文档库文件时场景IsPublic为false
|
6586
6586
|
:rtype: bool
|
6587
6587
|
"""
|
6588
6588
|
return self._IsPublic
|
@@ -9065,7 +9065,7 @@ class GetDocPreviewRequest(AbstractModel):
|
|
9065
9065
|
|
9066
9066
|
def __init__(self):
|
9067
9067
|
r"""
|
9068
|
-
:param _DocBizId:
|
9068
|
+
:param _DocBizId: 文档BizID
|
9069
9069
|
:type DocBizId: str
|
9070
9070
|
:param _BotBizId: 应用ID
|
9071
9071
|
:type BotBizId: str
|
@@ -9078,7 +9078,7 @@ class GetDocPreviewRequest(AbstractModel):
|
|
9078
9078
|
|
9079
9079
|
@property
|
9080
9080
|
def DocBizId(self):
|
9081
|
-
"""
|
9081
|
+
"""文档BizID
|
9082
9082
|
:rtype: str
|
9083
9083
|
"""
|
9084
9084
|
return self._DocBizId
|
@@ -9793,14 +9793,14 @@ class GetReconstructDocumentResultRequest(AbstractModel):
|
|
9793
9793
|
|
9794
9794
|
def __init__(self):
|
9795
9795
|
r"""
|
9796
|
-
:param _TaskId: 任务唯一
|
9796
|
+
:param _TaskId: 任务唯一Id。[CreateReconstructDocumentFlow](https://cloud.tencent.com/document/product/1759/107506) 返回的TaskId。
|
9797
9797
|
:type TaskId: str
|
9798
9798
|
"""
|
9799
9799
|
self._TaskId = None
|
9800
9800
|
|
9801
9801
|
@property
|
9802
9802
|
def TaskId(self):
|
9803
|
-
"""任务唯一
|
9803
|
+
"""任务唯一Id。[CreateReconstructDocumentFlow](https://cloud.tencent.com/document/product/1759/107506) 返回的TaskId。
|
9804
9804
|
:rtype: str
|
9805
9805
|
"""
|
9806
9806
|
return self._TaskId
|
@@ -9829,11 +9829,11 @@ class GetReconstructDocumentResultResponse(AbstractModel):
|
|
9829
9829
|
|
9830
9830
|
def __init__(self):
|
9831
9831
|
r"""
|
9832
|
-
:param _Status: 任务状态: Success->执行完成;Processing->执行中;Failed->执行失败;WaitExecute
|
9832
|
+
:param _Status: 任务状态: Success->执行完成;Processing->执行中;Failed->执行失败;WaitExecute->等待执行。
|
9833
9833
|
:type Status: str
|
9834
|
-
:param _DocumentRecognizeResultUrl:
|
9834
|
+
:param _DocumentRecognizeResultUrl: 本次文档解析的结果文件,存储在腾讯云COS的下载URL,下载URL的有效期为10分钟。
|
9835
9835
|
:type DocumentRecognizeResultUrl: str
|
9836
|
-
:param _FailedPages:
|
9836
|
+
:param _FailedPages: 本次文档解析失败的页码信息。
|
9837
9837
|
:type FailedPages: list of ReconstructDocumentFailedPage
|
9838
9838
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9839
9839
|
:type RequestId: str
|
@@ -9845,7 +9845,7 @@ class GetReconstructDocumentResultResponse(AbstractModel):
|
|
9845
9845
|
|
9846
9846
|
@property
|
9847
9847
|
def Status(self):
|
9848
|
-
"""任务状态: Success->执行完成;Processing->执行中;Failed->执行失败;WaitExecute
|
9848
|
+
"""任务状态: Success->执行完成;Processing->执行中;Failed->执行失败;WaitExecute->等待执行。
|
9849
9849
|
:rtype: str
|
9850
9850
|
"""
|
9851
9851
|
return self._Status
|
@@ -9856,7 +9856,7 @@ class GetReconstructDocumentResultResponse(AbstractModel):
|
|
9856
9856
|
|
9857
9857
|
@property
|
9858
9858
|
def DocumentRecognizeResultUrl(self):
|
9859
|
-
"""
|
9859
|
+
"""本次文档解析的结果文件,存储在腾讯云COS的下载URL,下载URL的有效期为10分钟。
|
9860
9860
|
:rtype: str
|
9861
9861
|
"""
|
9862
9862
|
return self._DocumentRecognizeResultUrl
|
@@ -9867,7 +9867,7 @@ class GetReconstructDocumentResultResponse(AbstractModel):
|
|
9867
9867
|
|
9868
9868
|
@property
|
9869
9869
|
def FailedPages(self):
|
9870
|
-
"""
|
9870
|
+
"""本次文档解析失败的页码信息。
|
9871
9871
|
:rtype: list of ReconstructDocumentFailedPage
|
9872
9872
|
"""
|
9873
9873
|
return self._FailedPages
|
@@ -10298,7 +10298,7 @@ class GroupQARequest(AbstractModel):
|
|
10298
10298
|
r"""
|
10299
10299
|
:param _BotBizId: 应用ID
|
10300
10300
|
:type BotBizId: str
|
10301
|
-
:param _QaBizIds:
|
10301
|
+
:param _QaBizIds: QaBizID列表
|
10302
10302
|
:type QaBizIds: list of str
|
10303
10303
|
:param _CateBizId: 分组 ID
|
10304
10304
|
:type CateBizId: str
|
@@ -10320,7 +10320,7 @@ class GroupQARequest(AbstractModel):
|
|
10320
10320
|
|
10321
10321
|
@property
|
10322
10322
|
def QaBizIds(self):
|
10323
|
-
"""
|
10323
|
+
"""QaBizID列表
|
10324
10324
|
:rtype: list of str
|
10325
10325
|
"""
|
10326
10326
|
return self._QaBizIds
|
@@ -14047,7 +14047,7 @@ class ListReleaseDocPreviewRequest(AbstractModel):
|
|
14047
14047
|
:type PageSize: int
|
14048
14048
|
:param _Query: 查询内容
|
14049
14049
|
:type Query: str
|
14050
|
-
:param _ReleaseBizId:
|
14050
|
+
:param _ReleaseBizId: 发布单ID
|
14051
14051
|
:type ReleaseBizId: str
|
14052
14052
|
:param _StartTime: 开始时间
|
14053
14053
|
:type StartTime: str
|
@@ -14111,7 +14111,7 @@ class ListReleaseDocPreviewRequest(AbstractModel):
|
|
14111
14111
|
|
14112
14112
|
@property
|
14113
14113
|
def ReleaseBizId(self):
|
14114
|
-
"""
|
14114
|
+
"""发布单ID
|
14115
14115
|
:rtype: str
|
14116
14116
|
"""
|
14117
14117
|
return self._ReleaseBizId
|
@@ -12723,9 +12723,12 @@ class ImageMaskAsyncRequest(AbstractModel):
|
|
12723
12723
|
:type Image: :class:`tencentcloud.mrs.v20200910.models.ImageInfo`
|
12724
12724
|
:param _MaskFlag: 图片脱敏选项, 不传默认都脱敏
|
12725
12725
|
:type MaskFlag: :class:`tencentcloud.mrs.v20200910.models.ImageMaskFlags`
|
12726
|
+
:param _AutoFixImageDirection: 是否自动矫正图片方向
|
12727
|
+
:type AutoFixImageDirection: bool
|
12726
12728
|
"""
|
12727
12729
|
self._Image = None
|
12728
12730
|
self._MaskFlag = None
|
12731
|
+
self._AutoFixImageDirection = None
|
12729
12732
|
|
12730
12733
|
@property
|
12731
12734
|
def Image(self):
|
@@ -12749,6 +12752,17 @@ class ImageMaskAsyncRequest(AbstractModel):
|
|
12749
12752
|
def MaskFlag(self, MaskFlag):
|
12750
12753
|
self._MaskFlag = MaskFlag
|
12751
12754
|
|
12755
|
+
@property
|
12756
|
+
def AutoFixImageDirection(self):
|
12757
|
+
"""是否自动矫正图片方向
|
12758
|
+
:rtype: bool
|
12759
|
+
"""
|
12760
|
+
return self._AutoFixImageDirection
|
12761
|
+
|
12762
|
+
@AutoFixImageDirection.setter
|
12763
|
+
def AutoFixImageDirection(self, AutoFixImageDirection):
|
12764
|
+
self._AutoFixImageDirection = AutoFixImageDirection
|
12765
|
+
|
12752
12766
|
|
12753
12767
|
def _deserialize(self, params):
|
12754
12768
|
if params.get("Image") is not None:
|
@@ -12757,6 +12771,7 @@ class ImageMaskAsyncRequest(AbstractModel):
|
|
12757
12771
|
if params.get("MaskFlag") is not None:
|
12758
12772
|
self._MaskFlag = ImageMaskFlags()
|
12759
12773
|
self._MaskFlag._deserialize(params.get("MaskFlag"))
|
12774
|
+
self._AutoFixImageDirection = params.get("AutoFixImageDirection")
|
12760
12775
|
memeber_set = set(params.keys())
|
12761
12776
|
for name, value in vars(self).items():
|
12762
12777
|
property_name = name[1:]
|
@@ -12903,9 +12918,12 @@ class ImageMaskRequest(AbstractModel):
|
|
12903
12918
|
:type Image: :class:`tencentcloud.mrs.v20200910.models.ImageInfo`
|
12904
12919
|
:param _MaskFlag: 图片脱敏选项, 不传默认都脱敏
|
12905
12920
|
:type MaskFlag: :class:`tencentcloud.mrs.v20200910.models.ImageMaskFlags`
|
12921
|
+
:param _AutoFixImageDirection: 是否自动矫正图片方向
|
12922
|
+
:type AutoFixImageDirection: bool
|
12906
12923
|
"""
|
12907
12924
|
self._Image = None
|
12908
12925
|
self._MaskFlag = None
|
12926
|
+
self._AutoFixImageDirection = None
|
12909
12927
|
|
12910
12928
|
@property
|
12911
12929
|
def Image(self):
|
@@ -12929,6 +12947,17 @@ class ImageMaskRequest(AbstractModel):
|
|
12929
12947
|
def MaskFlag(self, MaskFlag):
|
12930
12948
|
self._MaskFlag = MaskFlag
|
12931
12949
|
|
12950
|
+
@property
|
12951
|
+
def AutoFixImageDirection(self):
|
12952
|
+
"""是否自动矫正图片方向
|
12953
|
+
:rtype: bool
|
12954
|
+
"""
|
12955
|
+
return self._AutoFixImageDirection
|
12956
|
+
|
12957
|
+
@AutoFixImageDirection.setter
|
12958
|
+
def AutoFixImageDirection(self, AutoFixImageDirection):
|
12959
|
+
self._AutoFixImageDirection = AutoFixImageDirection
|
12960
|
+
|
12932
12961
|
|
12933
12962
|
def _deserialize(self, params):
|
12934
12963
|
if params.get("Image") is not None:
|
@@ -12937,6 +12966,7 @@ class ImageMaskRequest(AbstractModel):
|
|
12937
12966
|
if params.get("MaskFlag") is not None:
|
12938
12967
|
self._MaskFlag = ImageMaskFlags()
|
12939
12968
|
self._MaskFlag._deserialize(params.get("MaskFlag"))
|
12969
|
+
self._AutoFixImageDirection = params.get("AutoFixImageDirection")
|
12940
12970
|
memeber_set = set(params.keys())
|
12941
12971
|
for name, value in vars(self).items():
|
12942
12972
|
property_name = name[1:]
|
@@ -2212,7 +2212,7 @@ class CreateInstanceAccountRequest(AbstractModel):
|
|
2212
2212
|
- 长度不能大于32位。
|
2213
2213
|
:type AccountName: str
|
2214
2214
|
:param _AccountPassword: 设置自定义账号的密码。密码复杂度要求如下:
|
2215
|
-
- 字符个数为[8,
|
2215
|
+
- 字符个数为[8,64]。
|
2216
2216
|
- 至少包含小写字母、大写字母、数字和字符 ()`~!@#$%^&*-+=_|{}[]:;<>,.?/ 中的两种。
|
2217
2217
|
- 不能以"/"开头。
|
2218
2218
|
|
@@ -2262,7 +2262,7 @@ class CreateInstanceAccountRequest(AbstractModel):
|
|
2262
2262
|
@property
|
2263
2263
|
def AccountPassword(self):
|
2264
2264
|
"""设置自定义账号的密码。密码复杂度要求如下:
|
2265
|
-
- 字符个数为[8,
|
2265
|
+
- 字符个数为[8,64]。
|
2266
2266
|
- 至少包含小写字母、大写字母、数字和字符 ()`~!@#$%^&*-+=_|{}[]:;<>,.?/ 中的两种。
|
2267
2267
|
- 不能以"/"开头。
|
2268
2268
|
|
@@ -11813,11 +11813,9 @@ TypeId为标准架构时,MemSize是实例总内存容量;TypeId为集群架
|
|
11813
11813
|
:type BillingMode: int
|
11814
11814
|
:param _ZoneId: 实例所属的可用区ID,可参考[地域和可用区](https://cloud.tencent.com/document/product/239/4106) 。
|
11815
11815
|
:type ZoneId: int
|
11816
|
-
:param _RedisShardNum: 实例分片数量。
|
11817
|
-
Redis2.8标准架构、CKV标准架构、Redis4.0标准架构无需填写。
|
11816
|
+
:param _RedisShardNum: 实例分片数量。2.8 标准架构无需配置分片,其余版本标准架构需要配置分片数量为1。集群架构需指定需购买的分片数量。
|
11818
11817
|
:type RedisShardNum: int
|
11819
|
-
:param _RedisReplicasNum: 实例副本数量。
|
11820
|
-
Redis2.8标准架构、CKV标准架构无需填写。
|
11818
|
+
:param _RedisReplicasNum: 实例副本数量。2.8 标准架构无需配置副本数量。
|
11821
11819
|
:type RedisReplicasNum: int
|
11822
11820
|
:param _ReplicasReadonly: 是否支持副本只读。Redis2.8标准架构、CKV标准架构无需填写。
|
11823
11821
|
- true:无需支持副本只读。
|
@@ -11923,8 +11921,7 @@ TypeId为标准架构时,MemSize是实例总内存容量;TypeId为集群架
|
|
11923
11921
|
|
11924
11922
|
@property
|
11925
11923
|
def RedisShardNum(self):
|
11926
|
-
"""实例分片数量。
|
11927
|
-
Redis2.8标准架构、CKV标准架构、Redis4.0标准架构无需填写。
|
11924
|
+
"""实例分片数量。2.8 标准架构无需配置分片,其余版本标准架构需要配置分片数量为1。集群架构需指定需购买的分片数量。
|
11928
11925
|
:rtype: int
|
11929
11926
|
"""
|
11930
11927
|
return self._RedisShardNum
|
@@ -11935,8 +11932,7 @@ Redis2.8标准架构、CKV标准架构、Redis4.0标准架构无需填写。
|
|
11935
11932
|
|
11936
11933
|
@property
|
11937
11934
|
def RedisReplicasNum(self):
|
11938
|
-
"""实例副本数量。
|
11939
|
-
Redis2.8标准架构、CKV标准架构无需填写。
|
11935
|
+
"""实例副本数量。2.8 标准架构无需配置副本数量。
|
11940
11936
|
:rtype: int
|
11941
11937
|
"""
|
11942
11938
|
return self._RedisReplicasNum
|
@@ -418,7 +418,7 @@ class RedisClient(AbstractClient):
|
|
418
418
|
|
419
419
|
|
420
420
|
def DeleteReplicationInstance(self, request):
|
421
|
-
"""
|
421
|
+
"""移除复制组成员。注:该接口下线中,请使用 [RemoveReplicationInstance](https://cloud.tencent.com/document/product/239/90099)。
|
422
422
|
|
423
423
|
:param request: Request instance for DeleteReplicationInstance.
|
424
424
|
:type request: :class:`tencentcloud.redis.v20180412.models.DeleteReplicationInstanceRequest`
|