tencentcloud-sdk-python 3.0.1217__py2.py3-none-any.whl → 3.0.1219__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/cdwdoris/v20211228/models.py +26 -2
- tencentcloud/cynosdb/v20190107/models.py +26 -0
- tencentcloud/dsgc/v20190723/models.py +24 -0
- tencentcloud/es/v20180416/models.py +50 -0
- tencentcloud/ess/v20201111/models.py +13 -3
- tencentcloud/essbasic/v20210526/models.py +13 -3
- tencentcloud/lcic/v20220817/lcic_client.py +23 -0
- tencentcloud/lcic/v20220817/models.py +261 -0
- tencentcloud/mongodb/v20190725/models.py +13 -5
- tencentcloud/scf/v20180416/models.py +23 -4
- tencentcloud/sms/v20210111/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/models.py +13 -0
- tencentcloud/wedata/v20210820/models.py +13 -0
- {tencentcloud_sdk_python-3.0.1217.dist-info → tencentcloud_sdk_python-3.0.1219.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1217.dist-info → tencentcloud_sdk_python-3.0.1219.dist-info}/RECORD +19 -19
- {tencentcloud_sdk_python-3.0.1217.dist-info → tencentcloud_sdk_python-3.0.1219.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1217.dist-info → tencentcloud_sdk_python-3.0.1219.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1217.dist-info → tencentcloud_sdk_python-3.0.1219.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -5141,7 +5141,7 @@ class DescribeInstancesHealthStateRequest(AbstractModel):
|
|
5141
5141
|
r"""
|
5142
5142
|
:param _InstanceID: 集群Id
|
5143
5143
|
:type InstanceID: str
|
5144
|
-
:param _Input:
|
5144
|
+
:param _Input: 为空:代表当前appId下所有集群 或者 某个集群Id
|
5145
5145
|
:type Input: str
|
5146
5146
|
"""
|
5147
5147
|
self._InstanceID = None
|
@@ -5188,7 +5188,7 @@ class DescribeInstancesHealthStateResponse(AbstractModel):
|
|
5188
5188
|
|
5189
5189
|
def __init__(self):
|
5190
5190
|
r"""
|
5191
|
-
:param _Data:
|
5191
|
+
:param _Data: base64编码后的数据,包含了集群的健康信息
|
5192
5192
|
注意:此字段可能返回 null,表示取不到有效值。
|
5193
5193
|
:type Data: str
|
5194
5194
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -11666,6 +11666,10 @@ class UserInfo(AbstractModel):
|
|
11666
11666
|
:type Describe: str
|
11667
11667
|
:param _OldPwd: 旧密码
|
11668
11668
|
:type OldPwd: str
|
11669
|
+
:param _CamUin: 绑定的子用户uin
|
11670
|
+
:type CamUin: str
|
11671
|
+
:param _CamRangerGroupIds: ranger group id列表
|
11672
|
+
:type CamRangerGroupIds: list of int
|
11669
11673
|
"""
|
11670
11674
|
self._InstanceId = None
|
11671
11675
|
self._UserName = None
|
@@ -11674,6 +11678,8 @@ class UserInfo(AbstractModel):
|
|
11674
11678
|
self._OldWhiteHost = None
|
11675
11679
|
self._Describe = None
|
11676
11680
|
self._OldPwd = None
|
11681
|
+
self._CamUin = None
|
11682
|
+
self._CamRangerGroupIds = None
|
11677
11683
|
|
11678
11684
|
@property
|
11679
11685
|
def InstanceId(self):
|
@@ -11731,6 +11737,22 @@ class UserInfo(AbstractModel):
|
|
11731
11737
|
def OldPwd(self, OldPwd):
|
11732
11738
|
self._OldPwd = OldPwd
|
11733
11739
|
|
11740
|
+
@property
|
11741
|
+
def CamUin(self):
|
11742
|
+
return self._CamUin
|
11743
|
+
|
11744
|
+
@CamUin.setter
|
11745
|
+
def CamUin(self, CamUin):
|
11746
|
+
self._CamUin = CamUin
|
11747
|
+
|
11748
|
+
@property
|
11749
|
+
def CamRangerGroupIds(self):
|
11750
|
+
return self._CamRangerGroupIds
|
11751
|
+
|
11752
|
+
@CamRangerGroupIds.setter
|
11753
|
+
def CamRangerGroupIds(self, CamRangerGroupIds):
|
11754
|
+
self._CamRangerGroupIds = CamRangerGroupIds
|
11755
|
+
|
11734
11756
|
|
11735
11757
|
def _deserialize(self, params):
|
11736
11758
|
self._InstanceId = params.get("InstanceId")
|
@@ -11740,6 +11762,8 @@ class UserInfo(AbstractModel):
|
|
11740
11762
|
self._OldWhiteHost = params.get("OldWhiteHost")
|
11741
11763
|
self._Describe = params.get("Describe")
|
11742
11764
|
self._OldPwd = params.get("OldPwd")
|
11765
|
+
self._CamUin = params.get("CamUin")
|
11766
|
+
self._CamRangerGroupIds = params.get("CamRangerGroupIds")
|
11743
11767
|
memeber_set = set(params.keys())
|
11744
11768
|
for name, value in vars(self).items():
|
11745
11769
|
property_name = name[1:]
|
@@ -3384,6 +3384,9 @@ class ClusterInstanceDetail(AbstractModel):
|
|
3384
3384
|
:param _InstanceDeviceType: 实例机器类型
|
3385
3385
|
注意:此字段可能返回 null,表示取不到有效值。
|
3386
3386
|
:type InstanceDeviceType: str
|
3387
|
+
:param _InstanceStorageType: 实例存储类型
|
3388
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3389
|
+
:type InstanceStorageType: str
|
3387
3390
|
"""
|
3388
3391
|
self._InstanceId = None
|
3389
3392
|
self._InstanceName = None
|
@@ -3400,6 +3403,7 @@ class ClusterInstanceDetail(AbstractModel):
|
|
3400
3403
|
self._ServerlessStatus = None
|
3401
3404
|
self._InstanceTasks = None
|
3402
3405
|
self._InstanceDeviceType = None
|
3406
|
+
self._InstanceStorageType = None
|
3403
3407
|
|
3404
3408
|
@property
|
3405
3409
|
def InstanceId(self):
|
@@ -3521,6 +3525,14 @@ class ClusterInstanceDetail(AbstractModel):
|
|
3521
3525
|
def InstanceDeviceType(self, InstanceDeviceType):
|
3522
3526
|
self._InstanceDeviceType = InstanceDeviceType
|
3523
3527
|
|
3528
|
+
@property
|
3529
|
+
def InstanceStorageType(self):
|
3530
|
+
return self._InstanceStorageType
|
3531
|
+
|
3532
|
+
@InstanceStorageType.setter
|
3533
|
+
def InstanceStorageType(self, InstanceStorageType):
|
3534
|
+
self._InstanceStorageType = InstanceStorageType
|
3535
|
+
|
3524
3536
|
|
3525
3537
|
def _deserialize(self, params):
|
3526
3538
|
self._InstanceId = params.get("InstanceId")
|
@@ -3543,6 +3555,7 @@ class ClusterInstanceDetail(AbstractModel):
|
|
3543
3555
|
obj._deserialize(item)
|
3544
3556
|
self._InstanceTasks.append(obj)
|
3545
3557
|
self._InstanceDeviceType = params.get("InstanceDeviceType")
|
3558
|
+
self._InstanceStorageType = params.get("InstanceStorageType")
|
3546
3559
|
memeber_set = set(params.keys())
|
3547
3560
|
for name, value in vars(self).items():
|
3548
3561
|
property_name = name[1:]
|
@@ -7589,6 +7602,9 @@ pause
|
|
7589
7602
|
:param _DeviceType: 实例机器类型
|
7590
7603
|
注意:此字段可能返回 null,表示取不到有效值。
|
7591
7604
|
:type DeviceType: str
|
7605
|
+
:param _InstanceStorageType: 实例存储类型
|
7606
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7607
|
+
:type InstanceStorageType: str
|
7592
7608
|
"""
|
7593
7609
|
self._Uin = None
|
7594
7610
|
self._AppId = None
|
@@ -7645,6 +7661,7 @@ pause
|
|
7645
7661
|
self._InstanceIndexMode = None
|
7646
7662
|
self._InstanceAbility = None
|
7647
7663
|
self._DeviceType = None
|
7664
|
+
self._InstanceStorageType = None
|
7648
7665
|
|
7649
7666
|
@property
|
7650
7667
|
def Uin(self):
|
@@ -8086,6 +8103,14 @@ pause
|
|
8086
8103
|
def DeviceType(self, DeviceType):
|
8087
8104
|
self._DeviceType = DeviceType
|
8088
8105
|
|
8106
|
+
@property
|
8107
|
+
def InstanceStorageType(self):
|
8108
|
+
return self._InstanceStorageType
|
8109
|
+
|
8110
|
+
@InstanceStorageType.setter
|
8111
|
+
def InstanceStorageType(self, InstanceStorageType):
|
8112
|
+
self._InstanceStorageType = InstanceStorageType
|
8113
|
+
|
8089
8114
|
|
8090
8115
|
def _deserialize(self, params):
|
8091
8116
|
self._Uin = params.get("Uin")
|
@@ -8165,6 +8190,7 @@ pause
|
|
8165
8190
|
self._InstanceAbility = InstanceAbility()
|
8166
8191
|
self._InstanceAbility._deserialize(params.get("InstanceAbility"))
|
8167
8192
|
self._DeviceType = params.get("DeviceType")
|
8193
|
+
self._InstanceStorageType = params.get("InstanceStorageType")
|
8168
8194
|
memeber_set = set(params.keys())
|
8169
8195
|
for name, value in vars(self).items():
|
8170
8196
|
property_name = name[1:]
|
@@ -14556,12 +14556,18 @@ class DescribeDSPARDBDataAssetDetailRequest(AbstractModel):
|
|
14556
14556
|
:type DspaId: str
|
14557
14557
|
:param _ComplianceId: 合规组Id
|
14558
14558
|
:type ComplianceId: int
|
14559
|
+
:param _Offset: 偏移量,默认为0。
|
14560
|
+
:type Offset: int
|
14561
|
+
:param _Limit: 返回数量,默认为20,最大值为100。
|
14562
|
+
:type Limit: int
|
14559
14563
|
:param _CreditScore: 可信分排序,ASC-升序
|
14560
14564
|
DESC降序
|
14561
14565
|
:type CreditScore: str
|
14562
14566
|
"""
|
14563
14567
|
self._DspaId = None
|
14564
14568
|
self._ComplianceId = None
|
14569
|
+
self._Offset = None
|
14570
|
+
self._Limit = None
|
14565
14571
|
self._CreditScore = None
|
14566
14572
|
|
14567
14573
|
@property
|
@@ -14580,6 +14586,22 @@ DESC降序
|
|
14580
14586
|
def ComplianceId(self, ComplianceId):
|
14581
14587
|
self._ComplianceId = ComplianceId
|
14582
14588
|
|
14589
|
+
@property
|
14590
|
+
def Offset(self):
|
14591
|
+
return self._Offset
|
14592
|
+
|
14593
|
+
@Offset.setter
|
14594
|
+
def Offset(self, Offset):
|
14595
|
+
self._Offset = Offset
|
14596
|
+
|
14597
|
+
@property
|
14598
|
+
def Limit(self):
|
14599
|
+
return self._Limit
|
14600
|
+
|
14601
|
+
@Limit.setter
|
14602
|
+
def Limit(self, Limit):
|
14603
|
+
self._Limit = Limit
|
14604
|
+
|
14583
14605
|
@property
|
14584
14606
|
def CreditScore(self):
|
14585
14607
|
return self._CreditScore
|
@@ -14592,6 +14614,8 @@ DESC降序
|
|
14592
14614
|
def _deserialize(self, params):
|
14593
14615
|
self._DspaId = params.get("DspaId")
|
14594
14616
|
self._ComplianceId = params.get("ComplianceId")
|
14617
|
+
self._Offset = params.get("Offset")
|
14618
|
+
self._Limit = params.get("Limit")
|
14595
14619
|
self._CreditScore = params.get("CreditScore")
|
14596
14620
|
memeber_set = set(params.keys())
|
14597
14621
|
for name, value in vars(self).items():
|
@@ -1120,6 +1120,8 @@ class CreateInstanceRequest(AbstractModel):
|
|
1120
1120
|
:type DisasterRecoverGroupAffinity: int
|
1121
1121
|
:param _SubProductCode: 子产品ID枚举值: 开源版:"sp_es_io2", 基础版:"sp_es_basic",白金版:"sp_es_platinum",企业版:"sp_es_enterprise",CDC白金版:"sp_es_cdc_platinum",日志增强版:"sp_es_enlogging",tsearch:"sp_tsearch_io2",logstash:"sp_es_logstash" ,可以为空,为空的时候后台取LicenseType映射该字段
|
1122
1122
|
:type SubProductCode: str
|
1123
|
+
:param _ReadWriteMode: 读写分离模式:0-不开启,1-本地读写分离,2-远端读写分离
|
1124
|
+
:type ReadWriteMode: int
|
1123
1125
|
"""
|
1124
1126
|
self._Zone = None
|
1125
1127
|
self._EsVersion = None
|
@@ -1158,6 +1160,7 @@ class CreateInstanceRequest(AbstractModel):
|
|
1158
1160
|
self._CdcId = None
|
1159
1161
|
self._DisasterRecoverGroupAffinity = None
|
1160
1162
|
self._SubProductCode = None
|
1163
|
+
self._ReadWriteMode = None
|
1161
1164
|
|
1162
1165
|
@property
|
1163
1166
|
def Zone(self):
|
@@ -1455,6 +1458,14 @@ class CreateInstanceRequest(AbstractModel):
|
|
1455
1458
|
def SubProductCode(self, SubProductCode):
|
1456
1459
|
self._SubProductCode = SubProductCode
|
1457
1460
|
|
1461
|
+
@property
|
1462
|
+
def ReadWriteMode(self):
|
1463
|
+
return self._ReadWriteMode
|
1464
|
+
|
1465
|
+
@ReadWriteMode.setter
|
1466
|
+
def ReadWriteMode(self, ReadWriteMode):
|
1467
|
+
self._ReadWriteMode = ReadWriteMode
|
1468
|
+
|
1458
1469
|
|
1459
1470
|
def _deserialize(self, params):
|
1460
1471
|
self._Zone = params.get("Zone")
|
@@ -1513,6 +1524,7 @@ class CreateInstanceRequest(AbstractModel):
|
|
1513
1524
|
self._CdcId = params.get("CdcId")
|
1514
1525
|
self._DisasterRecoverGroupAffinity = params.get("DisasterRecoverGroupAffinity")
|
1515
1526
|
self._SubProductCode = params.get("SubProductCode")
|
1527
|
+
self._ReadWriteMode = params.get("ReadWriteMode")
|
1516
1528
|
memeber_set = set(params.keys())
|
1517
1529
|
for name, value in vars(self).items():
|
1518
1530
|
property_name = name[1:]
|
@@ -7968,6 +7980,12 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
7968
7980
|
:param _SubProductCode: 子产品ID枚举值: 开源版:"sp_es_io2", 基础版:"sp_es_basic",白金版:"sp_es_platinum",企业版:"sp_es_enterprise",CDC白金版:"sp_es_cdc_platinum",日志增强版:"sp_es_enlogging",tsearch:"sp_tsearch_io2",logstash:"sp_es_logstash" ,可以为空,为空的时候后台取LicenseType映射该字段
|
7969
7981
|
注意:此字段可能返回 null,表示取不到有效值。
|
7970
7982
|
:type SubProductCode: str
|
7983
|
+
:param _CosBucketStorageSize: 存算分离cos用量,单位M
|
7984
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7985
|
+
:type CosBucketStorageSize: int
|
7986
|
+
:param _ReadWriteMode: 读写分离模式:0-不开启,1-本地读写分离,2-远端读写分离
|
7987
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7988
|
+
:type ReadWriteMode: int
|
7971
7989
|
"""
|
7972
7990
|
self._InstanceId = None
|
7973
7991
|
self._InstanceName = None
|
@@ -8058,6 +8076,8 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
8058
8076
|
self._NetConnectScheme = None
|
8059
8077
|
self._DisasterRecoverGroupAffinity = None
|
8060
8078
|
self._SubProductCode = None
|
8079
|
+
self._CosBucketStorageSize = None
|
8080
|
+
self._ReadWriteMode = None
|
8061
8081
|
|
8062
8082
|
@property
|
8063
8083
|
def InstanceId(self):
|
@@ -8771,6 +8791,22 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
8771
8791
|
def SubProductCode(self, SubProductCode):
|
8772
8792
|
self._SubProductCode = SubProductCode
|
8773
8793
|
|
8794
|
+
@property
|
8795
|
+
def CosBucketStorageSize(self):
|
8796
|
+
return self._CosBucketStorageSize
|
8797
|
+
|
8798
|
+
@CosBucketStorageSize.setter
|
8799
|
+
def CosBucketStorageSize(self, CosBucketStorageSize):
|
8800
|
+
self._CosBucketStorageSize = CosBucketStorageSize
|
8801
|
+
|
8802
|
+
@property
|
8803
|
+
def ReadWriteMode(self):
|
8804
|
+
return self._ReadWriteMode
|
8805
|
+
|
8806
|
+
@ReadWriteMode.setter
|
8807
|
+
def ReadWriteMode(self, ReadWriteMode):
|
8808
|
+
self._ReadWriteMode = ReadWriteMode
|
8809
|
+
|
8774
8810
|
|
8775
8811
|
def _deserialize(self, params):
|
8776
8812
|
self._InstanceId = params.get("InstanceId")
|
@@ -8908,6 +8944,8 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
8908
8944
|
self._NetConnectScheme = params.get("NetConnectScheme")
|
8909
8945
|
self._DisasterRecoverGroupAffinity = params.get("DisasterRecoverGroupAffinity")
|
8910
8946
|
self._SubProductCode = params.get("SubProductCode")
|
8947
|
+
self._CosBucketStorageSize = params.get("CosBucketStorageSize")
|
8948
|
+
self._ReadWriteMode = params.get("ReadWriteMode")
|
8911
8949
|
memeber_set = set(params.keys())
|
8912
8950
|
for name, value in vars(self).items():
|
8913
8951
|
property_name = name[1:]
|
@@ -13865,6 +13903,8 @@ CLOSE 关闭
|
|
13865
13903
|
:type ShardAllocationConcurrents: int
|
13866
13904
|
:param _ShardAllocationBytes: 分片迁移并发速度
|
13867
13905
|
:type ShardAllocationBytes: int
|
13906
|
+
:param _ReadWriteMode: 读写分离模式:-1-不开启,1-本地读写分离,2-远端读写分离
|
13907
|
+
:type ReadWriteMode: int
|
13868
13908
|
"""
|
13869
13909
|
self._InstanceId = None
|
13870
13910
|
self._InstanceName = None
|
@@ -13906,6 +13946,7 @@ CLOSE 关闭
|
|
13906
13946
|
self._CvmDelayOnlineTime = None
|
13907
13947
|
self._ShardAllocationConcurrents = None
|
13908
13948
|
self._ShardAllocationBytes = None
|
13949
|
+
self._ReadWriteMode = None
|
13909
13950
|
|
13910
13951
|
@property
|
13911
13952
|
def InstanceId(self):
|
@@ -14227,6 +14268,14 @@ CLOSE 关闭
|
|
14227
14268
|
def ShardAllocationBytes(self, ShardAllocationBytes):
|
14228
14269
|
self._ShardAllocationBytes = ShardAllocationBytes
|
14229
14270
|
|
14271
|
+
@property
|
14272
|
+
def ReadWriteMode(self):
|
14273
|
+
return self._ReadWriteMode
|
14274
|
+
|
14275
|
+
@ReadWriteMode.setter
|
14276
|
+
def ReadWriteMode(self, ReadWriteMode):
|
14277
|
+
self._ReadWriteMode = ReadWriteMode
|
14278
|
+
|
14230
14279
|
|
14231
14280
|
def _deserialize(self, params):
|
14232
14281
|
self._InstanceId = params.get("InstanceId")
|
@@ -14296,6 +14345,7 @@ CLOSE 关闭
|
|
14296
14345
|
self._CvmDelayOnlineTime = params.get("CvmDelayOnlineTime")
|
14297
14346
|
self._ShardAllocationConcurrents = params.get("ShardAllocationConcurrents")
|
14298
14347
|
self._ShardAllocationBytes = params.get("ShardAllocationBytes")
|
14348
|
+
self._ReadWriteMode = params.get("ReadWriteMode")
|
14299
14349
|
memeber_set = set(params.keys())
|
14300
14350
|
for name, value in vars(self).items():
|
14301
14351
|
property_name = name[1:]
|
@@ -15447,10 +15447,10 @@ class DescribeUserAutoSignStatusResponse(AbstractModel):
|
|
15447
15447
|
|
15448
15448
|
值为unix时间戳,单位为秒。
|
15449
15449
|
:type LicenseTo: int
|
15450
|
-
:param _LicenseType:
|
15451
|
-
|
15452
|
-
<ul><li>**0**: 使用个人自动签账号许可进行开通,个人自动签账号许可有效期1年,注: `不可解绑释放更换他人`</li></ul>
|
15450
|
+
:param _LicenseType: 设置用户开通自动签时是否绑定个人自动签账号许可。<ul><li>**0**: 使用个人自动签账号许可进行开通,个人自动签账号许可有效期1年,注: `不可解绑释放更换他人`</li><li>**1**: 不绑定自动签账号许可开通,后续使用合同份额进行合同发起</li></ul>
|
15453
15451
|
:type LicenseType: int
|
15452
|
+
:param _SealId: 用户开通自动签指定使用的印章,为空则未设置印章,需重新进入开通链接设置印章。
|
15453
|
+
:type SealId: str
|
15454
15454
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15455
15455
|
:type RequestId: str
|
15456
15456
|
"""
|
@@ -15458,6 +15458,7 @@ class DescribeUserAutoSignStatusResponse(AbstractModel):
|
|
15458
15458
|
self._LicenseFrom = None
|
15459
15459
|
self._LicenseTo = None
|
15460
15460
|
self._LicenseType = None
|
15461
|
+
self._SealId = None
|
15461
15462
|
self._RequestId = None
|
15462
15463
|
|
15463
15464
|
@property
|
@@ -15492,6 +15493,14 @@ class DescribeUserAutoSignStatusResponse(AbstractModel):
|
|
15492
15493
|
def LicenseType(self, LicenseType):
|
15493
15494
|
self._LicenseType = LicenseType
|
15494
15495
|
|
15496
|
+
@property
|
15497
|
+
def SealId(self):
|
15498
|
+
return self._SealId
|
15499
|
+
|
15500
|
+
@SealId.setter
|
15501
|
+
def SealId(self, SealId):
|
15502
|
+
self._SealId = SealId
|
15503
|
+
|
15495
15504
|
@property
|
15496
15505
|
def RequestId(self):
|
15497
15506
|
return self._RequestId
|
@@ -15506,6 +15515,7 @@ class DescribeUserAutoSignStatusResponse(AbstractModel):
|
|
15506
15515
|
self._LicenseFrom = params.get("LicenseFrom")
|
15507
15516
|
self._LicenseTo = params.get("LicenseTo")
|
15508
15517
|
self._LicenseType = params.get("LicenseType")
|
15518
|
+
self._SealId = params.get("SealId")
|
15509
15519
|
self._RequestId = params.get("RequestId")
|
15510
15520
|
|
15511
15521
|
|
@@ -7594,10 +7594,10 @@ class ChannelDescribeUserAutoSignStatusResponse(AbstractModel):
|
|
7594
7594
|
|
7595
7595
|
值为unix时间戳,单位为秒。
|
7596
7596
|
:type LicenseTo: int
|
7597
|
-
:param _LicenseType:
|
7598
|
-
|
7599
|
-
<ul><li>**0**: 使用个人自动签账号许可进行开通,个人自动签账号许可有效期1年,注: `不可解绑释放更换他人`</li></ul>
|
7597
|
+
:param _LicenseType: 设置用户开通自动签时是否绑定个人自动签账号许可。<ul><li>**0**: 使用个人自动签账号许可进行开通,个人自动签账号许可有效期1年,注: `不可解绑释放更换他人`</li><li>**1**: 不绑定自动签账号许可开通,后续使用合同份额进行合同发起</li></ul>
|
7600
7598
|
:type LicenseType: int
|
7599
|
+
:param _SealId: 用户开通自动签指定使用的印章,为空则未设置印章,需重新进入开通链接设置印章。
|
7600
|
+
:type SealId: str
|
7601
7601
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7602
7602
|
:type RequestId: str
|
7603
7603
|
"""
|
@@ -7605,6 +7605,7 @@ class ChannelDescribeUserAutoSignStatusResponse(AbstractModel):
|
|
7605
7605
|
self._LicenseFrom = None
|
7606
7606
|
self._LicenseTo = None
|
7607
7607
|
self._LicenseType = None
|
7608
|
+
self._SealId = None
|
7608
7609
|
self._RequestId = None
|
7609
7610
|
|
7610
7611
|
@property
|
@@ -7639,6 +7640,14 @@ class ChannelDescribeUserAutoSignStatusResponse(AbstractModel):
|
|
7639
7640
|
def LicenseType(self, LicenseType):
|
7640
7641
|
self._LicenseType = LicenseType
|
7641
7642
|
|
7643
|
+
@property
|
7644
|
+
def SealId(self):
|
7645
|
+
return self._SealId
|
7646
|
+
|
7647
|
+
@SealId.setter
|
7648
|
+
def SealId(self, SealId):
|
7649
|
+
self._SealId = SealId
|
7650
|
+
|
7642
7651
|
@property
|
7643
7652
|
def RequestId(self):
|
7644
7653
|
return self._RequestId
|
@@ -7653,6 +7662,7 @@ class ChannelDescribeUserAutoSignStatusResponse(AbstractModel):
|
|
7653
7662
|
self._LicenseFrom = params.get("LicenseFrom")
|
7654
7663
|
self._LicenseTo = params.get("LicenseTo")
|
7655
7664
|
self._LicenseType = params.get("LicenseType")
|
7665
|
+
self._SealId = params.get("SealId")
|
7656
7666
|
self._RequestId = params.get("RequestId")
|
7657
7667
|
|
7658
7668
|
|
@@ -787,6 +787,29 @@ class LcicClient(AbstractClient):
|
|
787
787
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
788
788
|
|
789
789
|
|
790
|
+
def DescribeRecordStream(self, request):
|
791
|
+
"""录制流查询
|
792
|
+
|
793
|
+
:param request: Request instance for DescribeRecordStream.
|
794
|
+
:type request: :class:`tencentcloud.lcic.v20220817.models.DescribeRecordStreamRequest`
|
795
|
+
:rtype: :class:`tencentcloud.lcic.v20220817.models.DescribeRecordStreamResponse`
|
796
|
+
|
797
|
+
"""
|
798
|
+
try:
|
799
|
+
params = request._serialize()
|
800
|
+
headers = request.headers
|
801
|
+
body = self.call("DescribeRecordStream", params, headers=headers)
|
802
|
+
response = json.loads(body)
|
803
|
+
model = models.DescribeRecordStreamResponse()
|
804
|
+
model._deserialize(response["Response"])
|
805
|
+
return model
|
806
|
+
except Exception as e:
|
807
|
+
if isinstance(e, TencentCloudSDKException):
|
808
|
+
raise
|
809
|
+
else:
|
810
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
811
|
+
|
812
|
+
|
790
813
|
def DescribeRoom(self, request):
|
791
814
|
"""获取房间配置信息
|
792
815
|
|
@@ -4417,6 +4417,129 @@ class DescribeQuestionListResponse(AbstractModel):
|
|
4417
4417
|
self._RequestId = params.get("RequestId")
|
4418
4418
|
|
4419
4419
|
|
4420
|
+
class DescribeRecordStreamRequest(AbstractModel):
|
4421
|
+
"""DescribeRecordStream请求参数结构体
|
4422
|
+
|
4423
|
+
"""
|
4424
|
+
|
4425
|
+
def __init__(self):
|
4426
|
+
r"""
|
4427
|
+
:param _SdkAppId: 学校ID
|
4428
|
+
:type SdkAppId: int
|
4429
|
+
:param _RoomId: 房间ID
|
4430
|
+
:type RoomId: int
|
4431
|
+
"""
|
4432
|
+
self._SdkAppId = None
|
4433
|
+
self._RoomId = None
|
4434
|
+
|
4435
|
+
@property
|
4436
|
+
def SdkAppId(self):
|
4437
|
+
return self._SdkAppId
|
4438
|
+
|
4439
|
+
@SdkAppId.setter
|
4440
|
+
def SdkAppId(self, SdkAppId):
|
4441
|
+
self._SdkAppId = SdkAppId
|
4442
|
+
|
4443
|
+
@property
|
4444
|
+
def RoomId(self):
|
4445
|
+
return self._RoomId
|
4446
|
+
|
4447
|
+
@RoomId.setter
|
4448
|
+
def RoomId(self, RoomId):
|
4449
|
+
self._RoomId = RoomId
|
4450
|
+
|
4451
|
+
|
4452
|
+
def _deserialize(self, params):
|
4453
|
+
self._SdkAppId = params.get("SdkAppId")
|
4454
|
+
self._RoomId = params.get("RoomId")
|
4455
|
+
memeber_set = set(params.keys())
|
4456
|
+
for name, value in vars(self).items():
|
4457
|
+
property_name = name[1:]
|
4458
|
+
if property_name in memeber_set:
|
4459
|
+
memeber_set.remove(property_name)
|
4460
|
+
if len(memeber_set) > 0:
|
4461
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4462
|
+
|
4463
|
+
|
4464
|
+
|
4465
|
+
class DescribeRecordStreamResponse(AbstractModel):
|
4466
|
+
"""DescribeRecordStream返回参数结构体
|
4467
|
+
|
4468
|
+
"""
|
4469
|
+
|
4470
|
+
def __init__(self):
|
4471
|
+
r"""
|
4472
|
+
:param _SchoolId: 学校ID
|
4473
|
+
:type SchoolId: int
|
4474
|
+
:param _ClassId: 课堂ID
|
4475
|
+
:type ClassId: int
|
4476
|
+
:param _ClassType: 课堂类型
|
4477
|
+
:type ClassType: int
|
4478
|
+
:param _StreamInfo: 用户流信息
|
4479
|
+
:type StreamInfo: list of SingleStreamInfo
|
4480
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4481
|
+
:type RequestId: str
|
4482
|
+
"""
|
4483
|
+
self._SchoolId = None
|
4484
|
+
self._ClassId = None
|
4485
|
+
self._ClassType = None
|
4486
|
+
self._StreamInfo = None
|
4487
|
+
self._RequestId = None
|
4488
|
+
|
4489
|
+
@property
|
4490
|
+
def SchoolId(self):
|
4491
|
+
return self._SchoolId
|
4492
|
+
|
4493
|
+
@SchoolId.setter
|
4494
|
+
def SchoolId(self, SchoolId):
|
4495
|
+
self._SchoolId = SchoolId
|
4496
|
+
|
4497
|
+
@property
|
4498
|
+
def ClassId(self):
|
4499
|
+
return self._ClassId
|
4500
|
+
|
4501
|
+
@ClassId.setter
|
4502
|
+
def ClassId(self, ClassId):
|
4503
|
+
self._ClassId = ClassId
|
4504
|
+
|
4505
|
+
@property
|
4506
|
+
def ClassType(self):
|
4507
|
+
return self._ClassType
|
4508
|
+
|
4509
|
+
@ClassType.setter
|
4510
|
+
def ClassType(self, ClassType):
|
4511
|
+
self._ClassType = ClassType
|
4512
|
+
|
4513
|
+
@property
|
4514
|
+
def StreamInfo(self):
|
4515
|
+
return self._StreamInfo
|
4516
|
+
|
4517
|
+
@StreamInfo.setter
|
4518
|
+
def StreamInfo(self, StreamInfo):
|
4519
|
+
self._StreamInfo = StreamInfo
|
4520
|
+
|
4521
|
+
@property
|
4522
|
+
def RequestId(self):
|
4523
|
+
return self._RequestId
|
4524
|
+
|
4525
|
+
@RequestId.setter
|
4526
|
+
def RequestId(self, RequestId):
|
4527
|
+
self._RequestId = RequestId
|
4528
|
+
|
4529
|
+
|
4530
|
+
def _deserialize(self, params):
|
4531
|
+
self._SchoolId = params.get("SchoolId")
|
4532
|
+
self._ClassId = params.get("ClassId")
|
4533
|
+
self._ClassType = params.get("ClassType")
|
4534
|
+
if params.get("StreamInfo") is not None:
|
4535
|
+
self._StreamInfo = []
|
4536
|
+
for item in params.get("StreamInfo"):
|
4537
|
+
obj = SingleStreamInfo()
|
4538
|
+
obj._deserialize(item)
|
4539
|
+
self._StreamInfo.append(obj)
|
4540
|
+
self._RequestId = params.get("RequestId")
|
4541
|
+
|
4542
|
+
|
4420
4543
|
class DescribeRoomForbiddenUserRequest(AbstractModel):
|
4421
4544
|
"""DescribeRoomForbiddenUser请求参数结构体
|
4422
4545
|
|
@@ -10121,6 +10244,144 @@ class SetWatermarkResponse(AbstractModel):
|
|
10121
10244
|
self._RequestId = params.get("RequestId")
|
10122
10245
|
|
10123
10246
|
|
10247
|
+
class SingleStreamInfo(AbstractModel):
|
10248
|
+
"""录制流信息
|
10249
|
+
|
10250
|
+
"""
|
10251
|
+
|
10252
|
+
def __init__(self):
|
10253
|
+
r"""
|
10254
|
+
:param _UserId: 用户ID
|
10255
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10256
|
+
:type UserId: str
|
10257
|
+
:param _StartTime: 开始时间
|
10258
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10259
|
+
:type StartTime: int
|
10260
|
+
:param _StopTime: 结束时间
|
10261
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10262
|
+
:type StopTime: int
|
10263
|
+
:param _Duration: 总时长
|
10264
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10265
|
+
:type Duration: int
|
10266
|
+
:param _FileFormat: 文件格式
|
10267
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10268
|
+
:type FileFormat: str
|
10269
|
+
:param _RecordUrl: 流url
|
10270
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10271
|
+
:type RecordUrl: str
|
10272
|
+
:param _RecordSize: 流大小
|
10273
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10274
|
+
:type RecordSize: int
|
10275
|
+
:param _VideoId: 流ID
|
10276
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10277
|
+
:type VideoId: str
|
10278
|
+
:param _Role: 流类型
|
10279
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10280
|
+
:type Role: str
|
10281
|
+
"""
|
10282
|
+
self._UserId = None
|
10283
|
+
self._StartTime = None
|
10284
|
+
self._StopTime = None
|
10285
|
+
self._Duration = None
|
10286
|
+
self._FileFormat = None
|
10287
|
+
self._RecordUrl = None
|
10288
|
+
self._RecordSize = None
|
10289
|
+
self._VideoId = None
|
10290
|
+
self._Role = None
|
10291
|
+
|
10292
|
+
@property
|
10293
|
+
def UserId(self):
|
10294
|
+
return self._UserId
|
10295
|
+
|
10296
|
+
@UserId.setter
|
10297
|
+
def UserId(self, UserId):
|
10298
|
+
self._UserId = UserId
|
10299
|
+
|
10300
|
+
@property
|
10301
|
+
def StartTime(self):
|
10302
|
+
return self._StartTime
|
10303
|
+
|
10304
|
+
@StartTime.setter
|
10305
|
+
def StartTime(self, StartTime):
|
10306
|
+
self._StartTime = StartTime
|
10307
|
+
|
10308
|
+
@property
|
10309
|
+
def StopTime(self):
|
10310
|
+
return self._StopTime
|
10311
|
+
|
10312
|
+
@StopTime.setter
|
10313
|
+
def StopTime(self, StopTime):
|
10314
|
+
self._StopTime = StopTime
|
10315
|
+
|
10316
|
+
@property
|
10317
|
+
def Duration(self):
|
10318
|
+
return self._Duration
|
10319
|
+
|
10320
|
+
@Duration.setter
|
10321
|
+
def Duration(self, Duration):
|
10322
|
+
self._Duration = Duration
|
10323
|
+
|
10324
|
+
@property
|
10325
|
+
def FileFormat(self):
|
10326
|
+
return self._FileFormat
|
10327
|
+
|
10328
|
+
@FileFormat.setter
|
10329
|
+
def FileFormat(self, FileFormat):
|
10330
|
+
self._FileFormat = FileFormat
|
10331
|
+
|
10332
|
+
@property
|
10333
|
+
def RecordUrl(self):
|
10334
|
+
return self._RecordUrl
|
10335
|
+
|
10336
|
+
@RecordUrl.setter
|
10337
|
+
def RecordUrl(self, RecordUrl):
|
10338
|
+
self._RecordUrl = RecordUrl
|
10339
|
+
|
10340
|
+
@property
|
10341
|
+
def RecordSize(self):
|
10342
|
+
return self._RecordSize
|
10343
|
+
|
10344
|
+
@RecordSize.setter
|
10345
|
+
def RecordSize(self, RecordSize):
|
10346
|
+
self._RecordSize = RecordSize
|
10347
|
+
|
10348
|
+
@property
|
10349
|
+
def VideoId(self):
|
10350
|
+
return self._VideoId
|
10351
|
+
|
10352
|
+
@VideoId.setter
|
10353
|
+
def VideoId(self, VideoId):
|
10354
|
+
self._VideoId = VideoId
|
10355
|
+
|
10356
|
+
@property
|
10357
|
+
def Role(self):
|
10358
|
+
return self._Role
|
10359
|
+
|
10360
|
+
@Role.setter
|
10361
|
+
def Role(self, Role):
|
10362
|
+
self._Role = Role
|
10363
|
+
|
10364
|
+
|
10365
|
+
def _deserialize(self, params):
|
10366
|
+
self._UserId = params.get("UserId")
|
10367
|
+
self._StartTime = params.get("StartTime")
|
10368
|
+
self._StopTime = params.get("StopTime")
|
10369
|
+
self._Duration = params.get("Duration")
|
10370
|
+
self._FileFormat = params.get("FileFormat")
|
10371
|
+
self._RecordUrl = params.get("RecordUrl")
|
10372
|
+
self._RecordSize = params.get("RecordSize")
|
10373
|
+
self._VideoId = params.get("VideoId")
|
10374
|
+
self._Role = params.get("Role")
|
10375
|
+
memeber_set = set(params.keys())
|
10376
|
+
for name, value in vars(self).items():
|
10377
|
+
property_name = name[1:]
|
10378
|
+
if property_name in memeber_set:
|
10379
|
+
memeber_set.remove(property_name)
|
10380
|
+
if len(memeber_set) > 0:
|
10381
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
10382
|
+
|
10383
|
+
|
10384
|
+
|
10124
10385
|
class StartRoomRequest(AbstractModel):
|
10125
10386
|
"""StartRoom请求参数结构体
|
10126
10387
|
|
@@ -7428,9 +7428,11 @@ class ModifyDBInstanceSpecRequest(AbstractModel):
|
|
7428
7428
|
:param _InstanceId: 实例 ID,例如:cmgo-p8vn****。请登录 [MongoDB 控制台](https://console.cloud.tencent.com/mongodb)在实例列表复制实例 ID。
|
7429
7429
|
|
7430
7430
|
:type InstanceId: str
|
7431
|
-
:param _Memory: 实例配置变更后的内存大小。- 单位:GB
|
7431
|
+
:param _Memory: 实例配置变更后的内存大小。- 单位:GB。为空时,默认取实例当前的内存大小。<br> 注意:内存和磁盘必须同时升配或同时降配,即 Memory 与 Volume 需同时配置变更。
|
7432
7432
|
:type Memory: int
|
7433
|
-
:param _Volume: 实例配置变更后的硬盘大小,单位:GB
|
7433
|
+
:param _Volume: 实例配置变更后的硬盘大小,单位:GB。为空时,默认取当前实例的磁盘大小。
|
7434
|
+
- 内存和磁盘必须同时升配或同时降配,即 Memory 与 Volume 需同时配置变更。
|
7435
|
+
- 降配时,变更后的磁盘容量必须大于已用磁盘容量的1.2倍。
|
7434
7436
|
:type Volume: int
|
7435
7437
|
:param _OplogSize: (已废弃) 请使用ResizeOplog独立接口完成。
|
7436
7438
|
|
@@ -7438,16 +7440,22 @@ class ModifyDBInstanceSpecRequest(AbstractModel):
|
|
7438
7440
|
- 单位:GB。
|
7439
7441
|
- 默认 Oplog 占用容量为磁盘空间的10%。系统允许设置的 Oplog 容量范围为磁盘空间的[10%,90%]。
|
7440
7442
|
:type OplogSize: int
|
7441
|
-
:param _NodeNum:
|
7443
|
+
:param _NodeNum: 实例变更后mongod的节点数(不包含readonly节点数)。
|
7444
|
+
- 变更mongod CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。
|
7445
|
+
- 变更 mongos CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。
|
7446
|
+
- 节点变更时(全部类型),该参数可不配置或输入变更后的 mongod(不包含readonl) 节点数量。
|
7447
|
+
- 副本集节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinNodeNum 与 MaxNodeNum 获取。
|
7448
|
+
- 分片集群每个分片节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinReplicateSetNodeNum 与 MaxReplicateSetNodeNum 获取。
|
7442
7449
|
:type NodeNum: int
|
7443
|
-
:param _ReplicateSetNum:
|
7450
|
+
:param _ReplicateSetNum: 实例变更后的分片数。
|
7451
|
+
- 取值范围请通过云数据库的售卖规格[DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 接口返回的参数**MinReplicateSetNum**与**MaxReplicateSetNum**获取。- 该参数只能增加不能减少。
|
7444
7452
|
:type ReplicateSetNum: int
|
7445
7453
|
:param _InMaintenance: 实例配置变更的切换时间。
|
7446
7454
|
- 0:调整完成时,立即执行变配任务。默认为0。
|
7447
7455
|
- 1:在维护时间窗内,执行变配任务。
|
7448
7456
|
**说明**:调整节点数和分片数不支持在<b>维护时间窗内</b>变更。
|
7449
7457
|
:type InMaintenance: int
|
7450
|
-
:param _MongosMemory: 分片实例配置变更后的mongos
|
7458
|
+
:param _MongosMemory: 分片实例配置变更后的mongos内存大小。单位:GB。
|
7451
7459
|
:type MongosMemory: str
|
7452
7460
|
:param _AddNodeList: 新增节点列表,节点类型及可用区信息。
|
7453
7461
|
:type AddNodeList: list of AddNodeList
|
@@ -5003,10 +5003,12 @@ class ImageConfig(AbstractModel):
|
|
5003
5003
|
:param _ContainerImageAccelerate: 镜像加速开关,默认False
|
5004
5004
|
注意:此字段可能返回 null,表示取不到有效值。
|
5005
5005
|
:type ContainerImageAccelerate: bool
|
5006
|
-
:param _ImagePort:
|
5007
|
-
|
5008
|
-
|
5009
|
-
|
5006
|
+
:param _ImagePort: 镜像函数端口设置,可指定镜像类型
|
5007
|
+
Web Server镜像:9000
|
5008
|
+
Job 镜像:-1
|
5009
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5010
|
+
默认值:9000
|
5011
|
+
示例值:9000
|
5010
5012
|
注意:此字段可能返回 null,表示取不到有效值。
|
5011
5013
|
:type ImagePort: int
|
5012
5014
|
"""
|
@@ -7819,12 +7821,15 @@ class PublishLayerVersionRequest(AbstractModel):
|
|
7819
7821
|
:type Description: str
|
7820
7822
|
:param _LicenseInfo: 层的软件许可证
|
7821
7823
|
:type LicenseInfo: str
|
7824
|
+
:param _Tags: 层Tag 参数,以键值对数组形式传入
|
7825
|
+
:type Tags: list of Tag
|
7822
7826
|
"""
|
7823
7827
|
self._LayerName = None
|
7824
7828
|
self._CompatibleRuntimes = None
|
7825
7829
|
self._Content = None
|
7826
7830
|
self._Description = None
|
7827
7831
|
self._LicenseInfo = None
|
7832
|
+
self._Tags = None
|
7828
7833
|
|
7829
7834
|
@property
|
7830
7835
|
def LayerName(self):
|
@@ -7866,6 +7871,14 @@ class PublishLayerVersionRequest(AbstractModel):
|
|
7866
7871
|
def LicenseInfo(self, LicenseInfo):
|
7867
7872
|
self._LicenseInfo = LicenseInfo
|
7868
7873
|
|
7874
|
+
@property
|
7875
|
+
def Tags(self):
|
7876
|
+
return self._Tags
|
7877
|
+
|
7878
|
+
@Tags.setter
|
7879
|
+
def Tags(self, Tags):
|
7880
|
+
self._Tags = Tags
|
7881
|
+
|
7869
7882
|
|
7870
7883
|
def _deserialize(self, params):
|
7871
7884
|
self._LayerName = params.get("LayerName")
|
@@ -7875,6 +7888,12 @@ class PublishLayerVersionRequest(AbstractModel):
|
|
7875
7888
|
self._Content._deserialize(params.get("Content"))
|
7876
7889
|
self._Description = params.get("Description")
|
7877
7890
|
self._LicenseInfo = params.get("LicenseInfo")
|
7891
|
+
if params.get("Tags") is not None:
|
7892
|
+
self._Tags = []
|
7893
|
+
for item in params.get("Tags"):
|
7894
|
+
obj = Tag()
|
7895
|
+
obj._deserialize(item)
|
7896
|
+
self._Tags.append(obj)
|
7878
7897
|
memeber_set = set(params.keys())
|
7879
7898
|
for name, value in vars(self).items():
|
7880
7899
|
property_name = name[1:]
|
@@ -200,6 +200,9 @@ INVALIDPARAMETERVALUE_TEMPLATEPARAMETERLENGTHLIMIT = 'InvalidParameterValue.Temp
|
|
200
200
|
# 模板内容存在敏感词,请参考[正文模板审核标准](https://cloud.tencent.com/document/product/382/39023)。
|
201
201
|
INVALIDPARAMETERVALUE_TEMPLATEWITHDIRTYWORDS = 'InvalidParameterValue.TemplateWithDirtyWords'
|
202
202
|
|
203
|
+
# 申请国内短信通知和营销短信模板不支持添加变量。可参考 [控制台说明](https://console.cloud.tencent.com/smsv2/csms-template),更多疑问可咨询 [腾讯云短信小助手](https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81)
|
204
|
+
INVALIDPARAMETERVALUE_UNSUPPORTEDTEMPLATEVARIABLE = 'InvalidParameterValue.UnsupportedTemplateVariable'
|
205
|
+
|
203
206
|
# 业务短信国家/地区日下发条数超过设定的上限,可自行到控制台应用管理>基础配置下调整国际港澳台短信发送限制。
|
204
207
|
LIMITEXCEEDED_APPCOUNTRYORREGIONDAILYLIMIT = 'LimitExceeded.AppCountryOrRegionDailyLimit'
|
205
208
|
|
@@ -1316,6 +1316,9 @@ class Certificates(AbstractModel):
|
|
1316
1316
|
:param _SupportDownloadType: 支持下载的WEB服务器类型: nginx、apache、iis、tomcat、jks、root、other
|
1317
1317
|
注意:此字段可能返回 null,表示取不到有效值。
|
1318
1318
|
:type SupportDownloadType: :class:`tencentcloud.ssl.v20191205.models.SupportDownloadType`
|
1319
|
+
:param _CertRevokedTime: 证书吊销完成时间
|
1320
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1321
|
+
:type CertRevokedTime: str
|
1319
1322
|
"""
|
1320
1323
|
self._OwnerUin = None
|
1321
1324
|
self._ProjectId = None
|
@@ -1370,6 +1373,7 @@ class Certificates(AbstractModel):
|
|
1370
1373
|
self._IsPackage = None
|
1371
1374
|
self._KeyPasswordCustomFlag = None
|
1372
1375
|
self._SupportDownloadType = None
|
1376
|
+
self._CertRevokedTime = None
|
1373
1377
|
|
1374
1378
|
@property
|
1375
1379
|
def OwnerUin(self):
|
@@ -1795,6 +1799,14 @@ class Certificates(AbstractModel):
|
|
1795
1799
|
def SupportDownloadType(self, SupportDownloadType):
|
1796
1800
|
self._SupportDownloadType = SupportDownloadType
|
1797
1801
|
|
1802
|
+
@property
|
1803
|
+
def CertRevokedTime(self):
|
1804
|
+
return self._CertRevokedTime
|
1805
|
+
|
1806
|
+
@CertRevokedTime.setter
|
1807
|
+
def CertRevokedTime(self, CertRevokedTime):
|
1808
|
+
self._CertRevokedTime = CertRevokedTime
|
1809
|
+
|
1798
1810
|
|
1799
1811
|
def _deserialize(self, params):
|
1800
1812
|
self._OwnerUin = params.get("OwnerUin")
|
@@ -1863,6 +1875,7 @@ class Certificates(AbstractModel):
|
|
1863
1875
|
if params.get("SupportDownloadType") is not None:
|
1864
1876
|
self._SupportDownloadType = SupportDownloadType()
|
1865
1877
|
self._SupportDownloadType._deserialize(params.get("SupportDownloadType"))
|
1878
|
+
self._CertRevokedTime = params.get("CertRevokedTime")
|
1866
1879
|
memeber_set = set(params.keys())
|
1867
1880
|
for name, value in vars(self).items():
|
1868
1881
|
property_name = name[1:]
|
@@ -1115,6 +1115,9 @@ class Apply(AbstractModel):
|
|
1115
1115
|
:param _ApproveProjectName: 审批所属项目
|
1116
1116
|
注意:此字段可能返回 null,表示取不到有效值。
|
1117
1117
|
:type ApproveProjectName: str
|
1118
|
+
:param _ApplyId: 审批id
|
1119
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1120
|
+
:type ApplyId: str
|
1118
1121
|
"""
|
1119
1122
|
self._ApplicantId = None
|
1120
1123
|
self._ApplicantName = None
|
@@ -1133,6 +1136,7 @@ class Apply(AbstractModel):
|
|
1133
1136
|
self._ApproverId = None
|
1134
1137
|
self._ApproverName = None
|
1135
1138
|
self._ApproveProjectName = None
|
1139
|
+
self._ApplyId = None
|
1136
1140
|
|
1137
1141
|
@property
|
1138
1142
|
def ApplicantId(self):
|
@@ -1270,6 +1274,14 @@ class Apply(AbstractModel):
|
|
1270
1274
|
def ApproveProjectName(self, ApproveProjectName):
|
1271
1275
|
self._ApproveProjectName = ApproveProjectName
|
1272
1276
|
|
1277
|
+
@property
|
1278
|
+
def ApplyId(self):
|
1279
|
+
return self._ApplyId
|
1280
|
+
|
1281
|
+
@ApplyId.setter
|
1282
|
+
def ApplyId(self, ApplyId):
|
1283
|
+
self._ApplyId = ApplyId
|
1284
|
+
|
1273
1285
|
|
1274
1286
|
def _deserialize(self, params):
|
1275
1287
|
self._ApplicantId = params.get("ApplicantId")
|
@@ -1289,6 +1301,7 @@ class Apply(AbstractModel):
|
|
1289
1301
|
self._ApproverId = params.get("ApproverId")
|
1290
1302
|
self._ApproverName = params.get("ApproverName")
|
1291
1303
|
self._ApproveProjectName = params.get("ApproveProjectName")
|
1304
|
+
self._ApplyId = params.get("ApplyId")
|
1292
1305
|
memeber_set = set(params.keys())
|
1293
1306
|
for name, value in vars(self).items():
|
1294
1307
|
property_name = name[1:]
|
{tencentcloud_sdk_python-3.0.1217.dist-info → tencentcloud_sdk_python-3.0.1219.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=vhxQ9Bs3N1JsVgel2ruPiAYMXYjkzzT2GcQmD8Ix0ig,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -292,7 +292,7 @@ tencentcloud/cdwdoris/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
292
292
|
tencentcloud/cdwdoris/v20211228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
293
293
|
tencentcloud/cdwdoris/v20211228/cdwdoris_client.py,sha256=KKpMsrUtQy7dURzO5kkjsGL_EW2NoFqScZ2tOZ-j6SI,55961
|
294
294
|
tencentcloud/cdwdoris/v20211228/errorcodes.py,sha256=i5AghJAxSuSI3xB3eKtkZA1cnY_dQYmNEeTnn2ePSFM,703
|
295
|
-
tencentcloud/cdwdoris/v20211228/models.py,sha256=
|
295
|
+
tencentcloud/cdwdoris/v20211228/models.py,sha256=R6hTdXO5VRdnyjQq-GKv1NohdjqribApMDJYLQSSqt0,341733
|
296
296
|
tencentcloud/cdwpg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
297
297
|
tencentcloud/cdwpg/v20201230/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
298
298
|
tencentcloud/cdwpg/v20201230/cdwpg_client.py,sha256=6mJ-BXoxzrrYgsckYJJUyKp-o5D5rkTHmsGjRRq2YpA,8165
|
@@ -460,7 +460,7 @@ tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
460
460
|
tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
461
461
|
tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=FR1MKFOrsds3oIYAm3v-CqIIxgzCzXj3rl2Toc5ZHao,135968
|
462
462
|
tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=N7TAEzbgmknGTmI1z-SGIYbWPWOl4-uvlPAnxABPK24,11955
|
463
|
-
tencentcloud/cynosdb/v20190107/models.py,sha256=
|
463
|
+
tencentcloud/cynosdb/v20190107/models.py,sha256=stJ4H-iMmAdWaYffA2Z0kZO3w83tUTIatKXZEPV-t0I,912707
|
464
464
|
tencentcloud/dasb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
465
465
|
tencentcloud/dasb/v20191018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
466
466
|
tencentcloud/dasb/v20191018/dasb_client.py,sha256=8iT84XIF9Ym1FrtOc7jQFQ_Ta5cZyo5JD1vn7Dj6pDE,55463
|
@@ -529,7 +529,7 @@ tencentcloud/dsgc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
529
529
|
tencentcloud/dsgc/v20190723/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
530
530
|
tencentcloud/dsgc/v20190723/dsgc_client.py,sha256=lxXhyGdHoLb9912i2zWUia-Td2uFyGB0zx-T6i3tJkA,145268
|
531
531
|
tencentcloud/dsgc/v20190723/errorcodes.py,sha256=W7QFkAjX9IhwGlNAiayqmsk8hnBnjLS_FPneZ3vlGNE,1944
|
532
|
-
tencentcloud/dsgc/v20190723/models.py,sha256=
|
532
|
+
tencentcloud/dsgc/v20190723/models.py,sha256=TQYrK83X4qOVVa8I5V3lXASyGM9KCeafT4u0p5DTrcY,838060
|
533
533
|
tencentcloud/dtf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
534
534
|
tencentcloud/dtf/v20200506/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
535
535
|
tencentcloud/dtf/v20200506/dtf_client.py,sha256=YFbElIcR3VijG9N7BZk574AGQ3IUKwI7Jj2rQ7Eua2A,1887
|
@@ -587,12 +587,12 @@ tencentcloud/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
587
587
|
tencentcloud/es/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
588
588
|
tencentcloud/es/v20180416/errorcodes.py,sha256=kPBB1N6-8m7FHktuNxIDt-LafGu5B6TAhZ-qSmQpPzs,23369
|
589
589
|
tencentcloud/es/v20180416/es_client.py,sha256=46rEqXW6cYTqEBsUaoZkfSGquSarkMOuSCa9wTP0Wak,52000
|
590
|
-
tencentcloud/es/v20180416/models.py,sha256=
|
590
|
+
tencentcloud/es/v20180416/models.py,sha256=XBcz7zOgd5ZXumgUwgYN3-OMYFUeNtLKz3YKduZb6Pw,467649
|
591
591
|
tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
592
592
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
593
593
|
tencentcloud/ess/v20201111/errorcodes.py,sha256=2n89U4czb0w4J8VyN7uMdYmbK8tGlK8nJHuVZbGrKRg,25736
|
594
594
|
tencentcloud/ess/v20201111/ess_client.py,sha256=CnAG7tgNZ5ydOFuMcRTxtvCow016hgT8ufz2iVtY9EY,152314
|
595
|
-
tencentcloud/ess/v20201111/models.py,sha256=
|
595
|
+
tencentcloud/ess/v20201111/models.py,sha256=Gd1PE6Vaq2nMRUiPry-1cxVLiewt0BwksdBTFeVQ_tE,870678
|
596
596
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
597
597
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
598
598
|
tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
|
@@ -601,7 +601,7 @@ tencentcloud/essbasic/v20201222/models.py,sha256=Q2E6jmVT1emRziwRN-qj8XpdzpxvqqH
|
|
601
601
|
tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
602
602
|
tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
|
603
603
|
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=lzE60sUNl92bxf9JbmBVwIh9cv4-8C9nwsvKSBjaqvY,144048
|
604
|
-
tencentcloud/essbasic/v20210526/models.py,sha256=
|
604
|
+
tencentcloud/essbasic/v20210526/models.py,sha256=ItUCSW36WcPs-ss1WkFgnGMAvuF_SKlczg5Zik65wnQ,769659
|
605
605
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
606
606
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
607
607
|
tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
|
@@ -803,8 +803,8 @@ tencentcloud/kms/v20190118/models.py,sha256=0zacS6q3bLlQaFXEsF6CmQhg27iANE2pnJ-e
|
|
803
803
|
tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
804
804
|
tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
805
805
|
tencentcloud/lcic/v20220817/errorcodes.py,sha256=LG8UEIjk0pH8DwRBv9TwBhsULJ_t4i3-xaxhsag52sI,4699
|
806
|
-
tencentcloud/lcic/v20220817/lcic_client.py,sha256=
|
807
|
-
tencentcloud/lcic/v20220817/models.py,sha256=
|
806
|
+
tencentcloud/lcic/v20220817/lcic_client.py,sha256=S03btBlU_T-7D6ZMgE-hTIaUQHzEbv6zvONRDA33dgU,56401
|
807
|
+
tencentcloud/lcic/v20220817/models.py,sha256=u1Fbc9oknaBCj_D7yTVSM1XKwQAvP0ahvyRZB4g_AS4,314861
|
808
808
|
tencentcloud/lighthouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
809
809
|
tencentcloud/lighthouse/v20200324/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
810
810
|
tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=LobocZTwgkG_n1D7iopo-y8pWYvRD9s6_InUR7EMbIg,32842
|
@@ -876,7 +876,7 @@ tencentcloud/mongodb/v20180408/models.py,sha256=J-4PKHcnuJueHQ6YfrAHugV3ImK_jrgn
|
|
876
876
|
tencentcloud/mongodb/v20180408/mongodb_client.py,sha256=LPLvUOeg8pyXAn1k5RdZaqWrnYSQ0aXJ-ioTuE92R3Q,13654
|
877
877
|
tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
878
878
|
tencentcloud/mongodb/v20190725/errorcodes.py,sha256=Rl_UED7u_PHIJcFPuloBUQZCRJ4jAdR2RkA-huLpxEg,8243
|
879
|
-
tencentcloud/mongodb/v20190725/models.py,sha256=
|
879
|
+
tencentcloud/mongodb/v20190725/models.py,sha256=mCNw70q7HZ59IAylX_wspMkhM1VCG7bIZLkdJmgUXjY,309574
|
880
880
|
tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=KDC8KMdk1ZetJ3yh_2jgd_8KicBLfbKwoTlioSH-lBA,50089
|
881
881
|
tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
882
882
|
tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1000,7 +1000,7 @@ tencentcloud/rum/v20210622/rum_client.py,sha256=kfI1rLguc8UYojBcKTWOZGQXzHW6rMG4
|
|
1000
1000
|
tencentcloud/scf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1001
1001
|
tencentcloud/scf/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1002
1002
|
tencentcloud/scf/v20180416/errorcodes.py,sha256=iToYgO3zFC__nE4az87igW2lQuFgwDpor3C_qjGVcR8,33381
|
1003
|
-
tencentcloud/scf/v20180416/models.py,sha256=
|
1003
|
+
tencentcloud/scf/v20180416/models.py,sha256=NeEcEehe-toa0prckucmcOi3KGQmrnB-wVuXVRX9-k8,335202
|
1004
1004
|
tencentcloud/scf/v20180416/scf_client.py,sha256=loj71YNN0NMmHrpkQTHQoMWCXSdmwIBfx2X4TE2S7Nc,44583
|
1005
1005
|
tencentcloud/ses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1006
1006
|
tencentcloud/ses/v20201002/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1028,7 +1028,7 @@ tencentcloud/sms/v20190711/errorcodes.py,sha256=mXZJGwyM7kfWBz5bqYbR-5pAZ1G2Hafa
|
|
1028
1028
|
tencentcloud/sms/v20190711/models.py,sha256=3NiR7wOTvMlLN25-XgrCAGXN0cuGhDtHWYuG1w3ykLE,93677
|
1029
1029
|
tencentcloud/sms/v20190711/sms_client.py,sha256=AKVr4LAKYoqcwc2yo44pigXOLoghz_9me7X3C7nT0as,26631
|
1030
1030
|
tencentcloud/sms/v20210111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1031
|
-
tencentcloud/sms/v20210111/errorcodes.py,sha256=
|
1031
|
+
tencentcloud/sms/v20210111/errorcodes.py,sha256=P-8ugx6fuhXvPgUh80A3XrYNfZkfhsZJlAuhEiBM_i4,20481
|
1032
1032
|
tencentcloud/sms/v20210111/models.py,sha256=X3fikDR6yqUE64UxwrQpDdO5PHe-M9hdqmtPXN86u3Q,107900
|
1033
1033
|
tencentcloud/sms/v20210111/sms_client.py,sha256=RXd3Kpfw4FwsxIjM9Rp-UrjipX7Wcyw21fECMkRcLF4,25326
|
1034
1034
|
tencentcloud/soe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1054,7 +1054,7 @@ tencentcloud/ssa/v20180608/ssa_client.py,sha256=F1LtQUdoWFMoWn38h03twyxnejuurOSD
|
|
1054
1054
|
tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1055
1055
|
tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1056
1056
|
tencentcloud/ssl/v20191205/errorcodes.py,sha256=1DwUQo1uk2i3P-K-fKhQI2KTVjD52oJxh1Dvo3fEiaE,11666
|
1057
|
-
tencentcloud/ssl/v20191205/models.py,sha256=
|
1057
|
+
tencentcloud/ssl/v20191205/models.py,sha256=20UEmBRjGOO6WP4Ovnr5coqcvYHvnkZxn1Yb7_wQAlY,487796
|
1058
1058
|
tencentcloud/ssl/v20191205/ssl_client.py,sha256=_x0lQjo1tJ4WnhZks5jJa3oowstJqknBFfrjsC0xG0M,57770
|
1059
1059
|
tencentcloud/sslpod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1060
1060
|
tencentcloud/sslpod/v20190605/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1418,7 +1418,7 @@ tencentcloud/wav/v20210129/wav_client.py,sha256=UihFmkJEfK6tTfxFgAop0q0bs9ODjlCv
|
|
1418
1418
|
tencentcloud/wedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1419
1419
|
tencentcloud/wedata/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1420
1420
|
tencentcloud/wedata/v20210820/errorcodes.py,sha256=ryPsvuqhHS6hwiPAaA33r06CuR4_FVCg9t__9nqzPz4,3643
|
1421
|
-
tencentcloud/wedata/v20210820/models.py,sha256=
|
1421
|
+
tencentcloud/wedata/v20210820/models.py,sha256=hg_SBuFtO3nHAeLncMIc97OBnV-vmqMRYoiqOoFrzsQ,1836045
|
1422
1422
|
tencentcloud/wedata/v20210820/wedata_client.py,sha256=Ur4Gktkx2R-6Lwn37EsM4rGfBndOtR44KQpwUHk1rGQ,208711
|
1423
1423
|
tencentcloud/weilingwith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1424
1424
|
tencentcloud/weilingwith/v20230427/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1454,8 +1454,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1454
1454
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1455
1455
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
1456
1456
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1457
|
-
tencentcloud_sdk_python-3.0.
|
1458
|
-
tencentcloud_sdk_python-3.0.
|
1459
|
-
tencentcloud_sdk_python-3.0.
|
1460
|
-
tencentcloud_sdk_python-3.0.
|
1461
|
-
tencentcloud_sdk_python-3.0.
|
1457
|
+
tencentcloud_sdk_python-3.0.1219.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1458
|
+
tencentcloud_sdk_python-3.0.1219.dist-info/METADATA,sha256=m0_-5FxTZ1R0due6-u6nyghpOjQyCxePuDVjn5Pn08Q,1511
|
1459
|
+
tencentcloud_sdk_python-3.0.1219.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1460
|
+
tencentcloud_sdk_python-3.0.1219.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1461
|
+
tencentcloud_sdk_python-3.0.1219.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1217.dist-info → tencentcloud_sdk_python-3.0.1219.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1217.dist-info → tencentcloud_sdk_python-3.0.1219.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|