tencentcloud-sdk-python 3.0.1389__py2.py3-none-any.whl → 3.0.1390__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/batch/v20170312/models.py +2 -0
- tencentcloud/bi/v20220105/models.py +115 -0
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdb/v20170320/models.py +34 -0
- tencentcloud/cdn/v20180606/models.py +2 -2
- tencentcloud/cfw/v20190904/models.py +36 -0
- tencentcloud/cloudapp/v20220530/models.py +15 -0
- tencentcloud/cvm/v20170312/models.py +2 -0
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +379 -0
- tencentcloud/gs/v20191118/models.py +15 -0
- tencentcloud/keewidb/v20220308/errorcodes.py +4 -1
- tencentcloud/live/v20180801/models.py +2 -0
- tencentcloud/lke/v20231130/models.py +4 -4
- tencentcloud/tione/v20211111/tione_client.py +3 -0
- tencentcloud/trabbit/v20230418/models.py +30 -0
- tencentcloud/tsf/v20180326/models.py +20 -0
- tencentcloud/vpc/v20170312/models.py +103 -0
- tencentcloud/vpc/v20170312/vpc_client.py +46 -0
- {tencentcloud_sdk_python-3.0.1389.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1389.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/RECORD +25 -25
- {tencentcloud_sdk_python-3.0.1389.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1389.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1389.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -8591,6 +8591,7 @@ class SystemDisk(AbstractModel):
|
|
8591
8591
|
:param _DiskSize: 系统盘大小,单位:GiB。默认值为 50
|
8592
8592
|
:type DiskSize: int
|
8593
8593
|
:param _CdcId: 所属的独享集群ID。
|
8594
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8594
8595
|
:type CdcId: str
|
8595
8596
|
:param _DiskName: 磁盘名称,长度不超过128 个字符。
|
8596
8597
|
:type DiskName: str
|
@@ -8647,6 +8648,7 @@ class SystemDisk(AbstractModel):
|
|
8647
8648
|
@property
|
8648
8649
|
def CdcId(self):
|
8649
8650
|
"""所属的独享集群ID。
|
8651
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8650
8652
|
:rtype: str
|
8651
8653
|
"""
|
8652
8654
|
return self._CdcId
|
@@ -2428,8 +2428,12 @@ class Data(AbstractModel):
|
|
2428
2428
|
r"""
|
2429
2429
|
:param _Id: 项目Id
|
2430
2430
|
:type Id: int
|
2431
|
+
:param _EditUrl: url
|
2432
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2433
|
+
:type EditUrl: str
|
2431
2434
|
"""
|
2432
2435
|
self._Id = None
|
2436
|
+
self._EditUrl = None
|
2433
2437
|
|
2434
2438
|
@property
|
2435
2439
|
def Id(self):
|
@@ -2442,9 +2446,22 @@ class Data(AbstractModel):
|
|
2442
2446
|
def Id(self, Id):
|
2443
2447
|
self._Id = Id
|
2444
2448
|
|
2449
|
+
@property
|
2450
|
+
def EditUrl(self):
|
2451
|
+
"""url
|
2452
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2453
|
+
:rtype: str
|
2454
|
+
"""
|
2455
|
+
return self._EditUrl
|
2456
|
+
|
2457
|
+
@EditUrl.setter
|
2458
|
+
def EditUrl(self, EditUrl):
|
2459
|
+
self._EditUrl = EditUrl
|
2460
|
+
|
2445
2461
|
|
2446
2462
|
def _deserialize(self, params):
|
2447
2463
|
self._Id = params.get("Id")
|
2464
|
+
self._EditUrl = params.get("EditUrl")
|
2448
2465
|
memeber_set = set(params.keys())
|
2449
2466
|
for name, value in vars(self).items():
|
2450
2467
|
property_name = name[1:]
|
@@ -5037,6 +5054,10 @@ class DescribeUserRoleProjectListRequest(AbstractModel):
|
|
5037
5054
|
:type AllPage: bool
|
5038
5055
|
:param _RoleCode: 角色编码
|
5039
5056
|
:type RoleCode: str
|
5057
|
+
:param _UserIdList: 用户id列表
|
5058
|
+
:type UserIdList: list of str
|
5059
|
+
:param _Keyword: 搜索关键词
|
5060
|
+
:type Keyword: str
|
5040
5061
|
"""
|
5041
5062
|
self._PageNo = None
|
5042
5063
|
self._PageSize = None
|
@@ -5044,6 +5065,8 @@ class DescribeUserRoleProjectListRequest(AbstractModel):
|
|
5044
5065
|
self._IsOnlyBindAppUser = None
|
5045
5066
|
self._AllPage = None
|
5046
5067
|
self._RoleCode = None
|
5068
|
+
self._UserIdList = None
|
5069
|
+
self._Keyword = None
|
5047
5070
|
|
5048
5071
|
@property
|
5049
5072
|
def PageNo(self):
|
@@ -5111,6 +5134,28 @@ class DescribeUserRoleProjectListRequest(AbstractModel):
|
|
5111
5134
|
def RoleCode(self, RoleCode):
|
5112
5135
|
self._RoleCode = RoleCode
|
5113
5136
|
|
5137
|
+
@property
|
5138
|
+
def UserIdList(self):
|
5139
|
+
"""用户id列表
|
5140
|
+
:rtype: list of str
|
5141
|
+
"""
|
5142
|
+
return self._UserIdList
|
5143
|
+
|
5144
|
+
@UserIdList.setter
|
5145
|
+
def UserIdList(self, UserIdList):
|
5146
|
+
self._UserIdList = UserIdList
|
5147
|
+
|
5148
|
+
@property
|
5149
|
+
def Keyword(self):
|
5150
|
+
"""搜索关键词
|
5151
|
+
:rtype: str
|
5152
|
+
"""
|
5153
|
+
return self._Keyword
|
5154
|
+
|
5155
|
+
@Keyword.setter
|
5156
|
+
def Keyword(self, Keyword):
|
5157
|
+
self._Keyword = Keyword
|
5158
|
+
|
5114
5159
|
|
5115
5160
|
def _deserialize(self, params):
|
5116
5161
|
self._PageNo = params.get("PageNo")
|
@@ -5119,6 +5164,8 @@ class DescribeUserRoleProjectListRequest(AbstractModel):
|
|
5119
5164
|
self._IsOnlyBindAppUser = params.get("IsOnlyBindAppUser")
|
5120
5165
|
self._AllPage = params.get("AllPage")
|
5121
5166
|
self._RoleCode = params.get("RoleCode")
|
5167
|
+
self._UserIdList = params.get("UserIdList")
|
5168
|
+
self._Keyword = params.get("Keyword")
|
5122
5169
|
memeber_set = set(params.keys())
|
5123
5170
|
for name, value in vars(self).items():
|
5124
5171
|
property_name = name[1:]
|
@@ -8095,6 +8142,18 @@ class Project(AbstractModel):
|
|
8095
8142
|
:param _OwnerName: 所属人
|
8096
8143
|
注意:此字段可能返回 null,表示取不到有效值。
|
8097
8144
|
:type OwnerName: str
|
8145
|
+
:param _NormalCount: 仪表盘页面数
|
8146
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8147
|
+
:type NormalCount: int
|
8148
|
+
:param _FreeCount: 自由画布页面数
|
8149
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8150
|
+
:type FreeCount: int
|
8151
|
+
:param _AdhocCount: 即席分析页面数
|
8152
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8153
|
+
:type AdhocCount: int
|
8154
|
+
:param _BriefingCount: 简报页面数
|
8155
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8156
|
+
:type BriefingCount: int
|
8098
8157
|
"""
|
8099
8158
|
self._Id = None
|
8100
8159
|
self._Logo = None
|
@@ -8120,6 +8179,10 @@ class Project(AbstractModel):
|
|
8120
8179
|
self._CreatedUserName = None
|
8121
8180
|
self._Owner = None
|
8122
8181
|
self._OwnerName = None
|
8182
|
+
self._NormalCount = None
|
8183
|
+
self._FreeCount = None
|
8184
|
+
self._AdhocCount = None
|
8185
|
+
self._BriefingCount = None
|
8123
8186
|
|
8124
8187
|
@property
|
8125
8188
|
def Id(self):
|
@@ -8408,6 +8471,54 @@ class Project(AbstractModel):
|
|
8408
8471
|
def OwnerName(self, OwnerName):
|
8409
8472
|
self._OwnerName = OwnerName
|
8410
8473
|
|
8474
|
+
@property
|
8475
|
+
def NormalCount(self):
|
8476
|
+
"""仪表盘页面数
|
8477
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8478
|
+
:rtype: int
|
8479
|
+
"""
|
8480
|
+
return self._NormalCount
|
8481
|
+
|
8482
|
+
@NormalCount.setter
|
8483
|
+
def NormalCount(self, NormalCount):
|
8484
|
+
self._NormalCount = NormalCount
|
8485
|
+
|
8486
|
+
@property
|
8487
|
+
def FreeCount(self):
|
8488
|
+
"""自由画布页面数
|
8489
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8490
|
+
:rtype: int
|
8491
|
+
"""
|
8492
|
+
return self._FreeCount
|
8493
|
+
|
8494
|
+
@FreeCount.setter
|
8495
|
+
def FreeCount(self, FreeCount):
|
8496
|
+
self._FreeCount = FreeCount
|
8497
|
+
|
8498
|
+
@property
|
8499
|
+
def AdhocCount(self):
|
8500
|
+
"""即席分析页面数
|
8501
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8502
|
+
:rtype: int
|
8503
|
+
"""
|
8504
|
+
return self._AdhocCount
|
8505
|
+
|
8506
|
+
@AdhocCount.setter
|
8507
|
+
def AdhocCount(self, AdhocCount):
|
8508
|
+
self._AdhocCount = AdhocCount
|
8509
|
+
|
8510
|
+
@property
|
8511
|
+
def BriefingCount(self):
|
8512
|
+
"""简报页面数
|
8513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8514
|
+
:rtype: int
|
8515
|
+
"""
|
8516
|
+
return self._BriefingCount
|
8517
|
+
|
8518
|
+
@BriefingCount.setter
|
8519
|
+
def BriefingCount(self, BriefingCount):
|
8520
|
+
self._BriefingCount = BriefingCount
|
8521
|
+
|
8411
8522
|
|
8412
8523
|
def _deserialize(self, params):
|
8413
8524
|
self._Id = params.get("Id")
|
@@ -8439,6 +8550,10 @@ class Project(AbstractModel):
|
|
8439
8550
|
self._CreatedUserName = params.get("CreatedUserName")
|
8440
8551
|
self._Owner = params.get("Owner")
|
8441
8552
|
self._OwnerName = params.get("OwnerName")
|
8553
|
+
self._NormalCount = params.get("NormalCount")
|
8554
|
+
self._FreeCount = params.get("FreeCount")
|
8555
|
+
self._AdhocCount = params.get("AdhocCount")
|
8556
|
+
self._BriefingCount = params.get("BriefingCount")
|
8442
8557
|
memeber_set = set(params.keys())
|
8443
8558
|
for name, value in vars(self).items():
|
8444
8559
|
property_name = name[1:]
|
@@ -2216,7 +2216,7 @@ class CreateSnapshotRequest(AbstractModel):
|
|
2216
2216
|
:type SnapshotName: str
|
2217
2217
|
:param _Deadline: 快照的到期时间,到期后该快照将会自动删除,需要传入UTC时间下的ISO-8601标准时间格式,例如:2022-01-08T09:47:55+00:00,。到期时间最小可设置为一天后的当前时间。
|
2218
2218
|
:type Deadline: str
|
2219
|
-
:param _DiskBackupId: 云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过[DescribeDiskBackups](document/product/362/80278)接口查询。
|
2219
|
+
:param _DiskBackupId: 云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过[DescribeDiskBackups](/document/product/362/80278)接口查询。
|
2220
2220
|
:type DiskBackupId: str
|
2221
2221
|
:param _Tags: 快照绑定的标签。
|
2222
2222
|
:type Tags: list of Tag
|
@@ -2262,7 +2262,7 @@ class CreateSnapshotRequest(AbstractModel):
|
|
2262
2262
|
|
2263
2263
|
@property
|
2264
2264
|
def DiskBackupId(self):
|
2265
|
-
"""云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过[DescribeDiskBackups](document/product/362/80278)接口查询。
|
2265
|
+
"""云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过[DescribeDiskBackups](/document/product/362/80278)接口查询。
|
2266
2266
|
:rtype: str
|
2267
2267
|
"""
|
2268
2268
|
return self._DiskBackupId
|
@@ -15029,12 +15029,18 @@ class DescribeCPUExpandStrategyInfoResponse(AbstractModel):
|
|
15029
15029
|
:param _AutoStrategy: 自动扩容策略。Type 为 auto 时有效
|
15030
15030
|
注意:此字段可能返回 null,表示取不到有效值。
|
15031
15031
|
:type AutoStrategy: :class:`tencentcloud.cdb.v20170320.models.AutoStrategy`
|
15032
|
+
:param _PeriodStrategy: 按周期扩容策略。
|
15033
|
+
:type PeriodStrategy: :class:`tencentcloud.cdb.v20170320.models.PeriodStrategy`
|
15034
|
+
:param _TimeIntervalStrategy: 按时间段扩容策略
|
15035
|
+
:type TimeIntervalStrategy: :class:`tencentcloud.cdb.v20170320.models.TimeIntervalStrategy`
|
15032
15036
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15033
15037
|
:type RequestId: str
|
15034
15038
|
"""
|
15035
15039
|
self._Type = None
|
15036
15040
|
self._ExpandCpu = None
|
15037
15041
|
self._AutoStrategy = None
|
15042
|
+
self._PeriodStrategy = None
|
15043
|
+
self._TimeIntervalStrategy = None
|
15038
15044
|
self._RequestId = None
|
15039
15045
|
|
15040
15046
|
@property
|
@@ -15073,6 +15079,28 @@ class DescribeCPUExpandStrategyInfoResponse(AbstractModel):
|
|
15073
15079
|
def AutoStrategy(self, AutoStrategy):
|
15074
15080
|
self._AutoStrategy = AutoStrategy
|
15075
15081
|
|
15082
|
+
@property
|
15083
|
+
def PeriodStrategy(self):
|
15084
|
+
"""按周期扩容策略。
|
15085
|
+
:rtype: :class:`tencentcloud.cdb.v20170320.models.PeriodStrategy`
|
15086
|
+
"""
|
15087
|
+
return self._PeriodStrategy
|
15088
|
+
|
15089
|
+
@PeriodStrategy.setter
|
15090
|
+
def PeriodStrategy(self, PeriodStrategy):
|
15091
|
+
self._PeriodStrategy = PeriodStrategy
|
15092
|
+
|
15093
|
+
@property
|
15094
|
+
def TimeIntervalStrategy(self):
|
15095
|
+
"""按时间段扩容策略
|
15096
|
+
:rtype: :class:`tencentcloud.cdb.v20170320.models.TimeIntervalStrategy`
|
15097
|
+
"""
|
15098
|
+
return self._TimeIntervalStrategy
|
15099
|
+
|
15100
|
+
@TimeIntervalStrategy.setter
|
15101
|
+
def TimeIntervalStrategy(self, TimeIntervalStrategy):
|
15102
|
+
self._TimeIntervalStrategy = TimeIntervalStrategy
|
15103
|
+
|
15076
15104
|
@property
|
15077
15105
|
def RequestId(self):
|
15078
15106
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -15091,6 +15119,12 @@ class DescribeCPUExpandStrategyInfoResponse(AbstractModel):
|
|
15091
15119
|
if params.get("AutoStrategy") is not None:
|
15092
15120
|
self._AutoStrategy = AutoStrategy()
|
15093
15121
|
self._AutoStrategy._deserialize(params.get("AutoStrategy"))
|
15122
|
+
if params.get("PeriodStrategy") is not None:
|
15123
|
+
self._PeriodStrategy = PeriodStrategy()
|
15124
|
+
self._PeriodStrategy._deserialize(params.get("PeriodStrategy"))
|
15125
|
+
if params.get("TimeIntervalStrategy") is not None:
|
15126
|
+
self._TimeIntervalStrategy = TimeIntervalStrategy()
|
15127
|
+
self._TimeIntervalStrategy._deserialize(params.get("TimeIntervalStrategy"))
|
15094
15128
|
self._RequestId = params.get("RequestId")
|
15095
15129
|
|
15096
15130
|
|
@@ -10922,7 +10922,7 @@ class DescribeDomainsConfigRequest(AbstractModel):
|
|
10922
10922
|
r"""
|
10923
10923
|
:param _Offset: 分页查询偏移量,默认为 0
|
10924
10924
|
:type Offset: int
|
10925
|
-
:param _Limit: 分页查询限制数目,默认为 100,最大可设置为
|
10925
|
+
:param _Limit: 分页查询限制数目,默认为 100,最大可设置为 100
|
10926
10926
|
:type Limit: int
|
10927
10927
|
:param _Filters: 查询条件过滤器,复杂类型
|
10928
10928
|
:type Filters: list of DomainFilter
|
@@ -10947,7 +10947,7 @@ class DescribeDomainsConfigRequest(AbstractModel):
|
|
10947
10947
|
|
10948
10948
|
@property
|
10949
10949
|
def Limit(self):
|
10950
|
-
"""分页查询限制数目,默认为 100,最大可设置为
|
10950
|
+
"""分页查询限制数目,默认为 100,最大可设置为 100
|
10951
10951
|
:rtype: int
|
10952
10952
|
"""
|
10953
10953
|
return self._Limit
|
@@ -22529,6 +22529,24 @@ class SearchLogRequest(AbstractModel):
|
|
22529
22529
|
:param _TopicId: - 要检索分析的日志主题ID,仅能指定一个日志主题。
|
22530
22530
|
- 如需同时检索多个日志主题,请使用Topics参数。
|
22531
22531
|
- TopicId 和 Topics 不能同时使用,在一次请求中有且只能选择一个。
|
22532
|
+
各日志主题ID如下
|
22533
|
+
访问控制-互联网边界 cfw_rule_acl
|
22534
|
+
访问控制-NAT边界 cfw_rule_nat_acl
|
22535
|
+
访问控制-VPC边界 cfw_rule_vpc_acl
|
22536
|
+
访问控制-DNS开关 cfw_rule_dns_acl
|
22537
|
+
入侵防御 cfw_rule_threatinfo
|
22538
|
+
全流量检测与响应日志-流量分析 cfw_netflow_nta
|
22539
|
+
全流量检测与响应日志-流量告警 cfw_rule_ndr_threatinfo
|
22540
|
+
零信任运维-数据库登录 cfw_operate_db
|
22541
|
+
零信任运维-服务器访问 operate_remote_om
|
22542
|
+
零信任运维-Web服务访问 operate_web_access
|
22543
|
+
零信任运维-行为审计 remoteom_commands
|
22544
|
+
流量日志-互联网边界 cfw_netflow_border
|
22545
|
+
流量日志-NAT边界 cfw_netflow_nat
|
22546
|
+
流量日志-VPC边界 cfw_netflow_vpc
|
22547
|
+
流量日志-DNS开关 cfw_netflow_dns
|
22548
|
+
流量日志-内网流量 cfw_netflow_fl
|
22549
|
+
操作日志 operate_log_all
|
22532
22550
|
:type TopicId: str
|
22533
22551
|
:param _Topics: - 要检索分析的日志主题列表,最大支持50个日志主题。
|
22534
22552
|
- 检索单个日志主题时请使用TopicId。
|
@@ -22640,6 +22658,24 @@ class SearchLogRequest(AbstractModel):
|
|
22640
22658
|
"""- 要检索分析的日志主题ID,仅能指定一个日志主题。
|
22641
22659
|
- 如需同时检索多个日志主题,请使用Topics参数。
|
22642
22660
|
- TopicId 和 Topics 不能同时使用,在一次请求中有且只能选择一个。
|
22661
|
+
各日志主题ID如下
|
22662
|
+
访问控制-互联网边界 cfw_rule_acl
|
22663
|
+
访问控制-NAT边界 cfw_rule_nat_acl
|
22664
|
+
访问控制-VPC边界 cfw_rule_vpc_acl
|
22665
|
+
访问控制-DNS开关 cfw_rule_dns_acl
|
22666
|
+
入侵防御 cfw_rule_threatinfo
|
22667
|
+
全流量检测与响应日志-流量分析 cfw_netflow_nta
|
22668
|
+
全流量检测与响应日志-流量告警 cfw_rule_ndr_threatinfo
|
22669
|
+
零信任运维-数据库登录 cfw_operate_db
|
22670
|
+
零信任运维-服务器访问 operate_remote_om
|
22671
|
+
零信任运维-Web服务访问 operate_web_access
|
22672
|
+
零信任运维-行为审计 remoteom_commands
|
22673
|
+
流量日志-互联网边界 cfw_netflow_border
|
22674
|
+
流量日志-NAT边界 cfw_netflow_nat
|
22675
|
+
流量日志-VPC边界 cfw_netflow_vpc
|
22676
|
+
流量日志-DNS开关 cfw_netflow_dns
|
22677
|
+
流量日志-内网流量 cfw_netflow_fl
|
22678
|
+
操作日志 operate_log_all
|
22643
22679
|
:rtype: str
|
22644
22680
|
"""
|
22645
22681
|
return self._TopicId
|
@@ -61,6 +61,8 @@ class License(AbstractModel):
|
|
61
61
|
:type LifeSpanUnit: str
|
62
62
|
:param _LicenseType: 授权的类型:Standard正式版/Development开发版/Trial体验版
|
63
63
|
:type LicenseType: str
|
64
|
+
:param _LicenseLevel: 授权的层级:Master 主授权;Child 子授权/增强型授权
|
65
|
+
:type LicenseLevel: str
|
64
66
|
"""
|
65
67
|
self._LicenseId = None
|
66
68
|
self._LicenseMode = None
|
@@ -79,6 +81,7 @@ class License(AbstractModel):
|
|
79
81
|
self._ExpirationDate = None
|
80
82
|
self._LifeSpanUnit = None
|
81
83
|
self._LicenseType = None
|
84
|
+
self._LicenseLevel = None
|
82
85
|
|
83
86
|
@property
|
84
87
|
def LicenseId(self):
|
@@ -269,6 +272,17 @@ class License(AbstractModel):
|
|
269
272
|
def LicenseType(self, LicenseType):
|
270
273
|
self._LicenseType = LicenseType
|
271
274
|
|
275
|
+
@property
|
276
|
+
def LicenseLevel(self):
|
277
|
+
"""授权的层级:Master 主授权;Child 子授权/增强型授权
|
278
|
+
:rtype: str
|
279
|
+
"""
|
280
|
+
return self._LicenseLevel
|
281
|
+
|
282
|
+
@LicenseLevel.setter
|
283
|
+
def LicenseLevel(self, LicenseLevel):
|
284
|
+
self._LicenseLevel = LicenseLevel
|
285
|
+
|
272
286
|
|
273
287
|
def _deserialize(self, params):
|
274
288
|
self._LicenseId = params.get("LicenseId")
|
@@ -293,6 +307,7 @@ class License(AbstractModel):
|
|
293
307
|
self._ExpirationDate = params.get("ExpirationDate")
|
294
308
|
self._LifeSpanUnit = params.get("LifeSpanUnit")
|
295
309
|
self._LicenseType = params.get("LicenseType")
|
310
|
+
self._LicenseLevel = params.get("LicenseLevel")
|
296
311
|
memeber_set = set(params.keys())
|
297
312
|
for name, value in vars(self).items():
|
298
313
|
property_name = name[1:]
|
@@ -22622,6 +22622,7 @@ class SystemDisk(AbstractModel):
|
|
22622
22622
|
:param _DiskSize: 系统盘大小,单位:GiB。默认值为 50
|
22623
22623
|
:type DiskSize: int
|
22624
22624
|
:param _CdcId: 所属的独享集群ID。
|
22625
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22625
22626
|
:type CdcId: str
|
22626
22627
|
:param _DiskName: 磁盘名称,长度不超过128 个字符。
|
22627
22628
|
:type DiskName: str
|
@@ -22678,6 +22679,7 @@ class SystemDisk(AbstractModel):
|
|
22678
22679
|
@property
|
22679
22680
|
def CdcId(self):
|
22680
22681
|
"""所属的独享集群ID。
|
22682
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22681
22683
|
:rtype: str
|
22682
22684
|
"""
|
22683
22685
|
return self._CdcId
|
@@ -581,6 +581,29 @@ class EmrClient(AbstractClient):
|
|
581
581
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
582
582
|
|
583
583
|
|
584
|
+
def DescribeGroupsSTD(self, request):
|
585
|
+
"""查询用户组
|
586
|
+
|
587
|
+
:param request: Request instance for DescribeGroupsSTD.
|
588
|
+
:type request: :class:`tencentcloud.emr.v20190103.models.DescribeGroupsSTDRequest`
|
589
|
+
:rtype: :class:`tencentcloud.emr.v20190103.models.DescribeGroupsSTDResponse`
|
590
|
+
|
591
|
+
"""
|
592
|
+
try:
|
593
|
+
params = request._serialize()
|
594
|
+
headers = request.headers
|
595
|
+
body = self.call("DescribeGroupsSTD", params, headers=headers)
|
596
|
+
response = json.loads(body)
|
597
|
+
model = models.DescribeGroupsSTDResponse()
|
598
|
+
model._deserialize(response["Response"])
|
599
|
+
return model
|
600
|
+
except Exception as e:
|
601
|
+
if isinstance(e, TencentCloudSDKException):
|
602
|
+
raise
|
603
|
+
else:
|
604
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
605
|
+
|
606
|
+
|
584
607
|
def DescribeHBaseTableOverview(self, request):
|
585
608
|
"""获取Hbase表级监控数据概览接口
|
586
609
|
|