tencentcloud-sdk-python 3.0.1388__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 +26 -26
- tencentcloud/bh/v20230418/models.py +315 -0
- tencentcloud/bi/v20220105/models.py +115 -0
- tencentcloud/cam/v20190116/errorcodes.py +6 -0
- tencentcloud/cam/v20190116/models.py +0 -8
- tencentcloud/cbs/v20170312/models.py +10 -10
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +861 -0
- tencentcloud/cdn/v20180606/models.py +2 -2
- tencentcloud/cdwdoris/v20211228/models.py +19 -0
- tencentcloud/cfw/v20190904/models.py +36 -0
- tencentcloud/cloudapp/v20220530/models.py +15 -0
- tencentcloud/cvm/v20170312/models.py +2 -0
- tencentcloud/cynosdb/v20190107/models.py +239 -6
- tencentcloud/dlc/v20210125/models.py +18 -18
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +379 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/gs/v20191118/models.py +15 -0
- tencentcloud/hai/v20230812/errorcodes.py +3 -0
- tencentcloud/keewidb/v20220308/errorcodes.py +6 -0
- tencentcloud/keewidb/v20220308/models.py +8 -8
- tencentcloud/live/v20180801/models.py +2 -0
- tencentcloud/lke/v20231130/models.py +4 -4
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +45 -0
- tencentcloud/oceanus/v20190422/models.py +747 -2
- tencentcloud/ses/v20201002/models.py +180 -0
- tencentcloud/ses/v20201002/ses_client.py +23 -0
- tencentcloud/ssl/v20191205/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/models.py +15 -0
- tencentcloud/tag/v20180813/models.py +0 -26
- tencentcloud/tione/v20211111/models.py +62 -0
- 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 +117 -2
- tencentcloud/vpc/v20170312/vpc_client.py +46 -0
- tencentcloud/wedata/v20210820/models.py +188 -2
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1388.dist-info → tencentcloud_sdk_python-3.0.1390.dist-info}/top_level.txt +0 -0
@@ -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
|
@@ -2502,6 +2502,8 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2502
2502
|
:type SSCCU: int
|
2503
2503
|
:param _CacheDiskSize: 缓存盘大小
|
2504
2504
|
:type CacheDiskSize: str
|
2505
|
+
:param _CacheDataDiskSize: 缓存盘大小
|
2506
|
+
:type CacheDataDiskSize: int
|
2505
2507
|
"""
|
2506
2508
|
self._Zone = None
|
2507
2509
|
self._FeSpec = None
|
@@ -2522,6 +2524,7 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2522
2524
|
self._IsSSC = None
|
2523
2525
|
self._SSCCU = None
|
2524
2526
|
self._CacheDiskSize = None
|
2527
|
+
self._CacheDataDiskSize = None
|
2525
2528
|
|
2526
2529
|
@property
|
2527
2530
|
def Zone(self):
|
@@ -2730,6 +2733,8 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2730
2733
|
|
2731
2734
|
@property
|
2732
2735
|
def CacheDiskSize(self):
|
2736
|
+
warnings.warn("parameter `CacheDiskSize` is deprecated", DeprecationWarning)
|
2737
|
+
|
2733
2738
|
"""缓存盘大小
|
2734
2739
|
:rtype: str
|
2735
2740
|
"""
|
@@ -2737,8 +2742,21 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2737
2742
|
|
2738
2743
|
@CacheDiskSize.setter
|
2739
2744
|
def CacheDiskSize(self, CacheDiskSize):
|
2745
|
+
warnings.warn("parameter `CacheDiskSize` is deprecated", DeprecationWarning)
|
2746
|
+
|
2740
2747
|
self._CacheDiskSize = CacheDiskSize
|
2741
2748
|
|
2749
|
+
@property
|
2750
|
+
def CacheDataDiskSize(self):
|
2751
|
+
"""缓存盘大小
|
2752
|
+
:rtype: int
|
2753
|
+
"""
|
2754
|
+
return self._CacheDataDiskSize
|
2755
|
+
|
2756
|
+
@CacheDataDiskSize.setter
|
2757
|
+
def CacheDataDiskSize(self, CacheDataDiskSize):
|
2758
|
+
self._CacheDataDiskSize = CacheDataDiskSize
|
2759
|
+
|
2742
2760
|
|
2743
2761
|
def _deserialize(self, params):
|
2744
2762
|
self._Zone = params.get("Zone")
|
@@ -2778,6 +2796,7 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2778
2796
|
self._IsSSC = params.get("IsSSC")
|
2779
2797
|
self._SSCCU = params.get("SSCCU")
|
2780
2798
|
self._CacheDiskSize = params.get("CacheDiskSize")
|
2799
|
+
self._CacheDataDiskSize = params.get("CacheDataDiskSize")
|
2781
2800
|
memeber_set = set(params.keys())
|
2782
2801
|
for name, value in vars(self).items():
|
2783
2802
|
property_name = name[1:]
|
@@ -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
|
@@ -2783,6 +2783,8 @@ class BizTaskInfo(AbstractModel):
|
|
2783
2783
|
:type InstanceCLSDeliveryInfos: list of InstanceCLSDeliveryInfo
|
2784
2784
|
:param _TaskProgressInfo: 任务进度信息
|
2785
2785
|
:type TaskProgressInfo: :class:`tencentcloud.cynosdb.v20190107.models.TaskProgressInfo`
|
2786
|
+
:param _GdnTaskInfo: 全球数据库网络任务
|
2787
|
+
:type GdnTaskInfo: :class:`tencentcloud.cynosdb.v20190107.models.GdnTaskInfo`
|
2786
2788
|
"""
|
2787
2789
|
self._ID = None
|
2788
2790
|
self._AppId = None
|
@@ -2821,6 +2823,7 @@ class BizTaskInfo(AbstractModel):
|
|
2821
2823
|
self._TaskMaintainInfo = None
|
2822
2824
|
self._InstanceCLSDeliveryInfos = None
|
2823
2825
|
self._TaskProgressInfo = None
|
2826
|
+
self._GdnTaskInfo = None
|
2824
2827
|
|
2825
2828
|
@property
|
2826
2829
|
def ID(self):
|
@@ -3242,6 +3245,17 @@ class BizTaskInfo(AbstractModel):
|
|
3242
3245
|
def TaskProgressInfo(self, TaskProgressInfo):
|
3243
3246
|
self._TaskProgressInfo = TaskProgressInfo
|
3244
3247
|
|
3248
|
+
@property
|
3249
|
+
def GdnTaskInfo(self):
|
3250
|
+
"""全球数据库网络任务
|
3251
|
+
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.GdnTaskInfo`
|
3252
|
+
"""
|
3253
|
+
return self._GdnTaskInfo
|
3254
|
+
|
3255
|
+
@GdnTaskInfo.setter
|
3256
|
+
def GdnTaskInfo(self, GdnTaskInfo):
|
3257
|
+
self._GdnTaskInfo = GdnTaskInfo
|
3258
|
+
|
3245
3259
|
|
3246
3260
|
def _deserialize(self, params):
|
3247
3261
|
self._ID = params.get("ID")
|
@@ -3311,6 +3325,9 @@ class BizTaskInfo(AbstractModel):
|
|
3311
3325
|
if params.get("TaskProgressInfo") is not None:
|
3312
3326
|
self._TaskProgressInfo = TaskProgressInfo()
|
3313
3327
|
self._TaskProgressInfo._deserialize(params.get("TaskProgressInfo"))
|
3328
|
+
if params.get("GdnTaskInfo") is not None:
|
3329
|
+
self._GdnTaskInfo = GdnTaskInfo()
|
3330
|
+
self._GdnTaskInfo._deserialize(params.get("GdnTaskInfo"))
|
3314
3331
|
memeber_set = set(params.keys())
|
3315
3332
|
for name, value in vars(self).items():
|
3316
3333
|
property_name = name[1:]
|
@@ -8552,6 +8569,12 @@ pausing
|
|
8552
8569
|
从集群 - standby
|
8553
8570
|
如为空,该字段无效
|
8554
8571
|
:type GdnRole: str
|
8572
|
+
:param _UsedArchiveStorage: 二级存储使用量,单位:G
|
8573
|
+
:type UsedArchiveStorage: int
|
8574
|
+
:param _ArchiveStatus: 归档状态,枚举值<li>normal:正常</li><li>archiving:归档中</li><li>resuming:恢复中</li><li>archived :已归档</li>
|
8575
|
+
:type ArchiveStatus: str
|
8576
|
+
:param _ArchiveProgress: 归档进度,百分比。
|
8577
|
+
:type ArchiveProgress: int
|
8555
8578
|
"""
|
8556
8579
|
self._ClusterId = None
|
8557
8580
|
self._ClusterName = None
|
@@ -8606,6 +8629,9 @@ pausing
|
|
8606
8629
|
self._CynosVersionTag = None
|
8607
8630
|
self._GdnId = None
|
8608
8631
|
self._GdnRole = None
|
8632
|
+
self._UsedArchiveStorage = None
|
8633
|
+
self._ArchiveStatus = None
|
8634
|
+
self._ArchiveProgress = None
|
8609
8635
|
|
8610
8636
|
@property
|
8611
8637
|
def ClusterId(self):
|
@@ -9197,6 +9223,39 @@ pausing
|
|
9197
9223
|
def GdnRole(self, GdnRole):
|
9198
9224
|
self._GdnRole = GdnRole
|
9199
9225
|
|
9226
|
+
@property
|
9227
|
+
def UsedArchiveStorage(self):
|
9228
|
+
"""二级存储使用量,单位:G
|
9229
|
+
:rtype: int
|
9230
|
+
"""
|
9231
|
+
return self._UsedArchiveStorage
|
9232
|
+
|
9233
|
+
@UsedArchiveStorage.setter
|
9234
|
+
def UsedArchiveStorage(self, UsedArchiveStorage):
|
9235
|
+
self._UsedArchiveStorage = UsedArchiveStorage
|
9236
|
+
|
9237
|
+
@property
|
9238
|
+
def ArchiveStatus(self):
|
9239
|
+
"""归档状态,枚举值<li>normal:正常</li><li>archiving:归档中</li><li>resuming:恢复中</li><li>archived :已归档</li>
|
9240
|
+
:rtype: str
|
9241
|
+
"""
|
9242
|
+
return self._ArchiveStatus
|
9243
|
+
|
9244
|
+
@ArchiveStatus.setter
|
9245
|
+
def ArchiveStatus(self, ArchiveStatus):
|
9246
|
+
self._ArchiveStatus = ArchiveStatus
|
9247
|
+
|
9248
|
+
@property
|
9249
|
+
def ArchiveProgress(self):
|
9250
|
+
"""归档进度,百分比。
|
9251
|
+
:rtype: int
|
9252
|
+
"""
|
9253
|
+
return self._ArchiveProgress
|
9254
|
+
|
9255
|
+
@ArchiveProgress.setter
|
9256
|
+
def ArchiveProgress(self, ArchiveProgress):
|
9257
|
+
self._ArchiveProgress = ArchiveProgress
|
9258
|
+
|
9200
9259
|
|
9201
9260
|
def _deserialize(self, params):
|
9202
9261
|
self._ClusterId = params.get("ClusterId")
|
@@ -9284,6 +9343,9 @@ pausing
|
|
9284
9343
|
self._CynosVersionTag = params.get("CynosVersionTag")
|
9285
9344
|
self._GdnId = params.get("GdnId")
|
9286
9345
|
self._GdnRole = params.get("GdnRole")
|
9346
|
+
self._UsedArchiveStorage = params.get("UsedArchiveStorage")
|
9347
|
+
self._ArchiveStatus = params.get("ArchiveStatus")
|
9348
|
+
self._ArchiveProgress = params.get("ArchiveProgress")
|
9287
9349
|
memeber_set = set(params.keys())
|
9288
9350
|
for name, value in vars(self).items():
|
9289
9351
|
property_name = name[1:]
|
@@ -20397,6 +20459,8 @@ no
|
|
20397
20459
|
:type AutoScaleUp: str
|
20398
20460
|
:param _AutoScaleDown: 集群是否允许向下缩容,可选范围<li>yes</li><li>no</li>
|
20399
20461
|
:type AutoScaleDown: str
|
20462
|
+
:param _AutoArchive: 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
20463
|
+
:type AutoArchive: str
|
20400
20464
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20401
20465
|
:type RequestId: str
|
20402
20466
|
"""
|
@@ -20406,6 +20470,7 @@ no
|
|
20406
20470
|
self._AutoPause = None
|
20407
20471
|
self._AutoScaleUp = None
|
20408
20472
|
self._AutoScaleDown = None
|
20473
|
+
self._AutoArchive = None
|
20409
20474
|
self._RequestId = None
|
20410
20475
|
|
20411
20476
|
@property
|
@@ -20476,6 +20541,17 @@ no
|
|
20476
20541
|
def AutoScaleDown(self, AutoScaleDown):
|
20477
20542
|
self._AutoScaleDown = AutoScaleDown
|
20478
20543
|
|
20544
|
+
@property
|
20545
|
+
def AutoArchive(self):
|
20546
|
+
"""是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
20547
|
+
:rtype: str
|
20548
|
+
"""
|
20549
|
+
return self._AutoArchive
|
20550
|
+
|
20551
|
+
@AutoArchive.setter
|
20552
|
+
def AutoArchive(self, AutoArchive):
|
20553
|
+
self._AutoArchive = AutoArchive
|
20554
|
+
|
20479
20555
|
@property
|
20480
20556
|
def RequestId(self):
|
20481
20557
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -20495,6 +20571,7 @@ no
|
|
20495
20571
|
self._AutoPause = params.get("AutoPause")
|
20496
20572
|
self._AutoScaleUp = params.get("AutoScaleUp")
|
20497
20573
|
self._AutoScaleDown = params.get("AutoScaleDown")
|
20574
|
+
self._AutoArchive = params.get("AutoArchive")
|
20498
20575
|
self._RequestId = params.get("RequestId")
|
20499
20576
|
|
20500
20577
|
|
@@ -21920,6 +21997,132 @@ class ExportResourcePackageDeductDetailsResponse(AbstractModel):
|
|
21920
21997
|
self._RequestId = params.get("RequestId")
|
21921
21998
|
|
21922
21999
|
|
22000
|
+
class GdnTaskInfo(AbstractModel):
|
22001
|
+
"""全球数据库任务信息
|
22002
|
+
|
22003
|
+
"""
|
22004
|
+
|
22005
|
+
def __init__(self):
|
22006
|
+
r"""
|
22007
|
+
:param _GdnId: 全球数据库唯一标识
|
22008
|
+
:type GdnId: str
|
22009
|
+
:param _GdnName: 全球数据库唯一别名
|
22010
|
+
:type GdnName: str
|
22011
|
+
:param _PrimaryClusterId: 主集群ID
|
22012
|
+
:type PrimaryClusterId: str
|
22013
|
+
:param _PrimaryClusterRegion: 主集群所在地域
|
22014
|
+
:type PrimaryClusterRegion: str
|
22015
|
+
:param _StandbyClusterRegion: 从集群所在地域
|
22016
|
+
:type StandbyClusterRegion: str
|
22017
|
+
:param _StandbyClusterId: 从集群ID
|
22018
|
+
:type StandbyClusterId: str
|
22019
|
+
:param _StandbyClusterName: 从集群别名
|
22020
|
+
:type StandbyClusterName: str
|
22021
|
+
"""
|
22022
|
+
self._GdnId = None
|
22023
|
+
self._GdnName = None
|
22024
|
+
self._PrimaryClusterId = None
|
22025
|
+
self._PrimaryClusterRegion = None
|
22026
|
+
self._StandbyClusterRegion = None
|
22027
|
+
self._StandbyClusterId = None
|
22028
|
+
self._StandbyClusterName = None
|
22029
|
+
|
22030
|
+
@property
|
22031
|
+
def GdnId(self):
|
22032
|
+
"""全球数据库唯一标识
|
22033
|
+
:rtype: str
|
22034
|
+
"""
|
22035
|
+
return self._GdnId
|
22036
|
+
|
22037
|
+
@GdnId.setter
|
22038
|
+
def GdnId(self, GdnId):
|
22039
|
+
self._GdnId = GdnId
|
22040
|
+
|
22041
|
+
@property
|
22042
|
+
def GdnName(self):
|
22043
|
+
"""全球数据库唯一别名
|
22044
|
+
:rtype: str
|
22045
|
+
"""
|
22046
|
+
return self._GdnName
|
22047
|
+
|
22048
|
+
@GdnName.setter
|
22049
|
+
def GdnName(self, GdnName):
|
22050
|
+
self._GdnName = GdnName
|
22051
|
+
|
22052
|
+
@property
|
22053
|
+
def PrimaryClusterId(self):
|
22054
|
+
"""主集群ID
|
22055
|
+
:rtype: str
|
22056
|
+
"""
|
22057
|
+
return self._PrimaryClusterId
|
22058
|
+
|
22059
|
+
@PrimaryClusterId.setter
|
22060
|
+
def PrimaryClusterId(self, PrimaryClusterId):
|
22061
|
+
self._PrimaryClusterId = PrimaryClusterId
|
22062
|
+
|
22063
|
+
@property
|
22064
|
+
def PrimaryClusterRegion(self):
|
22065
|
+
"""主集群所在地域
|
22066
|
+
:rtype: str
|
22067
|
+
"""
|
22068
|
+
return self._PrimaryClusterRegion
|
22069
|
+
|
22070
|
+
@PrimaryClusterRegion.setter
|
22071
|
+
def PrimaryClusterRegion(self, PrimaryClusterRegion):
|
22072
|
+
self._PrimaryClusterRegion = PrimaryClusterRegion
|
22073
|
+
|
22074
|
+
@property
|
22075
|
+
def StandbyClusterRegion(self):
|
22076
|
+
"""从集群所在地域
|
22077
|
+
:rtype: str
|
22078
|
+
"""
|
22079
|
+
return self._StandbyClusterRegion
|
22080
|
+
|
22081
|
+
@StandbyClusterRegion.setter
|
22082
|
+
def StandbyClusterRegion(self, StandbyClusterRegion):
|
22083
|
+
self._StandbyClusterRegion = StandbyClusterRegion
|
22084
|
+
|
22085
|
+
@property
|
22086
|
+
def StandbyClusterId(self):
|
22087
|
+
"""从集群ID
|
22088
|
+
:rtype: str
|
22089
|
+
"""
|
22090
|
+
return self._StandbyClusterId
|
22091
|
+
|
22092
|
+
@StandbyClusterId.setter
|
22093
|
+
def StandbyClusterId(self, StandbyClusterId):
|
22094
|
+
self._StandbyClusterId = StandbyClusterId
|
22095
|
+
|
22096
|
+
@property
|
22097
|
+
def StandbyClusterName(self):
|
22098
|
+
"""从集群别名
|
22099
|
+
:rtype: str
|
22100
|
+
"""
|
22101
|
+
return self._StandbyClusterName
|
22102
|
+
|
22103
|
+
@StandbyClusterName.setter
|
22104
|
+
def StandbyClusterName(self, StandbyClusterName):
|
22105
|
+
self._StandbyClusterName = StandbyClusterName
|
22106
|
+
|
22107
|
+
|
22108
|
+
def _deserialize(self, params):
|
22109
|
+
self._GdnId = params.get("GdnId")
|
22110
|
+
self._GdnName = params.get("GdnName")
|
22111
|
+
self._PrimaryClusterId = params.get("PrimaryClusterId")
|
22112
|
+
self._PrimaryClusterRegion = params.get("PrimaryClusterRegion")
|
22113
|
+
self._StandbyClusterRegion = params.get("StandbyClusterRegion")
|
22114
|
+
self._StandbyClusterId = params.get("StandbyClusterId")
|
22115
|
+
self._StandbyClusterName = params.get("StandbyClusterName")
|
22116
|
+
memeber_set = set(params.keys())
|
22117
|
+
for name, value in vars(self).items():
|
22118
|
+
property_name = name[1:]
|
22119
|
+
if property_name in memeber_set:
|
22120
|
+
memeber_set.remove(property_name)
|
22121
|
+
if len(memeber_set) > 0:
|
22122
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
22123
|
+
|
22124
|
+
|
22125
|
+
|
21923
22126
|
class GrantAccountPrivilegesRequest(AbstractModel):
|
21924
22127
|
"""GrantAccountPrivileges请求参数结构体
|
21925
22128
|
|
@@ -28251,6 +28454,8 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
28251
28454
|
:type MinRoCount: int
|
28252
28455
|
:param _MaxRoCount: 只读节点最大个数
|
28253
28456
|
:type MaxRoCount: int
|
28457
|
+
:param _AutoArchive: 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
28458
|
+
:type AutoArchive: str
|
28254
28459
|
"""
|
28255
28460
|
self._ClusterId = None
|
28256
28461
|
self._AutoPause = None
|
@@ -28263,6 +28468,7 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
28263
28468
|
self._MaxRoCpu = None
|
28264
28469
|
self._MinRoCount = None
|
28265
28470
|
self._MaxRoCount = None
|
28471
|
+
self._AutoArchive = None
|
28266
28472
|
|
28267
28473
|
@property
|
28268
28474
|
def ClusterId(self):
|
@@ -28387,6 +28593,17 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
28387
28593
|
def MaxRoCount(self, MaxRoCount):
|
28388
28594
|
self._MaxRoCount = MaxRoCount
|
28389
28595
|
|
28596
|
+
@property
|
28597
|
+
def AutoArchive(self):
|
28598
|
+
"""是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
28599
|
+
:rtype: str
|
28600
|
+
"""
|
28601
|
+
return self._AutoArchive
|
28602
|
+
|
28603
|
+
@AutoArchive.setter
|
28604
|
+
def AutoArchive(self, AutoArchive):
|
28605
|
+
self._AutoArchive = AutoArchive
|
28606
|
+
|
28390
28607
|
|
28391
28608
|
def _deserialize(self, params):
|
28392
28609
|
self._ClusterId = params.get("ClusterId")
|
@@ -28400,6 +28617,7 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
28400
28617
|
self._MaxRoCpu = params.get("MaxRoCpu")
|
28401
28618
|
self._MinRoCount = params.get("MinRoCount")
|
28402
28619
|
self._MaxRoCount = params.get("MaxRoCount")
|
28620
|
+
self._AutoArchive = params.get("AutoArchive")
|
28403
28621
|
memeber_set = set(params.keys())
|
28404
28622
|
for name, value in vars(self).items():
|
28405
28623
|
property_name = name[1:]
|
@@ -31928,17 +32146,17 @@ class ProxyConfig(AbstractModel):
|
|
31928
32146
|
|
31929
32147
|
def __init__(self):
|
31930
32148
|
r"""
|
31931
|
-
:param _ProxyCount:
|
32149
|
+
:param _ProxyCount: 数据库代理组节点个数。该参数不再建议使用,建议使用ProxyZones
|
31932
32150
|
:type ProxyCount: int
|
31933
32151
|
:param _Cpu: cpu核数
|
31934
32152
|
:type Cpu: int
|
31935
32153
|
:param _Mem: 内存
|
31936
32154
|
:type Mem: int
|
31937
|
-
:param _ConnectionPoolType:
|
32155
|
+
:param _ConnectionPoolType: 连接池类型:SessionConnectionPool(会话级别连接池 )
|
31938
32156
|
:type ConnectionPoolType: str
|
31939
32157
|
:param _OpenConnectionPool: 是否开启连接池,yes-开启,no-不开启
|
31940
32158
|
:type OpenConnectionPool: str
|
31941
|
-
:param _ConnectionPoolTimeOut:
|
32159
|
+
:param _ConnectionPoolTimeOut: 连接池阈值:单位(秒)
|
31942
32160
|
:type ConnectionPoolTimeOut: int
|
31943
32161
|
:param _Description: 描述说明
|
31944
32162
|
:type Description: str
|
@@ -31956,7 +32174,7 @@ class ProxyConfig(AbstractModel):
|
|
31956
32174
|
|
31957
32175
|
@property
|
31958
32176
|
def ProxyCount(self):
|
31959
|
-
"""
|
32177
|
+
"""数据库代理组节点个数。该参数不再建议使用,建议使用ProxyZones
|
31960
32178
|
:rtype: int
|
31961
32179
|
"""
|
31962
32180
|
return self._ProxyCount
|
@@ -31989,7 +32207,7 @@ class ProxyConfig(AbstractModel):
|
|
31989
32207
|
|
31990
32208
|
@property
|
31991
32209
|
def ConnectionPoolType(self):
|
31992
|
-
"""
|
32210
|
+
"""连接池类型:SessionConnectionPool(会话级别连接池 )
|
31993
32211
|
:rtype: str
|
31994
32212
|
"""
|
31995
32213
|
return self._ConnectionPoolType
|
@@ -32011,7 +32229,7 @@ class ProxyConfig(AbstractModel):
|
|
32011
32229
|
|
32012
32230
|
@property
|
32013
32231
|
def ConnectionPoolTimeOut(self):
|
32014
|
-
"""
|
32232
|
+
"""连接池阈值:单位(秒)
|
32015
32233
|
:rtype: int
|
32016
32234
|
"""
|
32017
32235
|
return self._ConnectionPoolTimeOut
|
@@ -35231,6 +35449,8 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
35231
35449
|
:type OriginalROInstanceList: list of str
|
35232
35450
|
:param _ProjectId: 项目id
|
35233
35451
|
:type ProjectId: int
|
35452
|
+
:param _AutoArchive: 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
35453
|
+
:type AutoArchive: str
|
35234
35454
|
"""
|
35235
35455
|
self._Zone = None
|
35236
35456
|
self._OriginalClusterId = None
|
@@ -35259,6 +35479,7 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
35259
35479
|
self._RollbackTables = None
|
35260
35480
|
self._OriginalROInstanceList = None
|
35261
35481
|
self._ProjectId = None
|
35482
|
+
self._AutoArchive = None
|
35262
35483
|
|
35263
35484
|
@property
|
35264
35485
|
def Zone(self):
|
@@ -35566,6 +35787,17 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
35566
35787
|
def ProjectId(self, ProjectId):
|
35567
35788
|
self._ProjectId = ProjectId
|
35568
35789
|
|
35790
|
+
@property
|
35791
|
+
def AutoArchive(self):
|
35792
|
+
"""是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
35793
|
+
:rtype: str
|
35794
|
+
"""
|
35795
|
+
return self._AutoArchive
|
35796
|
+
|
35797
|
+
@AutoArchive.setter
|
35798
|
+
def AutoArchive(self, AutoArchive):
|
35799
|
+
self._AutoArchive = AutoArchive
|
35800
|
+
|
35569
35801
|
|
35570
35802
|
def _deserialize(self, params):
|
35571
35803
|
self._Zone = params.get("Zone")
|
@@ -35620,6 +35852,7 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
35620
35852
|
self._RollbackTables.append(obj)
|
35621
35853
|
self._OriginalROInstanceList = params.get("OriginalROInstanceList")
|
35622
35854
|
self._ProjectId = params.get("ProjectId")
|
35855
|
+
self._AutoArchive = params.get("AutoArchive")
|
35623
35856
|
memeber_set = set(params.keys())
|
35624
35857
|
for name, value in vars(self).items():
|
35625
35858
|
property_name = name[1:]
|