tencentcloud-sdk-python 3.0.1439__py2.py3-none-any.whl → 3.0.1441__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/models.py +10 -6
- tencentcloud/batch/v20170312/models.py +83 -0
- tencentcloud/cdb/v20170320/models.py +4 -4
- tencentcloud/cdwch/v20200915/models.py +19 -6
- tencentcloud/cfg/v20210820/models.py +20 -0
- tencentcloud/cfs/v20190719/cfs_client.py +23 -0
- tencentcloud/cfs/v20190719/models.py +124 -0
- tencentcloud/clb/v20180317/models.py +2 -2
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +578 -4
- tencentcloud/dcdb/v20180411/models.py +47 -2
- tencentcloud/dlc/v20210125/models.py +15 -0
- tencentcloud/dsgc/v20190723/dsgc_client.py +1 -1
- tencentcloud/dsgc/v20190723/models.py +10 -10
- tencentcloud/emr/v20190103/models.py +15 -0
- tencentcloud/es/v20180416/errorcodes.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +16 -1
- tencentcloud/hunyuan/v20230901/models.py +2 -2
- tencentcloud/mariadb/v20170312/models.py +47 -2
- tencentcloud/mps/v20190612/models.py +24 -0
- tencentcloud/omics/v20221128/models.py +175 -0
- tencentcloud/organization/v20210331/models.py +306 -0
- tencentcloud/organization/v20210331/organization_client.py +23 -0
- tencentcloud/privatedns/v20201028/models.py +6 -6
- tencentcloud/sqlserver/v20180328/models.py +30 -0
- tencentcloud/tdmq/v20200217/models.py +17 -2
- tencentcloud/teo/v20220901/models.py +130 -0
- tencentcloud/trocket/v20230308/models.py +35 -20
- tencentcloud/tsf/v20180326/errorcodes.py +21 -21
- tencentcloud/tsf/v20180326/models.py +4 -4
- tencentcloud/vdb/v20230616/models.py +15 -0
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/RECORD +37 -37
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1439.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/top_level.txt +0 -0
|
@@ -3641,6 +3641,8 @@ class DCDBInstanceInfo(AbstractModel):
|
|
|
3641
3641
|
:type ResourceTags: list of ResourceTag
|
|
3642
3642
|
:param _DbVersionId: 数据库引擎版本
|
|
3643
3643
|
:type DbVersionId: str
|
|
3644
|
+
:param _ProtectedProperty: 实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
|
|
3645
|
+
:type ProtectedProperty: int
|
|
3644
3646
|
"""
|
|
3645
3647
|
self._InstanceId = None
|
|
3646
3648
|
self._InstanceName = None
|
|
@@ -3692,6 +3694,7 @@ class DCDBInstanceInfo(AbstractModel):
|
|
|
3692
3694
|
self._InstanceType = None
|
|
3693
3695
|
self._ResourceTags = None
|
|
3694
3696
|
self._DbVersionId = None
|
|
3697
|
+
self._ProtectedProperty = None
|
|
3695
3698
|
|
|
3696
3699
|
@property
|
|
3697
3700
|
def InstanceId(self):
|
|
@@ -4243,6 +4246,17 @@ class DCDBInstanceInfo(AbstractModel):
|
|
|
4243
4246
|
def DbVersionId(self, DbVersionId):
|
|
4244
4247
|
self._DbVersionId = DbVersionId
|
|
4245
4248
|
|
|
4249
|
+
@property
|
|
4250
|
+
def ProtectedProperty(self):
|
|
4251
|
+
"""实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
|
|
4252
|
+
:rtype: int
|
|
4253
|
+
"""
|
|
4254
|
+
return self._ProtectedProperty
|
|
4255
|
+
|
|
4256
|
+
@ProtectedProperty.setter
|
|
4257
|
+
def ProtectedProperty(self, ProtectedProperty):
|
|
4258
|
+
self._ProtectedProperty = ProtectedProperty
|
|
4259
|
+
|
|
4246
4260
|
|
|
4247
4261
|
def _deserialize(self, params):
|
|
4248
4262
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -4305,6 +4319,7 @@ class DCDBInstanceInfo(AbstractModel):
|
|
|
4305
4319
|
obj._deserialize(item)
|
|
4306
4320
|
self._ResourceTags.append(obj)
|
|
4307
4321
|
self._DbVersionId = params.get("DbVersionId")
|
|
4322
|
+
self._ProtectedProperty = params.get("ProtectedProperty")
|
|
4308
4323
|
memeber_set = set(params.keys())
|
|
4309
4324
|
for name, value in vars(self).items():
|
|
4310
4325
|
property_name = name[1:]
|
|
@@ -7727,6 +7742,8 @@ class DescribeDCDBInstanceDetailResponse(AbstractModel):
|
|
|
7727
7742
|
:type IsDcnSwitchSupported: int
|
|
7728
7743
|
:param _CpuType: cpu类型,英特尔:Intel/AMD,海光:Hygon,默认Intel/AMD
|
|
7729
7744
|
:type CpuType: str
|
|
7745
|
+
:param _ProtectedProperty: 实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
|
|
7746
|
+
:type ProtectedProperty: int
|
|
7730
7747
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7731
7748
|
:type RequestId: str
|
|
7732
7749
|
"""
|
|
@@ -7785,6 +7802,7 @@ class DescribeDCDBInstanceDetailResponse(AbstractModel):
|
|
|
7785
7802
|
self._IsDcnStrongSyncSupported = None
|
|
7786
7803
|
self._IsDcnSwitchSupported = None
|
|
7787
7804
|
self._CpuType = None
|
|
7805
|
+
self._ProtectedProperty = None
|
|
7788
7806
|
self._RequestId = None
|
|
7789
7807
|
|
|
7790
7808
|
@property
|
|
@@ -8392,6 +8410,17 @@ class DescribeDCDBInstanceDetailResponse(AbstractModel):
|
|
|
8392
8410
|
def CpuType(self, CpuType):
|
|
8393
8411
|
self._CpuType = CpuType
|
|
8394
8412
|
|
|
8413
|
+
@property
|
|
8414
|
+
def ProtectedProperty(self):
|
|
8415
|
+
"""实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
|
|
8416
|
+
:rtype: int
|
|
8417
|
+
"""
|
|
8418
|
+
return self._ProtectedProperty
|
|
8419
|
+
|
|
8420
|
+
@ProtectedProperty.setter
|
|
8421
|
+
def ProtectedProperty(self, ProtectedProperty):
|
|
8422
|
+
self._ProtectedProperty = ProtectedProperty
|
|
8423
|
+
|
|
8395
8424
|
@property
|
|
8396
8425
|
def RequestId(self):
|
|
8397
8426
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -8475,6 +8504,7 @@ class DescribeDCDBInstanceDetailResponse(AbstractModel):
|
|
|
8475
8504
|
self._IsDcnStrongSyncSupported = params.get("IsDcnStrongSyncSupported")
|
|
8476
8505
|
self._IsDcnSwitchSupported = params.get("IsDcnSwitchSupported")
|
|
8477
8506
|
self._CpuType = params.get("CpuType")
|
|
8507
|
+
self._ProtectedProperty = params.get("ProtectedProperty")
|
|
8478
8508
|
self._RequestId = params.get("RequestId")
|
|
8479
8509
|
|
|
8480
8510
|
|
|
@@ -12511,11 +12541,14 @@ class KillSessionRequest(AbstractModel):
|
|
|
12511
12541
|
:type ShardId: str
|
|
12512
12542
|
:param _ShardSerialId: 分片序列ID,与ShardId设置一个
|
|
12513
12543
|
:type ShardSerialId: str
|
|
12544
|
+
:param _NodeId: 节点ID,可指定主节点或者备节点进行kill。可选参数,不传默认为主节点。
|
|
12545
|
+
:type NodeId: str
|
|
12514
12546
|
"""
|
|
12515
12547
|
self._InstanceId = None
|
|
12516
12548
|
self._SessionId = None
|
|
12517
12549
|
self._ShardId = None
|
|
12518
12550
|
self._ShardSerialId = None
|
|
12551
|
+
self._NodeId = None
|
|
12519
12552
|
|
|
12520
12553
|
@property
|
|
12521
12554
|
def InstanceId(self):
|
|
@@ -12561,12 +12594,24 @@ class KillSessionRequest(AbstractModel):
|
|
|
12561
12594
|
def ShardSerialId(self, ShardSerialId):
|
|
12562
12595
|
self._ShardSerialId = ShardSerialId
|
|
12563
12596
|
|
|
12597
|
+
@property
|
|
12598
|
+
def NodeId(self):
|
|
12599
|
+
"""节点ID,可指定主节点或者备节点进行kill。可选参数,不传默认为主节点。
|
|
12600
|
+
:rtype: str
|
|
12601
|
+
"""
|
|
12602
|
+
return self._NodeId
|
|
12603
|
+
|
|
12604
|
+
@NodeId.setter
|
|
12605
|
+
def NodeId(self, NodeId):
|
|
12606
|
+
self._NodeId = NodeId
|
|
12607
|
+
|
|
12564
12608
|
|
|
12565
12609
|
def _deserialize(self, params):
|
|
12566
12610
|
self._InstanceId = params.get("InstanceId")
|
|
12567
12611
|
self._SessionId = params.get("SessionId")
|
|
12568
12612
|
self._ShardId = params.get("ShardId")
|
|
12569
12613
|
self._ShardSerialId = params.get("ShardSerialId")
|
|
12614
|
+
self._NodeId = params.get("NodeId")
|
|
12570
12615
|
memeber_set = set(params.keys())
|
|
12571
12616
|
for name, value in vars(self).items():
|
|
12572
12617
|
property_name = name[1:]
|
|
@@ -13471,7 +13516,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
|
13471
13516
|
:type Product: str
|
|
13472
13517
|
:param _InstanceId: 实例ID。
|
|
13473
13518
|
:type InstanceId: str
|
|
13474
|
-
:param _SecurityGroupIds: 要修改的安全组 ID 列表,一个或者多个安全组 ID
|
|
13519
|
+
:param _SecurityGroupIds: 要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。<br>注意:该入参会全量替换存量已有安全组集合,并非增量更新。修改需传入全量的预期集合。
|
|
13475
13520
|
:type SecurityGroupIds: list of str
|
|
13476
13521
|
"""
|
|
13477
13522
|
self._Product = None
|
|
@@ -13502,7 +13547,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
|
13502
13547
|
|
|
13503
13548
|
@property
|
|
13504
13549
|
def SecurityGroupIds(self):
|
|
13505
|
-
"""要修改的安全组 ID 列表,一个或者多个安全组 ID
|
|
13550
|
+
"""要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。<br>注意:该入参会全量替换存量已有安全组集合,并非增量更新。修改需传入全量的预期集合。
|
|
13506
13551
|
:rtype: list of str
|
|
13507
13552
|
"""
|
|
13508
13553
|
return self._SecurityGroupIds
|
|
@@ -38299,6 +38299,8 @@ class TaskResponseInfo(AbstractModel):
|
|
|
38299
38299
|
:type EngineTypeDetail: str
|
|
38300
38300
|
:param _ResourceGroupName: spark引擎资源组名称
|
|
38301
38301
|
:type ResourceGroupName: str
|
|
38302
|
+
:param _JobTimeSum: 任务执行耗时
|
|
38303
|
+
:type JobTimeSum: int
|
|
38302
38304
|
"""
|
|
38303
38305
|
self._DatabaseName = None
|
|
38304
38306
|
self._DataAmount = None
|
|
@@ -38343,6 +38345,7 @@ class TaskResponseInfo(AbstractModel):
|
|
|
38343
38345
|
self._ResultFormat = None
|
|
38344
38346
|
self._EngineTypeDetail = None
|
|
38345
38347
|
self._ResourceGroupName = None
|
|
38348
|
+
self._JobTimeSum = None
|
|
38346
38349
|
|
|
38347
38350
|
@property
|
|
38348
38351
|
def DatabaseName(self):
|
|
@@ -38820,6 +38823,17 @@ class TaskResponseInfo(AbstractModel):
|
|
|
38820
38823
|
def ResourceGroupName(self, ResourceGroupName):
|
|
38821
38824
|
self._ResourceGroupName = ResourceGroupName
|
|
38822
38825
|
|
|
38826
|
+
@property
|
|
38827
|
+
def JobTimeSum(self):
|
|
38828
|
+
"""任务执行耗时
|
|
38829
|
+
:rtype: int
|
|
38830
|
+
"""
|
|
38831
|
+
return self._JobTimeSum
|
|
38832
|
+
|
|
38833
|
+
@JobTimeSum.setter
|
|
38834
|
+
def JobTimeSum(self, JobTimeSum):
|
|
38835
|
+
self._JobTimeSum = JobTimeSum
|
|
38836
|
+
|
|
38823
38837
|
|
|
38824
38838
|
def _deserialize(self, params):
|
|
38825
38839
|
self._DatabaseName = params.get("DatabaseName")
|
|
@@ -38871,6 +38885,7 @@ class TaskResponseInfo(AbstractModel):
|
|
|
38871
38885
|
self._ResultFormat = params.get("ResultFormat")
|
|
38872
38886
|
self._EngineTypeDetail = params.get("EngineTypeDetail")
|
|
38873
38887
|
self._ResourceGroupName = params.get("ResourceGroupName")
|
|
38888
|
+
self._JobTimeSum = params.get("JobTimeSum")
|
|
38874
38889
|
memeber_set = set(params.keys())
|
|
38875
38890
|
for name, value in vars(self).items():
|
|
38876
38891
|
property_name = name[1:]
|
|
@@ -1346,7 +1346,7 @@ class DsgcClient(AbstractClient):
|
|
|
1346
1346
|
|
|
1347
1347
|
|
|
1348
1348
|
def DescribeDSPAAssessmentTemplateControlItems(self, request):
|
|
1349
|
-
"""获取DSPA
|
|
1349
|
+
"""获取DSPA评估模板关联的评估控制项列表
|
|
1350
1350
|
|
|
1351
1351
|
:param request: Request instance for DescribeDSPAAssessmentTemplateControlItems.
|
|
1352
1352
|
:type request: :class:`tencentcloud.dsgc.v20190723.models.DescribeDSPAAssessmentTemplateControlItemsRequest`
|
|
@@ -4399,7 +4399,7 @@ class CreateDSPAComplianceGroupRequest(AbstractModel):
|
|
|
4399
4399
|
:type ComplianceGroupRules: list of ComplianceGroupRuleIdInfo
|
|
4400
4400
|
:param _LevelGroupId: 分级组ID,默认值为1,新增参数,可选
|
|
4401
4401
|
:type LevelGroupId: int
|
|
4402
|
-
:param _Status: 1
|
|
4402
|
+
:param _Status: 1代表模板开启,0代表模板关闭
|
|
4403
4403
|
:type Status: int
|
|
4404
4404
|
:param _CloseComplianceId: 该complianceId的开启状态将被关闭
|
|
4405
4405
|
:type CloseComplianceId: int
|
|
@@ -4469,7 +4469,7 @@ class CreateDSPAComplianceGroupRequest(AbstractModel):
|
|
|
4469
4469
|
|
|
4470
4470
|
@property
|
|
4471
4471
|
def Status(self):
|
|
4472
|
-
"""1
|
|
4472
|
+
"""1代表模板开启,0代表模板关闭
|
|
4473
4473
|
:rtype: int
|
|
4474
4474
|
"""
|
|
4475
4475
|
return self._Status
|
|
@@ -14622,7 +14622,7 @@ class DescribeDSPAComplianceGroupsRequest(AbstractModel):
|
|
|
14622
14622
|
:type Limit: int
|
|
14623
14623
|
:param _ComplianceGroupTypeList: 合规组类型可选值:0 默认合规组, 1 系统合规组, 2 自定义合规组
|
|
14624
14624
|
:type ComplianceGroupTypeList: list of int
|
|
14625
|
-
:param _IsFilterCloseComplianceGroup:
|
|
14625
|
+
:param _IsFilterCloseComplianceGroup: 是否仅显示已开启模板
|
|
14626
14626
|
:type IsFilterCloseComplianceGroup: bool
|
|
14627
14627
|
"""
|
|
14628
14628
|
self._DspaId = None
|
|
@@ -14701,7 +14701,7 @@ class DescribeDSPAComplianceGroupsRequest(AbstractModel):
|
|
|
14701
14701
|
|
|
14702
14702
|
@property
|
|
14703
14703
|
def IsFilterCloseComplianceGroup(self):
|
|
14704
|
-
"""
|
|
14704
|
+
"""是否仅显示已开启模板
|
|
14705
14705
|
:rtype: bool
|
|
14706
14706
|
"""
|
|
14707
14707
|
return self._IsFilterCloseComplianceGroup
|
|
@@ -21299,9 +21299,9 @@ class DspaDiscoveryComplianceGroupInfo(AbstractModel):
|
|
|
21299
21299
|
:type Disabled: bool
|
|
21300
21300
|
:param _IsAlias: 是否别名
|
|
21301
21301
|
:type IsAlias: bool
|
|
21302
|
-
:param _Status: 1
|
|
21302
|
+
:param _Status: 1代表模板开启,0代表模板关闭
|
|
21303
21303
|
:type Status: int
|
|
21304
|
-
:param _ModifyTime:
|
|
21304
|
+
:param _ModifyTime: 模板最后修改时间
|
|
21305
21305
|
:type ModifyTime: str
|
|
21306
21306
|
"""
|
|
21307
21307
|
self._ComplianceGroupId = None
|
|
@@ -21405,7 +21405,7 @@ class DspaDiscoveryComplianceGroupInfo(AbstractModel):
|
|
|
21405
21405
|
|
|
21406
21406
|
@property
|
|
21407
21407
|
def Status(self):
|
|
21408
|
-
"""1
|
|
21408
|
+
"""1代表模板开启,0代表模板关闭
|
|
21409
21409
|
:rtype: int
|
|
21410
21410
|
"""
|
|
21411
21411
|
return self._Status
|
|
@@ -21416,7 +21416,7 @@ class DspaDiscoveryComplianceGroupInfo(AbstractModel):
|
|
|
21416
21416
|
|
|
21417
21417
|
@property
|
|
21418
21418
|
def ModifyTime(self):
|
|
21419
|
-
"""
|
|
21419
|
+
"""模板最后修改时间
|
|
21420
21420
|
:rtype: str
|
|
21421
21421
|
"""
|
|
21422
21422
|
return self._ModifyTime
|
|
@@ -30724,7 +30724,7 @@ class ReportInfo(AbstractModel):
|
|
|
30724
30724
|
:type ComplianceName: str
|
|
30725
30725
|
:param _ProgressPercent: 进度百分比
|
|
30726
30726
|
:type ProgressPercent: int
|
|
30727
|
-
:param _ReportTemplateName:
|
|
30727
|
+
:param _ReportTemplateName: 报告模板名称
|
|
30728
30728
|
:type ReportTemplateName: str
|
|
30729
30729
|
"""
|
|
30730
30730
|
self._Id = None
|
|
@@ -30899,7 +30899,7 @@ class ReportInfo(AbstractModel):
|
|
|
30899
30899
|
|
|
30900
30900
|
@property
|
|
30901
30901
|
def ReportTemplateName(self):
|
|
30902
|
-
"""
|
|
30902
|
+
"""报告模板名称
|
|
30903
30903
|
:rtype: str
|
|
30904
30904
|
"""
|
|
30905
30905
|
return self._ReportTemplateName
|
|
@@ -10183,6 +10183,8 @@ class DescribeInsightListRequest(AbstractModel):
|
|
|
10183
10183
|
:type Page: int
|
|
10184
10184
|
:param _Type: 查询类型,支持HIVE,SPARK,DLC_SPARK,SPARK_SQL,SCHEDULE,MAPREDUCE,TRINO等类型,默认查询全部
|
|
10185
10185
|
:type Type: str
|
|
10186
|
+
:param _MustHasContext: 是否包含具体参数建议等信息
|
|
10187
|
+
:type MustHasContext: bool
|
|
10186
10188
|
"""
|
|
10187
10189
|
self._InstanceId = None
|
|
10188
10190
|
self._StartTime = None
|
|
@@ -10190,6 +10192,7 @@ class DescribeInsightListRequest(AbstractModel):
|
|
|
10190
10192
|
self._PageSize = None
|
|
10191
10193
|
self._Page = None
|
|
10192
10194
|
self._Type = None
|
|
10195
|
+
self._MustHasContext = None
|
|
10193
10196
|
|
|
10194
10197
|
@property
|
|
10195
10198
|
def InstanceId(self):
|
|
@@ -10257,6 +10260,17 @@ class DescribeInsightListRequest(AbstractModel):
|
|
|
10257
10260
|
def Type(self, Type):
|
|
10258
10261
|
self._Type = Type
|
|
10259
10262
|
|
|
10263
|
+
@property
|
|
10264
|
+
def MustHasContext(self):
|
|
10265
|
+
"""是否包含具体参数建议等信息
|
|
10266
|
+
:rtype: bool
|
|
10267
|
+
"""
|
|
10268
|
+
return self._MustHasContext
|
|
10269
|
+
|
|
10270
|
+
@MustHasContext.setter
|
|
10271
|
+
def MustHasContext(self, MustHasContext):
|
|
10272
|
+
self._MustHasContext = MustHasContext
|
|
10273
|
+
|
|
10260
10274
|
|
|
10261
10275
|
def _deserialize(self, params):
|
|
10262
10276
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -10265,6 +10279,7 @@ class DescribeInsightListRequest(AbstractModel):
|
|
|
10265
10279
|
self._PageSize = params.get("PageSize")
|
|
10266
10280
|
self._Page = params.get("Page")
|
|
10267
10281
|
self._Type = params.get("Type")
|
|
10282
|
+
self._MustHasContext = params.get("MustHasContext")
|
|
10268
10283
|
memeber_set = set(params.keys())
|
|
10269
10284
|
for name, value in vars(self).items():
|
|
10270
10285
|
property_name = name[1:]
|
|
@@ -617,7 +617,7 @@ UNSUPPORTEDOPERATION_MIGRATE = 'UnsupportedOperation.Migrate'
|
|
|
617
617
|
# 不支持多可用区变配。
|
|
618
618
|
UNSUPPORTEDOPERATION_MULTIZONESUPGRADE = 'UnsupportedOperation.MultiZonesUpgrade'
|
|
619
619
|
|
|
620
|
-
#
|
|
620
|
+
# 抱歉,您需要前往ES控制台购买页完成确认认证,我们才能为您提供所选的腾讯云服务。如果对于确认流程有任何疑问,可以联系我们:https://www.tencentcloud.com/zh/contact-us。
|
|
621
621
|
UNSUPPORTEDOPERATION_NOTAGREEMENT = 'UnsupportedOperation.NotAgreement'
|
|
622
622
|
|
|
623
623
|
# 用户同步日志的配置passLogstashId为空,不支持该操作。
|
|
@@ -1761,7 +1761,7 @@ class EssClient(AbstractClient):
|
|
|
1761
1761
|
|
|
1762
1762
|
|
|
1763
1763
|
**该接口效果同控制台: 企业设置-> 扩展服务 -> 企业自动签署 -> 合作企业方授权**
|
|
1764
|
-

|
|
1765
1765
|
|
|
1766
1766
|
:param request: Request instance for CreatePartnerAutoSignAuthUrl.
|
|
1767
1767
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreatePartnerAutoSignAuthUrlRequest`
|
|
@@ -2881,6 +2881,21 @@ class EssClient(AbstractClient):
|
|
|
2881
2881
|
def DescribeIntegrationRoles(self, request):
|
|
2882
2882
|
"""此接口(DescribeIntegrationRoles)用于分页查询企业角色列表,列表按照角色创建时间升序排列。
|
|
2883
2883
|
|
|
2884
|
+
角色分为系统默认角色与企业自定义角色,其中系统默认角色不可以禁用、删除、编辑权限项,只可往默认角色中添加成员。企业自定义角色为企业根据自身需要新增的角色,可根据企业具体情况设置各个角色的权限,例如新增财务岗、销售岗等角色。
|
|
2885
|
+
|
|
2886
|
+
企业版的系统默认角色包含如下角色:
|
|
2887
|
+
|
|
2888
|
+
| 角色名称 | 角色描述 |
|
|
2889
|
+
|------------------------------|--------------------------------------------------------------------------|
|
|
2890
|
+
| 超级管理员(电子签业务最高权限,e.g.法务/业务负责人) | 所有功能和数据管理权限,只能设置一位超管。 |
|
|
2891
|
+
| IT信息管理员(IT系统负责人,e.g. CTO) | 组织员工、计费模块、应用模块等权限能力。 |
|
|
2892
|
+
| 企业合同管理员(企业法务负责人) | 企业全部合同管理、可申请出证等权限能力。 |
|
|
2893
|
+
| 企业模板管理员 | 企业全部模板管理权限能力。 |
|
|
2894
|
+
| 企业印章管理员(企业行政负责人) | 管理企业的所有电子印章,如添加印章、启用停用印章、印章授权等。 |
|
|
2895
|
+
| 用印审批岗(各部门的印章管理岗) | 可对被授权的印章进行日常使用管理,如合同盖章用印的审核及登记。 |
|
|
2896
|
+
| 部门管理员(部门的合同+印章+模板管理) | 部门级(含子部门)所有合同管理权限能力。 |
|
|
2897
|
+
| 业务员(销售员、采购员) | 发起合同、签署合同(含填写、拒签)、撤销合同、持有印章等权限能力。 |
|
|
2898
|
+
|
|
2884
2899
|
:param request: Request instance for DescribeIntegrationRoles.
|
|
2885
2900
|
:type request: :class:`tencentcloud.ess.v20201111.models.DescribeIntegrationRolesRequest`
|
|
2886
2901
|
:rtype: :class:`tencentcloud.ess.v20201111.models.DescribeIntegrationRolesResponse`
|
|
@@ -6354,7 +6354,7 @@ class SubmitHunyuanImageJobRequest(AbstractModel):
|
|
|
6354
6354
|
在 Resolution 的基础上按比例提高分辨率,例如1024:1024开启2倍超分后将得到2048:2048。
|
|
6355
6355
|
:type Clarity: str
|
|
6356
6356
|
:param _ContentImage: 用于引导内容的参考图。
|
|
6357
|
-
图片限制:单边分辨率小于5000,转成 Base64 字符串后小于 8MB,格式支持 jpg、jpeg、png
|
|
6357
|
+
图片限制:单边分辨率小于5000,转成 Base64 字符串后小于 8MB,格式支持 jpg、jpeg、png。
|
|
6358
6358
|
:type ContentImage: :class:`tencentcloud.hunyuan.v20230901.models.Image`
|
|
6359
6359
|
:param _Revise: prompt 扩写开关。1为开启,0为关闭,不传默认开启。
|
|
6360
6360
|
开启扩写后,将自动扩写原始输入的 prompt 并使用扩写后的 prompt 生成图片,返回生成图片结果时将一并返回扩写后的 prompt 文本。
|
|
@@ -6468,7 +6468,7 @@ class SubmitHunyuanImageJobRequest(AbstractModel):
|
|
|
6468
6468
|
@property
|
|
6469
6469
|
def ContentImage(self):
|
|
6470
6470
|
"""用于引导内容的参考图。
|
|
6471
|
-
图片限制:单边分辨率小于5000,转成 Base64 字符串后小于 8MB,格式支持 jpg、jpeg、png
|
|
6471
|
+
图片限制:单边分辨率小于5000,转成 Base64 字符串后小于 8MB,格式支持 jpg、jpeg、png。
|
|
6472
6472
|
:rtype: :class:`tencentcloud.hunyuan.v20230901.models.Image`
|
|
6473
6473
|
"""
|
|
6474
6474
|
return self._ContentImage
|
|
@@ -3029,6 +3029,8 @@ class DBInstance(AbstractModel):
|
|
|
3029
3029
|
:type ResourceTags: list of ResourceTag
|
|
3030
3030
|
:param _DbVersionId: 数据库版本
|
|
3031
3031
|
:type DbVersionId: str
|
|
3032
|
+
:param _ProtectedProperty: 实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
|
|
3033
|
+
:type ProtectedProperty: int
|
|
3032
3034
|
"""
|
|
3033
3035
|
self._InstanceId = None
|
|
3034
3036
|
self._InstanceName = None
|
|
@@ -3082,6 +3084,7 @@ class DBInstance(AbstractModel):
|
|
|
3082
3084
|
self._InstanceType = None
|
|
3083
3085
|
self._ResourceTags = None
|
|
3084
3086
|
self._DbVersionId = None
|
|
3087
|
+
self._ProtectedProperty = None
|
|
3085
3088
|
|
|
3086
3089
|
@property
|
|
3087
3090
|
def InstanceId(self):
|
|
@@ -3655,6 +3658,17 @@ class DBInstance(AbstractModel):
|
|
|
3655
3658
|
def DbVersionId(self, DbVersionId):
|
|
3656
3659
|
self._DbVersionId = DbVersionId
|
|
3657
3660
|
|
|
3661
|
+
@property
|
|
3662
|
+
def ProtectedProperty(self):
|
|
3663
|
+
"""实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
|
|
3664
|
+
:rtype: int
|
|
3665
|
+
"""
|
|
3666
|
+
return self._ProtectedProperty
|
|
3667
|
+
|
|
3668
|
+
@ProtectedProperty.setter
|
|
3669
|
+
def ProtectedProperty(self, ProtectedProperty):
|
|
3670
|
+
self._ProtectedProperty = ProtectedProperty
|
|
3671
|
+
|
|
3658
3672
|
|
|
3659
3673
|
def _deserialize(self, params):
|
|
3660
3674
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -3714,6 +3728,7 @@ class DBInstance(AbstractModel):
|
|
|
3714
3728
|
obj._deserialize(item)
|
|
3715
3729
|
self._ResourceTags.append(obj)
|
|
3716
3730
|
self._DbVersionId = params.get("DbVersionId")
|
|
3731
|
+
self._ProtectedProperty = params.get("ProtectedProperty")
|
|
3717
3732
|
memeber_set = set(params.keys())
|
|
3718
3733
|
for name, value in vars(self).items():
|
|
3719
3734
|
property_name = name[1:]
|
|
@@ -5999,6 +6014,8 @@ class DescribeDBInstanceDetailResponse(AbstractModel):
|
|
|
5999
6014
|
:type ProxyVersion: str
|
|
6000
6015
|
:param _CpuType: Cpu类型,如:英特尔:Intel/AMD,海光:Hygon
|
|
6001
6016
|
:type CpuType: str
|
|
6017
|
+
:param _ProtectedProperty: 删除保护标记,1: 已开启删除保护,0: 未开启删除保护
|
|
6018
|
+
:type ProtectedProperty: int
|
|
6002
6019
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6003
6020
|
:type RequestId: str
|
|
6004
6021
|
"""
|
|
@@ -6063,6 +6080,7 @@ class DescribeDBInstanceDetailResponse(AbstractModel):
|
|
|
6063
6080
|
self._IsDcnSwitchSupported = None
|
|
6064
6081
|
self._ProxyVersion = None
|
|
6065
6082
|
self._CpuType = None
|
|
6083
|
+
self._ProtectedProperty = None
|
|
6066
6084
|
self._RequestId = None
|
|
6067
6085
|
|
|
6068
6086
|
@property
|
|
@@ -6738,6 +6756,17 @@ class DescribeDBInstanceDetailResponse(AbstractModel):
|
|
|
6738
6756
|
def CpuType(self, CpuType):
|
|
6739
6757
|
self._CpuType = CpuType
|
|
6740
6758
|
|
|
6759
|
+
@property
|
|
6760
|
+
def ProtectedProperty(self):
|
|
6761
|
+
"""删除保护标记,1: 已开启删除保护,0: 未开启删除保护
|
|
6762
|
+
:rtype: int
|
|
6763
|
+
"""
|
|
6764
|
+
return self._ProtectedProperty
|
|
6765
|
+
|
|
6766
|
+
@ProtectedProperty.setter
|
|
6767
|
+
def ProtectedProperty(self, ProtectedProperty):
|
|
6768
|
+
self._ProtectedProperty = ProtectedProperty
|
|
6769
|
+
|
|
6741
6770
|
@property
|
|
6742
6771
|
def RequestId(self):
|
|
6743
6772
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -6831,6 +6860,7 @@ class DescribeDBInstanceDetailResponse(AbstractModel):
|
|
|
6831
6860
|
self._IsDcnSwitchSupported = params.get("IsDcnSwitchSupported")
|
|
6832
6861
|
self._ProxyVersion = params.get("ProxyVersion")
|
|
6833
6862
|
self._CpuType = params.get("CpuType")
|
|
6863
|
+
self._ProtectedProperty = params.get("ProtectedProperty")
|
|
6834
6864
|
self._RequestId = params.get("RequestId")
|
|
6835
6865
|
|
|
6836
6866
|
|
|
@@ -11136,9 +11166,12 @@ class KillSessionRequest(AbstractModel):
|
|
|
11136
11166
|
:type InstanceId: str
|
|
11137
11167
|
:param _SessionId: 会话ID列表
|
|
11138
11168
|
:type SessionId: list of int
|
|
11169
|
+
:param _NodeId: 节点ID,可指定主节点或者备节点进行kill。可选参数,不传默认为主节点。
|
|
11170
|
+
:type NodeId: str
|
|
11139
11171
|
"""
|
|
11140
11172
|
self._InstanceId = None
|
|
11141
11173
|
self._SessionId = None
|
|
11174
|
+
self._NodeId = None
|
|
11142
11175
|
|
|
11143
11176
|
@property
|
|
11144
11177
|
def InstanceId(self):
|
|
@@ -11162,10 +11195,22 @@ class KillSessionRequest(AbstractModel):
|
|
|
11162
11195
|
def SessionId(self, SessionId):
|
|
11163
11196
|
self._SessionId = SessionId
|
|
11164
11197
|
|
|
11198
|
+
@property
|
|
11199
|
+
def NodeId(self):
|
|
11200
|
+
"""节点ID,可指定主节点或者备节点进行kill。可选参数,不传默认为主节点。
|
|
11201
|
+
:rtype: str
|
|
11202
|
+
"""
|
|
11203
|
+
return self._NodeId
|
|
11204
|
+
|
|
11205
|
+
@NodeId.setter
|
|
11206
|
+
def NodeId(self, NodeId):
|
|
11207
|
+
self._NodeId = NodeId
|
|
11208
|
+
|
|
11165
11209
|
|
|
11166
11210
|
def _deserialize(self, params):
|
|
11167
11211
|
self._InstanceId = params.get("InstanceId")
|
|
11168
11212
|
self._SessionId = params.get("SessionId")
|
|
11213
|
+
self._NodeId = params.get("NodeId")
|
|
11169
11214
|
memeber_set = set(params.keys())
|
|
11170
11215
|
for name, value in vars(self).items():
|
|
11171
11216
|
property_name = name[1:]
|
|
@@ -12109,7 +12154,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
|
12109
12154
|
:type Product: str
|
|
12110
12155
|
:param _InstanceId: 实例ID。
|
|
12111
12156
|
:type InstanceId: str
|
|
12112
|
-
:param _SecurityGroupIds: 要修改的安全组 ID 列表,一个或者多个安全组 ID
|
|
12157
|
+
:param _SecurityGroupIds: 要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。<br>注意:改入参会全量替换存量已有安全组集合,并非增量更新。修改需传入全量的预期集合。
|
|
12113
12158
|
:type SecurityGroupIds: list of str
|
|
12114
12159
|
"""
|
|
12115
12160
|
self._Product = None
|
|
@@ -12140,7 +12185,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
|
12140
12185
|
|
|
12141
12186
|
@property
|
|
12142
12187
|
def SecurityGroupIds(self):
|
|
12143
|
-
"""要修改的安全组 ID 列表,一个或者多个安全组 ID
|
|
12188
|
+
"""要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。<br>注意:改入参会全量替换存量已有安全组集合,并非增量更新。修改需传入全量的预期集合。
|
|
12144
12189
|
:rtype: list of str
|
|
12145
12190
|
"""
|
|
12146
12191
|
return self._SecurityGroupIds
|
|
@@ -39040,19 +39040,25 @@ class LiveStreamAiAnalysisResultItem(AbstractModel):
|
|
|
39040
39040
|
r"""
|
|
39041
39041
|
:param _Type: 结果的类型,取值范围:
|
|
39042
39042
|
<li>SegmentRecognition:拆条。</li>
|
|
39043
|
+
<li>Highlight :集锦。</li>
|
|
39043
39044
|
:type Type: str
|
|
39044
39045
|
:param _SegmentResultSet: 拆条结果,当 Type 为
|
|
39045
39046
|
SegmentRecognition 时有效。
|
|
39046
39047
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
39047
39048
|
:type SegmentResultSet: list of SegmentRecognitionItem
|
|
39049
|
+
:param _HighlightResultSet: 集锦结果,当Type 为 Highlight 时有效。
|
|
39050
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
39051
|
+
:type HighlightResultSet: list of MediaAiAnalysisHighlightItem
|
|
39048
39052
|
"""
|
|
39049
39053
|
self._Type = None
|
|
39050
39054
|
self._SegmentResultSet = None
|
|
39055
|
+
self._HighlightResultSet = None
|
|
39051
39056
|
|
|
39052
39057
|
@property
|
|
39053
39058
|
def Type(self):
|
|
39054
39059
|
"""结果的类型,取值范围:
|
|
39055
39060
|
<li>SegmentRecognition:拆条。</li>
|
|
39061
|
+
<li>Highlight :集锦。</li>
|
|
39056
39062
|
:rtype: str
|
|
39057
39063
|
"""
|
|
39058
39064
|
return self._Type
|
|
@@ -39074,6 +39080,18 @@ SegmentRecognition 时有效。
|
|
|
39074
39080
|
def SegmentResultSet(self, SegmentResultSet):
|
|
39075
39081
|
self._SegmentResultSet = SegmentResultSet
|
|
39076
39082
|
|
|
39083
|
+
@property
|
|
39084
|
+
def HighlightResultSet(self):
|
|
39085
|
+
"""集锦结果,当Type 为 Highlight 时有效。
|
|
39086
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
39087
|
+
:rtype: list of MediaAiAnalysisHighlightItem
|
|
39088
|
+
"""
|
|
39089
|
+
return self._HighlightResultSet
|
|
39090
|
+
|
|
39091
|
+
@HighlightResultSet.setter
|
|
39092
|
+
def HighlightResultSet(self, HighlightResultSet):
|
|
39093
|
+
self._HighlightResultSet = HighlightResultSet
|
|
39094
|
+
|
|
39077
39095
|
|
|
39078
39096
|
def _deserialize(self, params):
|
|
39079
39097
|
self._Type = params.get("Type")
|
|
@@ -39083,6 +39101,12 @@ SegmentRecognition 时有效。
|
|
|
39083
39101
|
obj = SegmentRecognitionItem()
|
|
39084
39102
|
obj._deserialize(item)
|
|
39085
39103
|
self._SegmentResultSet.append(obj)
|
|
39104
|
+
if params.get("HighlightResultSet") is not None:
|
|
39105
|
+
self._HighlightResultSet = []
|
|
39106
|
+
for item in params.get("HighlightResultSet"):
|
|
39107
|
+
obj = MediaAiAnalysisHighlightItem()
|
|
39108
|
+
obj._deserialize(item)
|
|
39109
|
+
self._HighlightResultSet.append(obj)
|
|
39086
39110
|
memeber_set = set(params.keys())
|
|
39087
39111
|
for name, value in vars(self).items():
|
|
39088
39112
|
property_name = name[1:]
|