tencentcloud-sdk-python 3.0.1425__py2.py3-none-any.whl → 3.0.1427__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 +0 -27
- tencentcloud/aiart/v20221229/models.py +0 -203
- tencentcloud/apm/v20210622/models.py +60 -0
- tencentcloud/autoscaling/v20180419/models.py +108 -0
- tencentcloud/ccc/v20200210/models.py +181 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +98 -12
- tencentcloud/cdwch/v20200915/models.py +40 -62
- tencentcloud/ctsdb/__init__.py +0 -0
- tencentcloud/ctsdb/v20230202/__init__.py +0 -0
- tencentcloud/ctsdb/v20230202/ctsdb_client.py +79 -0
- tencentcloud/ctsdb/v20230202/errorcodes.py +24 -0
- tencentcloud/ctsdb/v20230202/models.py +1256 -0
- tencentcloud/dbbrain/v20210527/models.py +60 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +64 -0
- tencentcloud/essbasic/v20210526/models.py +107 -4
- tencentcloud/gs/v20191118/models.py +49 -8
- tencentcloud/hunyuan/v20230901/models.py +120 -0
- tencentcloud/igtm/v20231024/models.py +4 -134
- tencentcloud/lke/v20231130/models.py +8 -2
- tencentcloud/securitylake/v20240117/models.py +0 -2
- tencentcloud/ssl/v20191205/models.py +75 -0
- tencentcloud/tcaplusdb/v20190823/tcaplusdb_client.py +3 -1
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +90 -55
- tencentcloud/tsf/v20180326/errorcodes.py +1 -1
- tencentcloud/tts/v20190823/models.py +4 -6
- tencentcloud/tts/v20190823/tts_client.py +1 -0
- tencentcloud/vod/v20180717/models.py +19 -4
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/RECORD +37 -32
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1427.dist-info}/top_level.txt +0 -0
|
@@ -12753,6 +12753,14 @@ class DiagHistoryEventItem(AbstractModel):
|
|
|
12753
12753
|
:type Metric: str
|
|
12754
12754
|
:param _Region: 地域。
|
|
12755
12755
|
:type Region: str
|
|
12756
|
+
:param _ClusterId: 集群ID。
|
|
12757
|
+
:type ClusterId: str
|
|
12758
|
+
:param _ClusterName: 集群名称。
|
|
12759
|
+
:type ClusterName: str
|
|
12760
|
+
:param _Vip: vip地址。
|
|
12761
|
+
:type Vip: str
|
|
12762
|
+
:param _Vport: vip端口。
|
|
12763
|
+
:type Vport: int
|
|
12756
12764
|
"""
|
|
12757
12765
|
self._DiagType = None
|
|
12758
12766
|
self._EndTime = None
|
|
@@ -12764,6 +12772,10 @@ class DiagHistoryEventItem(AbstractModel):
|
|
|
12764
12772
|
self._InstanceId = None
|
|
12765
12773
|
self._Metric = None
|
|
12766
12774
|
self._Region = None
|
|
12775
|
+
self._ClusterId = None
|
|
12776
|
+
self._ClusterName = None
|
|
12777
|
+
self._Vip = None
|
|
12778
|
+
self._Vport = None
|
|
12767
12779
|
|
|
12768
12780
|
@property
|
|
12769
12781
|
def DiagType(self):
|
|
@@ -12875,6 +12887,50 @@ class DiagHistoryEventItem(AbstractModel):
|
|
|
12875
12887
|
def Region(self, Region):
|
|
12876
12888
|
self._Region = Region
|
|
12877
12889
|
|
|
12890
|
+
@property
|
|
12891
|
+
def ClusterId(self):
|
|
12892
|
+
"""集群ID。
|
|
12893
|
+
:rtype: str
|
|
12894
|
+
"""
|
|
12895
|
+
return self._ClusterId
|
|
12896
|
+
|
|
12897
|
+
@ClusterId.setter
|
|
12898
|
+
def ClusterId(self, ClusterId):
|
|
12899
|
+
self._ClusterId = ClusterId
|
|
12900
|
+
|
|
12901
|
+
@property
|
|
12902
|
+
def ClusterName(self):
|
|
12903
|
+
"""集群名称。
|
|
12904
|
+
:rtype: str
|
|
12905
|
+
"""
|
|
12906
|
+
return self._ClusterName
|
|
12907
|
+
|
|
12908
|
+
@ClusterName.setter
|
|
12909
|
+
def ClusterName(self, ClusterName):
|
|
12910
|
+
self._ClusterName = ClusterName
|
|
12911
|
+
|
|
12912
|
+
@property
|
|
12913
|
+
def Vip(self):
|
|
12914
|
+
"""vip地址。
|
|
12915
|
+
:rtype: str
|
|
12916
|
+
"""
|
|
12917
|
+
return self._Vip
|
|
12918
|
+
|
|
12919
|
+
@Vip.setter
|
|
12920
|
+
def Vip(self, Vip):
|
|
12921
|
+
self._Vip = Vip
|
|
12922
|
+
|
|
12923
|
+
@property
|
|
12924
|
+
def Vport(self):
|
|
12925
|
+
"""vip端口。
|
|
12926
|
+
:rtype: int
|
|
12927
|
+
"""
|
|
12928
|
+
return self._Vport
|
|
12929
|
+
|
|
12930
|
+
@Vport.setter
|
|
12931
|
+
def Vport(self, Vport):
|
|
12932
|
+
self._Vport = Vport
|
|
12933
|
+
|
|
12878
12934
|
|
|
12879
12935
|
def _deserialize(self, params):
|
|
12880
12936
|
self._DiagType = params.get("DiagType")
|
|
@@ -12887,6 +12943,10 @@ class DiagHistoryEventItem(AbstractModel):
|
|
|
12887
12943
|
self._InstanceId = params.get("InstanceId")
|
|
12888
12944
|
self._Metric = params.get("Metric")
|
|
12889
12945
|
self._Region = params.get("Region")
|
|
12946
|
+
self._ClusterId = params.get("ClusterId")
|
|
12947
|
+
self._ClusterName = params.get("ClusterName")
|
|
12948
|
+
self._Vip = params.get("Vip")
|
|
12949
|
+
self._Vport = params.get("Vport")
|
|
12890
12950
|
memeber_set = set(params.keys())
|
|
12891
12951
|
for name, value in vars(self).items():
|
|
12892
12952
|
property_name = name[1:]
|
|
@@ -2443,6 +2443,29 @@ class DlcClient(AbstractClient):
|
|
|
2443
2443
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2444
2444
|
|
|
2445
2445
|
|
|
2446
|
+
def DescribeUserRegisterTime(self, request):
|
|
2447
|
+
"""该接口(DescribeUserRegisterTime)用于查询当前用户注册时间,并判断是否是老用户。
|
|
2448
|
+
|
|
2449
|
+
:param request: Request instance for DescribeUserRegisterTime.
|
|
2450
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeUserRegisterTimeRequest`
|
|
2451
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeUserRegisterTimeResponse`
|
|
2452
|
+
|
|
2453
|
+
"""
|
|
2454
|
+
try:
|
|
2455
|
+
params = request._serialize()
|
|
2456
|
+
headers = request.headers
|
|
2457
|
+
body = self.call("DescribeUserRegisterTime", params, headers=headers)
|
|
2458
|
+
response = json.loads(body)
|
|
2459
|
+
model = models.DescribeUserRegisterTimeResponse()
|
|
2460
|
+
model._deserialize(response["Response"])
|
|
2461
|
+
return model
|
|
2462
|
+
except Exception as e:
|
|
2463
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2464
|
+
raise
|
|
2465
|
+
else:
|
|
2466
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2467
|
+
|
|
2468
|
+
|
|
2446
2469
|
def DescribeUserRoles(self, request):
|
|
2447
2470
|
"""列举用户角色信息
|
|
2448
2471
|
|
|
@@ -21481,6 +21481,70 @@ class DescribeUserInfoResponse(AbstractModel):
|
|
|
21481
21481
|
self._RequestId = params.get("RequestId")
|
|
21482
21482
|
|
|
21483
21483
|
|
|
21484
|
+
class DescribeUserRegisterTimeRequest(AbstractModel):
|
|
21485
|
+
"""DescribeUserRegisterTime请求参数结构体
|
|
21486
|
+
|
|
21487
|
+
"""
|
|
21488
|
+
|
|
21489
|
+
|
|
21490
|
+
class DescribeUserRegisterTimeResponse(AbstractModel):
|
|
21491
|
+
"""DescribeUserRegisterTime返回参数结构体
|
|
21492
|
+
|
|
21493
|
+
"""
|
|
21494
|
+
|
|
21495
|
+
def __init__(self):
|
|
21496
|
+
r"""
|
|
21497
|
+
:param _RegisterTime: 用户注册时间
|
|
21498
|
+
:type RegisterTime: int
|
|
21499
|
+
:param _IsOldUser: 是否时老用户
|
|
21500
|
+
:type IsOldUser: bool
|
|
21501
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
21502
|
+
:type RequestId: str
|
|
21503
|
+
"""
|
|
21504
|
+
self._RegisterTime = None
|
|
21505
|
+
self._IsOldUser = None
|
|
21506
|
+
self._RequestId = None
|
|
21507
|
+
|
|
21508
|
+
@property
|
|
21509
|
+
def RegisterTime(self):
|
|
21510
|
+
"""用户注册时间
|
|
21511
|
+
:rtype: int
|
|
21512
|
+
"""
|
|
21513
|
+
return self._RegisterTime
|
|
21514
|
+
|
|
21515
|
+
@RegisterTime.setter
|
|
21516
|
+
def RegisterTime(self, RegisterTime):
|
|
21517
|
+
self._RegisterTime = RegisterTime
|
|
21518
|
+
|
|
21519
|
+
@property
|
|
21520
|
+
def IsOldUser(self):
|
|
21521
|
+
"""是否时老用户
|
|
21522
|
+
:rtype: bool
|
|
21523
|
+
"""
|
|
21524
|
+
return self._IsOldUser
|
|
21525
|
+
|
|
21526
|
+
@IsOldUser.setter
|
|
21527
|
+
def IsOldUser(self, IsOldUser):
|
|
21528
|
+
self._IsOldUser = IsOldUser
|
|
21529
|
+
|
|
21530
|
+
@property
|
|
21531
|
+
def RequestId(self):
|
|
21532
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
21533
|
+
:rtype: str
|
|
21534
|
+
"""
|
|
21535
|
+
return self._RequestId
|
|
21536
|
+
|
|
21537
|
+
@RequestId.setter
|
|
21538
|
+
def RequestId(self, RequestId):
|
|
21539
|
+
self._RequestId = RequestId
|
|
21540
|
+
|
|
21541
|
+
|
|
21542
|
+
def _deserialize(self, params):
|
|
21543
|
+
self._RegisterTime = params.get("RegisterTime")
|
|
21544
|
+
self._IsOldUser = params.get("IsOldUser")
|
|
21545
|
+
self._RequestId = params.get("RequestId")
|
|
21546
|
+
|
|
21547
|
+
|
|
21484
21548
|
class DescribeUserRolesRequest(AbstractModel):
|
|
21485
21549
|
"""DescribeUserRoles请求参数结构体
|
|
21486
21550
|
|
|
@@ -9691,8 +9691,7 @@ class ChannelDescribeEmployeesRequest(AbstractModel):
|
|
|
9691
9691
|
</ul>
|
|
9692
9692
|
注: `同名字的Key的过滤条件会冲突, 只能填写一个`
|
|
9693
9693
|
:type Filters: list of Filter
|
|
9694
|
-
:param _Offset:
|
|
9695
|
-
页码从 0 开始,即首页为 0,最大20000。
|
|
9694
|
+
:param _Offset: 偏移量:从 0 开始,最大20000。
|
|
9696
9695
|
:type Offset: int
|
|
9697
9696
|
:param _Operator: 暂未开放
|
|
9698
9697
|
:type Operator: :class:`tencentcloud.essbasic.v20210526.models.UserInfo`
|
|
@@ -9752,8 +9751,7 @@ class ChannelDescribeEmployeesRequest(AbstractModel):
|
|
|
9752
9751
|
|
|
9753
9752
|
@property
|
|
9754
9753
|
def Offset(self):
|
|
9755
|
-
"""
|
|
9756
|
-
页码从 0 开始,即首页为 0,最大20000。
|
|
9754
|
+
"""偏移量:从 0 开始,最大20000。
|
|
9757
9755
|
:rtype: int
|
|
9758
9756
|
"""
|
|
9759
9757
|
return self._Offset
|
|
@@ -12183,8 +12181,38 @@ class CommonApproverOption(AbstractModel):
|
|
|
12183
12181
|
r"""
|
|
12184
12182
|
:param _CanEditApprover: 是否允许修改签署人信息
|
|
12185
12183
|
:type CanEditApprover: bool
|
|
12184
|
+
:param _NoRefuse: 是否可以拒签 默认false-可以拒签 true-不可以拒签
|
|
12185
|
+
:type NoRefuse: bool
|
|
12186
|
+
:param _NoTransfer: 是否可以转发 默认false-可以转发 true-不可以转发
|
|
12187
|
+
:type NoTransfer: bool
|
|
12188
|
+
:param _HideOneKeySign: 当签署方有多个签署区时候,是否隐藏一键所有的签署区
|
|
12189
|
+
|
|
12190
|
+
false:(默认)不隐藏
|
|
12191
|
+
true:隐藏,每个签署区要单独选择印章或者签名
|
|
12192
|
+
:type HideOneKeySign: bool
|
|
12193
|
+
:param _FlowReadLimit: 签署人阅读合同限制参数
|
|
12194
|
+
<br/>取值:
|
|
12195
|
+
<ul>
|
|
12196
|
+
<li> LimitReadTimeAndBottom,阅读合同必须限制阅读时长并且必须阅读到底</li>
|
|
12197
|
+
<li> LimitReadTime,阅读合同仅限制阅读时长</li>
|
|
12198
|
+
<li> LimitBottom,阅读合同仅限制必须阅读到底</li>
|
|
12199
|
+
<li> NoReadTimeAndBottom,阅读合同不限制阅读时长且不限制阅读到底(白名单功能,请联系客户经理开白使用)</li>
|
|
12200
|
+
</ul>
|
|
12201
|
+
:type FlowReadLimit: str
|
|
12202
|
+
:param _ForbidAddSignDate: 禁止在签署过程中添加签署日期控件
|
|
12203
|
+
<br/>前置条件:文件发起合同时,指定SignBeanTag=1(可以在签署过程中添加签署控件):
|
|
12204
|
+
<ul>
|
|
12205
|
+
<li> 默认值:false,在开启:签署过程中添加签署控件时,添加签署控件会默认自带签署日期控件</li>
|
|
12206
|
+
<li> 可选值:true,在开启:签署过程中添加签署控件时,添加签署控件不会自带签署日期控件</li>
|
|
12207
|
+
</ul>
|
|
12208
|
+
:type ForbidAddSignDate: bool
|
|
12186
12209
|
"""
|
|
12187
12210
|
self._CanEditApprover = None
|
|
12211
|
+
self._NoRefuse = None
|
|
12212
|
+
self._NoTransfer = None
|
|
12213
|
+
self._HideOneKeySign = None
|
|
12214
|
+
self._FlowReadLimit = None
|
|
12215
|
+
self._ForbidAddSignDate = None
|
|
12188
12216
|
|
|
12189
12217
|
@property
|
|
12190
12218
|
def CanEditApprover(self):
|
|
@@ -12197,9 +12225,84 @@ class CommonApproverOption(AbstractModel):
|
|
|
12197
12225
|
def CanEditApprover(self, CanEditApprover):
|
|
12198
12226
|
self._CanEditApprover = CanEditApprover
|
|
12199
12227
|
|
|
12228
|
+
@property
|
|
12229
|
+
def NoRefuse(self):
|
|
12230
|
+
"""是否可以拒签 默认false-可以拒签 true-不可以拒签
|
|
12231
|
+
:rtype: bool
|
|
12232
|
+
"""
|
|
12233
|
+
return self._NoRefuse
|
|
12234
|
+
|
|
12235
|
+
@NoRefuse.setter
|
|
12236
|
+
def NoRefuse(self, NoRefuse):
|
|
12237
|
+
self._NoRefuse = NoRefuse
|
|
12238
|
+
|
|
12239
|
+
@property
|
|
12240
|
+
def NoTransfer(self):
|
|
12241
|
+
"""是否可以转发 默认false-可以转发 true-不可以转发
|
|
12242
|
+
:rtype: bool
|
|
12243
|
+
"""
|
|
12244
|
+
return self._NoTransfer
|
|
12245
|
+
|
|
12246
|
+
@NoTransfer.setter
|
|
12247
|
+
def NoTransfer(self, NoTransfer):
|
|
12248
|
+
self._NoTransfer = NoTransfer
|
|
12249
|
+
|
|
12250
|
+
@property
|
|
12251
|
+
def HideOneKeySign(self):
|
|
12252
|
+
"""当签署方有多个签署区时候,是否隐藏一键所有的签署区
|
|
12253
|
+
|
|
12254
|
+
false:(默认)不隐藏
|
|
12255
|
+
true:隐藏,每个签署区要单独选择印章或者签名
|
|
12256
|
+
:rtype: bool
|
|
12257
|
+
"""
|
|
12258
|
+
return self._HideOneKeySign
|
|
12259
|
+
|
|
12260
|
+
@HideOneKeySign.setter
|
|
12261
|
+
def HideOneKeySign(self, HideOneKeySign):
|
|
12262
|
+
self._HideOneKeySign = HideOneKeySign
|
|
12263
|
+
|
|
12264
|
+
@property
|
|
12265
|
+
def FlowReadLimit(self):
|
|
12266
|
+
"""签署人阅读合同限制参数
|
|
12267
|
+
<br/>取值:
|
|
12268
|
+
<ul>
|
|
12269
|
+
<li> LimitReadTimeAndBottom,阅读合同必须限制阅读时长并且必须阅读到底</li>
|
|
12270
|
+
<li> LimitReadTime,阅读合同仅限制阅读时长</li>
|
|
12271
|
+
<li> LimitBottom,阅读合同仅限制必须阅读到底</li>
|
|
12272
|
+
<li> NoReadTimeAndBottom,阅读合同不限制阅读时长且不限制阅读到底(白名单功能,请联系客户经理开白使用)</li>
|
|
12273
|
+
</ul>
|
|
12274
|
+
:rtype: str
|
|
12275
|
+
"""
|
|
12276
|
+
return self._FlowReadLimit
|
|
12277
|
+
|
|
12278
|
+
@FlowReadLimit.setter
|
|
12279
|
+
def FlowReadLimit(self, FlowReadLimit):
|
|
12280
|
+
self._FlowReadLimit = FlowReadLimit
|
|
12281
|
+
|
|
12282
|
+
@property
|
|
12283
|
+
def ForbidAddSignDate(self):
|
|
12284
|
+
"""禁止在签署过程中添加签署日期控件
|
|
12285
|
+
<br/>前置条件:文件发起合同时,指定SignBeanTag=1(可以在签署过程中添加签署控件):
|
|
12286
|
+
<ul>
|
|
12287
|
+
<li> 默认值:false,在开启:签署过程中添加签署控件时,添加签署控件会默认自带签署日期控件</li>
|
|
12288
|
+
<li> 可选值:true,在开启:签署过程中添加签署控件时,添加签署控件不会自带签署日期控件</li>
|
|
12289
|
+
</ul>
|
|
12290
|
+
:rtype: bool
|
|
12291
|
+
"""
|
|
12292
|
+
return self._ForbidAddSignDate
|
|
12293
|
+
|
|
12294
|
+
@ForbidAddSignDate.setter
|
|
12295
|
+
def ForbidAddSignDate(self, ForbidAddSignDate):
|
|
12296
|
+
self._ForbidAddSignDate = ForbidAddSignDate
|
|
12297
|
+
|
|
12200
12298
|
|
|
12201
12299
|
def _deserialize(self, params):
|
|
12202
12300
|
self._CanEditApprover = params.get("CanEditApprover")
|
|
12301
|
+
self._NoRefuse = params.get("NoRefuse")
|
|
12302
|
+
self._NoTransfer = params.get("NoTransfer")
|
|
12303
|
+
self._HideOneKeySign = params.get("HideOneKeySign")
|
|
12304
|
+
self._FlowReadLimit = params.get("FlowReadLimit")
|
|
12305
|
+
self._ForbidAddSignDate = params.get("ForbidAddSignDate")
|
|
12203
12306
|
memeber_set = set(params.keys())
|
|
12204
12307
|
for name, value in vars(self).items():
|
|
12205
12308
|
property_name = name[1:]
|
|
@@ -39,7 +39,7 @@ class AndroidApp(AbstractModel):
|
|
|
39
39
|
:type UserId: str
|
|
40
40
|
:param _AppMode: 应用模式(NORMAL : 普通模式;ADVANCED : 高级模式)
|
|
41
41
|
:type AppMode: str
|
|
42
|
-
:param _UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
|
|
42
|
+
:param _UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、PACKAGE_NAME_MISMATCH 包名不匹配、VERSION_ALREADY_EXISTS 版本已存在、APP_PARSE_FAIL app 解析失败、APP_EXISTS_SECURITY_RISK app 存在安全风险、NORMAL 默认状态
|
|
43
43
|
:type UpdateState: str
|
|
44
44
|
:param _PackageName: 安卓应用包名
|
|
45
45
|
:type PackageName: str
|
|
@@ -133,7 +133,7 @@ class AndroidApp(AbstractModel):
|
|
|
133
133
|
|
|
134
134
|
@property
|
|
135
135
|
def UpdateState(self):
|
|
136
|
-
"""应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
|
|
136
|
+
"""应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、PACKAGE_NAME_MISMATCH 包名不匹配、VERSION_ALREADY_EXISTS 版本已存在、APP_PARSE_FAIL app 解析失败、APP_EXISTS_SECURITY_RISK app 存在安全风险、NORMAL 默认状态
|
|
137
137
|
:rtype: str
|
|
138
138
|
"""
|
|
139
139
|
return self._UpdateState
|
|
@@ -239,9 +239,7 @@ class AndroidAppVersionInfo(AbstractModel):
|
|
|
239
239
|
r"""
|
|
240
240
|
:param _AndroidAppVersion: 安卓应用版本
|
|
241
241
|
:type AndroidAppVersion: str
|
|
242
|
-
:param _State:
|
|
243
|
-
CREATING: 创建中、
|
|
244
|
-
CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
242
|
+
:param _State: 安卓应用版本创建状态,取值:NORMAL:无(默认)、UPLOADING:上传中、CREATING: 创建中、CREATE_FAIL:创建失败、PACKAGE_NAME_MISMATCH:包名不匹配、VERSION_ALREADY_EXISTS:版本已存在、APP_PARSE_FAIL: app 解析失败、APP_EXISTS_SECURITY_RISK:app 存在安全风险、CREATE_SUCCESS:创建成功
|
|
245
243
|
:type State: str
|
|
246
244
|
:param _CreateTime: 安卓应用版本创建时间
|
|
247
245
|
:type CreateTime: str
|
|
@@ -257,6 +255,12 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
257
255
|
:type Activity: str
|
|
258
256
|
:param _VersionName: 应用版本号(Version Name)
|
|
259
257
|
:type VersionName: str
|
|
258
|
+
:param _MD5: 应用包 MD5
|
|
259
|
+
:type MD5: str
|
|
260
|
+
:param _FileSize: 应用包文件大小(字节)
|
|
261
|
+
:type FileSize: int
|
|
262
|
+
:param _PackageName: 安卓应用包名
|
|
263
|
+
:type PackageName: str
|
|
260
264
|
"""
|
|
261
265
|
self._AndroidAppVersion = None
|
|
262
266
|
self._State = None
|
|
@@ -267,6 +271,9 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
267
271
|
self._AndroidAppVersionName = None
|
|
268
272
|
self._Activity = None
|
|
269
273
|
self._VersionName = None
|
|
274
|
+
self._MD5 = None
|
|
275
|
+
self._FileSize = None
|
|
276
|
+
self._PackageName = None
|
|
270
277
|
|
|
271
278
|
@property
|
|
272
279
|
def AndroidAppVersion(self):
|
|
@@ -281,9 +288,7 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
281
288
|
|
|
282
289
|
@property
|
|
283
290
|
def State(self):
|
|
284
|
-
"""
|
|
285
|
-
CREATING: 创建中、
|
|
286
|
-
CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
291
|
+
"""安卓应用版本创建状态,取值:NORMAL:无(默认)、UPLOADING:上传中、CREATING: 创建中、CREATE_FAIL:创建失败、PACKAGE_NAME_MISMATCH:包名不匹配、VERSION_ALREADY_EXISTS:版本已存在、APP_PARSE_FAIL: app 解析失败、APP_EXISTS_SECURITY_RISK:app 存在安全风险、CREATE_SUCCESS:创建成功
|
|
287
292
|
:rtype: str
|
|
288
293
|
"""
|
|
289
294
|
return self._State
|
|
@@ -369,6 +374,39 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
369
374
|
def VersionName(self, VersionName):
|
|
370
375
|
self._VersionName = VersionName
|
|
371
376
|
|
|
377
|
+
@property
|
|
378
|
+
def MD5(self):
|
|
379
|
+
"""应用包 MD5
|
|
380
|
+
:rtype: str
|
|
381
|
+
"""
|
|
382
|
+
return self._MD5
|
|
383
|
+
|
|
384
|
+
@MD5.setter
|
|
385
|
+
def MD5(self, MD5):
|
|
386
|
+
self._MD5 = MD5
|
|
387
|
+
|
|
388
|
+
@property
|
|
389
|
+
def FileSize(self):
|
|
390
|
+
"""应用包文件大小(字节)
|
|
391
|
+
:rtype: int
|
|
392
|
+
"""
|
|
393
|
+
return self._FileSize
|
|
394
|
+
|
|
395
|
+
@FileSize.setter
|
|
396
|
+
def FileSize(self, FileSize):
|
|
397
|
+
self._FileSize = FileSize
|
|
398
|
+
|
|
399
|
+
@property
|
|
400
|
+
def PackageName(self):
|
|
401
|
+
"""安卓应用包名
|
|
402
|
+
:rtype: str
|
|
403
|
+
"""
|
|
404
|
+
return self._PackageName
|
|
405
|
+
|
|
406
|
+
@PackageName.setter
|
|
407
|
+
def PackageName(self, PackageName):
|
|
408
|
+
self._PackageName = PackageName
|
|
409
|
+
|
|
372
410
|
|
|
373
411
|
def _deserialize(self, params):
|
|
374
412
|
self._AndroidAppVersion = params.get("AndroidAppVersion")
|
|
@@ -380,6 +418,9 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
380
418
|
self._AndroidAppVersionName = params.get("AndroidAppVersionName")
|
|
381
419
|
self._Activity = params.get("Activity")
|
|
382
420
|
self._VersionName = params.get("VersionName")
|
|
421
|
+
self._MD5 = params.get("MD5")
|
|
422
|
+
self._FileSize = params.get("FileSize")
|
|
423
|
+
self._PackageName = params.get("PackageName")
|
|
383
424
|
memeber_set = set(params.keys())
|
|
384
425
|
for name, value in vars(self).items():
|
|
385
426
|
property_name = name[1:]
|
|
@@ -4638,11 +4638,21 @@ class Multimedia(AbstractModel):
|
|
|
4638
4638
|
说明:
|
|
4639
4639
|
1. type 为 image 时,地址为图片的预览地址;其他类型时,地址为封面图地址。
|
|
4640
4640
|
:type Url: str
|
|
4641
|
+
:param _Width: 如果Url为图片地址,标识图片宽度。
|
|
4642
|
+
:type Width: int
|
|
4643
|
+
:param _Height: 如果Url为图片地址,标识图片高度。
|
|
4644
|
+
:type Height: int
|
|
4641
4645
|
:param _JumpUrl: 多媒体详情地址。
|
|
4642
4646
|
说明:
|
|
4643
4647
|
1. 仅 type 为 image 时,该字段有值。
|
|
4644
4648
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4645
4649
|
:type JumpUrl: str
|
|
4650
|
+
:param _ThumbURL: 缩略图地址。
|
|
4651
|
+
:type ThumbURL: str
|
|
4652
|
+
:param _ThumbWidth: 缩略图宽度
|
|
4653
|
+
:type ThumbWidth: int
|
|
4654
|
+
:param _ThumbHeight: 缩略图高度
|
|
4655
|
+
:type ThumbHeight: int
|
|
4646
4656
|
:param _Title: 名称。
|
|
4647
4657
|
说明:
|
|
4648
4658
|
1. type 为 image 时,该字段为空。
|
|
@@ -4661,14 +4671,28 @@ class Multimedia(AbstractModel):
|
|
|
4661
4671
|
1. 仅 type 为 music 时,该字段有值。
|
|
4662
4672
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4663
4673
|
:type Ext: :class:`tencentcloud.hunyuan.v20230901.models.SongExt`
|
|
4674
|
+
:param _PublishTime: 发布时间。
|
|
4675
|
+
:type PublishTime: str
|
|
4676
|
+
:param _SiteName: 站点名称
|
|
4677
|
+
:type SiteName: str
|
|
4678
|
+
:param _SiteIcon: 站点图标
|
|
4679
|
+
:type SiteIcon: str
|
|
4664
4680
|
"""
|
|
4665
4681
|
self._Type = None
|
|
4666
4682
|
self._Url = None
|
|
4683
|
+
self._Width = None
|
|
4684
|
+
self._Height = None
|
|
4667
4685
|
self._JumpUrl = None
|
|
4686
|
+
self._ThumbURL = None
|
|
4687
|
+
self._ThumbWidth = None
|
|
4688
|
+
self._ThumbHeight = None
|
|
4668
4689
|
self._Title = None
|
|
4669
4690
|
self._Desc = None
|
|
4670
4691
|
self._Singer = None
|
|
4671
4692
|
self._Ext = None
|
|
4693
|
+
self._PublishTime = None
|
|
4694
|
+
self._SiteName = None
|
|
4695
|
+
self._SiteIcon = None
|
|
4672
4696
|
|
|
4673
4697
|
@property
|
|
4674
4698
|
def Type(self):
|
|
@@ -4697,6 +4721,28 @@ class Multimedia(AbstractModel):
|
|
|
4697
4721
|
def Url(self, Url):
|
|
4698
4722
|
self._Url = Url
|
|
4699
4723
|
|
|
4724
|
+
@property
|
|
4725
|
+
def Width(self):
|
|
4726
|
+
"""如果Url为图片地址,标识图片宽度。
|
|
4727
|
+
:rtype: int
|
|
4728
|
+
"""
|
|
4729
|
+
return self._Width
|
|
4730
|
+
|
|
4731
|
+
@Width.setter
|
|
4732
|
+
def Width(self, Width):
|
|
4733
|
+
self._Width = Width
|
|
4734
|
+
|
|
4735
|
+
@property
|
|
4736
|
+
def Height(self):
|
|
4737
|
+
"""如果Url为图片地址,标识图片高度。
|
|
4738
|
+
:rtype: int
|
|
4739
|
+
"""
|
|
4740
|
+
return self._Height
|
|
4741
|
+
|
|
4742
|
+
@Height.setter
|
|
4743
|
+
def Height(self, Height):
|
|
4744
|
+
self._Height = Height
|
|
4745
|
+
|
|
4700
4746
|
@property
|
|
4701
4747
|
def JumpUrl(self):
|
|
4702
4748
|
"""多媒体详情地址。
|
|
@@ -4711,6 +4757,39 @@ class Multimedia(AbstractModel):
|
|
|
4711
4757
|
def JumpUrl(self, JumpUrl):
|
|
4712
4758
|
self._JumpUrl = JumpUrl
|
|
4713
4759
|
|
|
4760
|
+
@property
|
|
4761
|
+
def ThumbURL(self):
|
|
4762
|
+
"""缩略图地址。
|
|
4763
|
+
:rtype: str
|
|
4764
|
+
"""
|
|
4765
|
+
return self._ThumbURL
|
|
4766
|
+
|
|
4767
|
+
@ThumbURL.setter
|
|
4768
|
+
def ThumbURL(self, ThumbURL):
|
|
4769
|
+
self._ThumbURL = ThumbURL
|
|
4770
|
+
|
|
4771
|
+
@property
|
|
4772
|
+
def ThumbWidth(self):
|
|
4773
|
+
"""缩略图宽度
|
|
4774
|
+
:rtype: int
|
|
4775
|
+
"""
|
|
4776
|
+
return self._ThumbWidth
|
|
4777
|
+
|
|
4778
|
+
@ThumbWidth.setter
|
|
4779
|
+
def ThumbWidth(self, ThumbWidth):
|
|
4780
|
+
self._ThumbWidth = ThumbWidth
|
|
4781
|
+
|
|
4782
|
+
@property
|
|
4783
|
+
def ThumbHeight(self):
|
|
4784
|
+
"""缩略图高度
|
|
4785
|
+
:rtype: int
|
|
4786
|
+
"""
|
|
4787
|
+
return self._ThumbHeight
|
|
4788
|
+
|
|
4789
|
+
@ThumbHeight.setter
|
|
4790
|
+
def ThumbHeight(self, ThumbHeight):
|
|
4791
|
+
self._ThumbHeight = ThumbHeight
|
|
4792
|
+
|
|
4714
4793
|
@property
|
|
4715
4794
|
def Title(self):
|
|
4716
4795
|
"""名称。
|
|
@@ -4765,17 +4844,58 @@ class Multimedia(AbstractModel):
|
|
|
4765
4844
|
def Ext(self, Ext):
|
|
4766
4845
|
self._Ext = Ext
|
|
4767
4846
|
|
|
4847
|
+
@property
|
|
4848
|
+
def PublishTime(self):
|
|
4849
|
+
"""发布时间。
|
|
4850
|
+
:rtype: str
|
|
4851
|
+
"""
|
|
4852
|
+
return self._PublishTime
|
|
4853
|
+
|
|
4854
|
+
@PublishTime.setter
|
|
4855
|
+
def PublishTime(self, PublishTime):
|
|
4856
|
+
self._PublishTime = PublishTime
|
|
4857
|
+
|
|
4858
|
+
@property
|
|
4859
|
+
def SiteName(self):
|
|
4860
|
+
"""站点名称
|
|
4861
|
+
:rtype: str
|
|
4862
|
+
"""
|
|
4863
|
+
return self._SiteName
|
|
4864
|
+
|
|
4865
|
+
@SiteName.setter
|
|
4866
|
+
def SiteName(self, SiteName):
|
|
4867
|
+
self._SiteName = SiteName
|
|
4868
|
+
|
|
4869
|
+
@property
|
|
4870
|
+
def SiteIcon(self):
|
|
4871
|
+
"""站点图标
|
|
4872
|
+
:rtype: str
|
|
4873
|
+
"""
|
|
4874
|
+
return self._SiteIcon
|
|
4875
|
+
|
|
4876
|
+
@SiteIcon.setter
|
|
4877
|
+
def SiteIcon(self, SiteIcon):
|
|
4878
|
+
self._SiteIcon = SiteIcon
|
|
4879
|
+
|
|
4768
4880
|
|
|
4769
4881
|
def _deserialize(self, params):
|
|
4770
4882
|
self._Type = params.get("Type")
|
|
4771
4883
|
self._Url = params.get("Url")
|
|
4884
|
+
self._Width = params.get("Width")
|
|
4885
|
+
self._Height = params.get("Height")
|
|
4772
4886
|
self._JumpUrl = params.get("JumpUrl")
|
|
4887
|
+
self._ThumbURL = params.get("ThumbURL")
|
|
4888
|
+
self._ThumbWidth = params.get("ThumbWidth")
|
|
4889
|
+
self._ThumbHeight = params.get("ThumbHeight")
|
|
4773
4890
|
self._Title = params.get("Title")
|
|
4774
4891
|
self._Desc = params.get("Desc")
|
|
4775
4892
|
self._Singer = params.get("Singer")
|
|
4776
4893
|
if params.get("Ext") is not None:
|
|
4777
4894
|
self._Ext = SongExt()
|
|
4778
4895
|
self._Ext._deserialize(params.get("Ext"))
|
|
4896
|
+
self._PublishTime = params.get("PublishTime")
|
|
4897
|
+
self._SiteName = params.get("SiteName")
|
|
4898
|
+
self._SiteIcon = params.get("SiteIcon")
|
|
4779
4899
|
memeber_set = set(params.keys())
|
|
4780
4900
|
for name, value in vars(self).items():
|
|
4781
4901
|
property_name = name[1:]
|