tencentcloud-sdk-python-cynosdb 3.1.101__tar.gz → 3.1.103__tar.gz

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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/setup.py +1 -1
  3. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud/cynosdb/v20190107/models.py +274 -204
  5. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud_sdk_python_cynosdb.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_cynosdb-3.1.103/tencentcloud_sdk_python_cynosdb.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_cynosdb-3.1.101/tencentcloud_sdk_python_cynosdb.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/README.rst +0 -0
  9. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud/cynosdb/__init__.py +0 -0
  11. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud/cynosdb/v20190107/__init__.py +0 -0
  12. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud/cynosdb/v20190107/cynosdb_client.py +0 -0
  13. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud/cynosdb/v20190107/cynosdb_client_async.py +0 -0
  14. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud/cynosdb/v20190107/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud_sdk_python_cynosdb.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud_sdk_python_cynosdb.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_cynosdb-3.1.101 → tencentcloud_sdk_python_cynosdb-3.1.103}/tencentcloud_sdk_python_cynosdb.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cynosdb
3
- Version: 3.1.101
3
+ Version: 3.1.103
4
4
  Summary: Tencent Cloud Cynosdb SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.101
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.103
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cynosdb',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.101,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.103,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Cynosdb SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.101'
17
+ __version__ = '3.1.103'
@@ -18,6 +18,72 @@ import warnings
18
18
  from tencentcloud.common.abstract_model import AbstractModel
19
19
 
20
20
 
21
+ class AIOptimizerStatus(AbstractModel):
22
+ r"""AI 优化器状态
23
+
24
+ """
25
+
26
+ def __init__(self):
27
+ r"""
28
+ :param _Status: <p>状态。closing-关闭中,closed-关闭,opening-开启中,training-训练中,trained-训练完成,train_failed-训练失败。</p>
29
+ :type Status: str
30
+ :param _OpenTime: <p>开启时间</p>
31
+ :type OpenTime: str
32
+ :param _TrainingProgress: <p>训练进度</p>
33
+ :type TrainingProgress: int
34
+ """
35
+ self._Status = None
36
+ self._OpenTime = None
37
+ self._TrainingProgress = None
38
+
39
+ @property
40
+ def Status(self):
41
+ r"""<p>状态。closing-关闭中,closed-关闭,opening-开启中,training-训练中,trained-训练完成,train_failed-训练失败。</p>
42
+ :rtype: str
43
+ """
44
+ return self._Status
45
+
46
+ @Status.setter
47
+ def Status(self, Status):
48
+ self._Status = Status
49
+
50
+ @property
51
+ def OpenTime(self):
52
+ r"""<p>开启时间</p>
53
+ :rtype: str
54
+ """
55
+ return self._OpenTime
56
+
57
+ @OpenTime.setter
58
+ def OpenTime(self, OpenTime):
59
+ self._OpenTime = OpenTime
60
+
61
+ @property
62
+ def TrainingProgress(self):
63
+ r"""<p>训练进度</p>
64
+ :rtype: int
65
+ """
66
+ return self._TrainingProgress
67
+
68
+ @TrainingProgress.setter
69
+ def TrainingProgress(self, TrainingProgress):
70
+ self._TrainingProgress = TrainingProgress
71
+
72
+
73
+ def _deserialize(self, params):
74
+ self._Status = params.get("Status")
75
+ self._OpenTime = params.get("OpenTime")
76
+ self._TrainingProgress = params.get("TrainingProgress")
77
+ memeber_set = set(params.keys())
78
+ for name, value in vars(self).items():
79
+ property_name = name[1:]
80
+ if property_name in memeber_set:
81
+ memeber_set.remove(property_name)
82
+ if len(memeber_set) > 0:
83
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
84
+
85
+
86
+
21
87
  class Ability(AbstractModel):
22
88
  r"""集群支持的功能
23
89
 
@@ -6370,46 +6436,44 @@ class ClusterInstanceDetail(AbstractModel):
6370
6436
 
6371
6437
  def __init__(self):
6372
6438
  r"""
6373
- :param _InstanceId: 实例ID
6439
+ :param _InstanceId: <p>实例ID</p>
6374
6440
  :type InstanceId: str
6375
- :param _InstanceName: 实例名称
6441
+ :param _InstanceName: <p>实例名称</p>
6376
6442
  :type InstanceName: str
6377
- :param _InstanceType: 引擎类型
6443
+ :param _InstanceType: <p>引擎类型</p>
6378
6444
  :type InstanceType: str
6379
- :param _InstanceStatus: 实例状态
6445
+ :param _InstanceStatus: <p>实例状态</p>
6380
6446
  :type InstanceStatus: str
6381
- :param _InstanceStatusDesc: 实例状态描述
6447
+ :param _InstanceStatusDesc: <p>实例状态描述</p>
6382
6448
  :type InstanceStatusDesc: str
6383
- :param _InstanceCpu: cpu核数
6449
+ :param _InstanceCpu: <p>cpu核数</p>
6384
6450
  :type InstanceCpu: int
6385
- :param _InstanceMemory: 内存
6451
+ :param _InstanceMemory: <p>内存</p>
6386
6452
  :type InstanceMemory: int
6387
- :param _InstanceStorage: 硬盘
6453
+ :param _InstanceStorage: <p>硬盘</p>
6388
6454
  :type InstanceStorage: int
6389
- :param _InstanceRole: 实例角色
6455
+ :param _InstanceRole: <p>实例角色</p>
6390
6456
  :type InstanceRole: str
6391
- :param _MaintainStartTime: 执行开始时间(距离0点的秒数)
6457
+ :param _MaintainStartTime: <p>执行开始时间(距离0点的秒数)</p>
6392
6458
  :type MaintainStartTime: int
6393
- :param _MaintainDuration: 持续的时间(单位:秒)
6459
+ :param _MaintainDuration: <p>持续的时间(单位:秒)</p>
6394
6460
  :type MaintainDuration: int
6395
- :param _MaintainWeekDays: 可以执行的时间,枚举值:["Mon","Tue","Wed","Thu","Fri", "Sat", "Sun"]
6461
+ :param _MaintainWeekDays: <p>可以执行的时间,枚举值:[&quot;Mon&quot;,&quot;Tue&quot;,&quot;Wed&quot;,&quot;Thu&quot;,&quot;Fri&quot;, &quot;Sat&quot;, &quot;Sun&quot;]</p>
6396
6462
  :type MaintainWeekDays: list of str
6397
- :param _ServerlessStatus: serverless实例子状态
6463
+ :param _ServerlessStatus: <p>serverless实例子状态</p>
6398
6464
  :type ServerlessStatus: str
6399
- :param _InstanceTasks: 实例任务信息
6465
+ :param _InstanceTasks: <p>实例任务信息</p>
6400
6466
  :type InstanceTasks: list of ObjectTask
6401
- :param _InstanceDeviceType: 实例机器类型
6402
- 1. common,通用型。
6403
- 2. exclusive,独享型。
6467
+ :param _InstanceDeviceType: <p>实例机器类型</p><ol><li>common,通用型。</li><li>exclusive,独享型。</li></ol>
6404
6468
  :type InstanceDeviceType: str
6405
- :param _InstanceStorageType: 实例存储类型
6406
- 说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
6469
+ :param _InstanceStorageType: <p>实例存储类型<br>说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。</p>
6407
6470
  :type InstanceStorageType: str
6408
- :param _DbMode: 数据库类型
6471
+ :param _DbMode: <p>数据库类型</p>
6409
6472
  :type DbMode: str
6410
- :param _NodeList: 节点列表
6411
- 说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
6473
+ :param _NodeList: <p>节点列表<br>说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。</p>
6412
6474
  :type NodeList: list of str
6475
+ :param _AIOptimizerStatus: <p>AI优化器状态</p>
6476
+ :type AIOptimizerStatus: :class:`tencentcloud.cynosdb.v20190107.models.AIOptimizerStatus`
6413
6477
  """
6414
6478
  self._InstanceId = None
6415
6479
  self._InstanceName = None
@@ -6429,10 +6493,11 @@ class ClusterInstanceDetail(AbstractModel):
6429
6493
  self._InstanceStorageType = None
6430
6494
  self._DbMode = None
6431
6495
  self._NodeList = None
6496
+ self._AIOptimizerStatus = None
6432
6497
 
6433
6498
  @property
6434
6499
  def InstanceId(self):
6435
- r"""实例ID
6500
+ r"""<p>实例ID</p>
6436
6501
  :rtype: str
6437
6502
  """
6438
6503
  return self._InstanceId
@@ -6443,7 +6508,7 @@ class ClusterInstanceDetail(AbstractModel):
6443
6508
 
6444
6509
  @property
6445
6510
  def InstanceName(self):
6446
- r"""实例名称
6511
+ r"""<p>实例名称</p>
6447
6512
  :rtype: str
6448
6513
  """
6449
6514
  return self._InstanceName
@@ -6454,7 +6519,7 @@ class ClusterInstanceDetail(AbstractModel):
6454
6519
 
6455
6520
  @property
6456
6521
  def InstanceType(self):
6457
- r"""引擎类型
6522
+ r"""<p>引擎类型</p>
6458
6523
  :rtype: str
6459
6524
  """
6460
6525
  return self._InstanceType
@@ -6465,7 +6530,7 @@ class ClusterInstanceDetail(AbstractModel):
6465
6530
 
6466
6531
  @property
6467
6532
  def InstanceStatus(self):
6468
- r"""实例状态
6533
+ r"""<p>实例状态</p>
6469
6534
  :rtype: str
6470
6535
  """
6471
6536
  return self._InstanceStatus
@@ -6476,7 +6541,7 @@ class ClusterInstanceDetail(AbstractModel):
6476
6541
 
6477
6542
  @property
6478
6543
  def InstanceStatusDesc(self):
6479
- r"""实例状态描述
6544
+ r"""<p>实例状态描述</p>
6480
6545
  :rtype: str
6481
6546
  """
6482
6547
  return self._InstanceStatusDesc
@@ -6487,7 +6552,7 @@ class ClusterInstanceDetail(AbstractModel):
6487
6552
 
6488
6553
  @property
6489
6554
  def InstanceCpu(self):
6490
- r"""cpu核数
6555
+ r"""<p>cpu核数</p>
6491
6556
  :rtype: int
6492
6557
  """
6493
6558
  return self._InstanceCpu
@@ -6498,7 +6563,7 @@ class ClusterInstanceDetail(AbstractModel):
6498
6563
 
6499
6564
  @property
6500
6565
  def InstanceMemory(self):
6501
- r"""内存
6566
+ r"""<p>内存</p>
6502
6567
  :rtype: int
6503
6568
  """
6504
6569
  return self._InstanceMemory
@@ -6509,7 +6574,7 @@ class ClusterInstanceDetail(AbstractModel):
6509
6574
 
6510
6575
  @property
6511
6576
  def InstanceStorage(self):
6512
- r"""硬盘
6577
+ r"""<p>硬盘</p>
6513
6578
  :rtype: int
6514
6579
  """
6515
6580
  return self._InstanceStorage
@@ -6520,7 +6585,7 @@ class ClusterInstanceDetail(AbstractModel):
6520
6585
 
6521
6586
  @property
6522
6587
  def InstanceRole(self):
6523
- r"""实例角色
6588
+ r"""<p>实例角色</p>
6524
6589
  :rtype: str
6525
6590
  """
6526
6591
  return self._InstanceRole
@@ -6531,7 +6596,7 @@ class ClusterInstanceDetail(AbstractModel):
6531
6596
 
6532
6597
  @property
6533
6598
  def MaintainStartTime(self):
6534
- r"""执行开始时间(距离0点的秒数)
6599
+ r"""<p>执行开始时间(距离0点的秒数)</p>
6535
6600
  :rtype: int
6536
6601
  """
6537
6602
  return self._MaintainStartTime
@@ -6542,7 +6607,7 @@ class ClusterInstanceDetail(AbstractModel):
6542
6607
 
6543
6608
  @property
6544
6609
  def MaintainDuration(self):
6545
- r"""持续的时间(单位:秒)
6610
+ r"""<p>持续的时间(单位:秒)</p>
6546
6611
  :rtype: int
6547
6612
  """
6548
6613
  return self._MaintainDuration
@@ -6553,7 +6618,7 @@ class ClusterInstanceDetail(AbstractModel):
6553
6618
 
6554
6619
  @property
6555
6620
  def MaintainWeekDays(self):
6556
- r"""可以执行的时间,枚举值:["Mon","Tue","Wed","Thu","Fri", "Sat", "Sun"]
6621
+ r"""<p>可以执行的时间,枚举值:[&quot;Mon&quot;,&quot;Tue&quot;,&quot;Wed&quot;,&quot;Thu&quot;,&quot;Fri&quot;, &quot;Sat&quot;, &quot;Sun&quot;]</p>
6557
6622
  :rtype: list of str
6558
6623
  """
6559
6624
  return self._MaintainWeekDays
@@ -6564,7 +6629,7 @@ class ClusterInstanceDetail(AbstractModel):
6564
6629
 
6565
6630
  @property
6566
6631
  def ServerlessStatus(self):
6567
- r"""serverless实例子状态
6632
+ r"""<p>serverless实例子状态</p>
6568
6633
  :rtype: str
6569
6634
  """
6570
6635
  return self._ServerlessStatus
@@ -6575,7 +6640,7 @@ class ClusterInstanceDetail(AbstractModel):
6575
6640
 
6576
6641
  @property
6577
6642
  def InstanceTasks(self):
6578
- r"""实例任务信息
6643
+ r"""<p>实例任务信息</p>
6579
6644
  :rtype: list of ObjectTask
6580
6645
  """
6581
6646
  return self._InstanceTasks
@@ -6586,9 +6651,7 @@ class ClusterInstanceDetail(AbstractModel):
6586
6651
 
6587
6652
  @property
6588
6653
  def InstanceDeviceType(self):
6589
- r"""实例机器类型
6590
- 1. common,通用型。
6591
- 2. exclusive,独享型。
6654
+ r"""<p>实例机器类型</p><ol><li>common,通用型。</li><li>exclusive,独享型。</li></ol>
6592
6655
  :rtype: str
6593
6656
  """
6594
6657
  return self._InstanceDeviceType
@@ -6599,8 +6662,7 @@ class ClusterInstanceDetail(AbstractModel):
6599
6662
 
6600
6663
  @property
6601
6664
  def InstanceStorageType(self):
6602
- r"""实例存储类型
6603
- 说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
6665
+ r"""<p>实例存储类型<br>说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。</p>
6604
6666
  :rtype: str
6605
6667
  """
6606
6668
  return self._InstanceStorageType
@@ -6611,7 +6673,7 @@ class ClusterInstanceDetail(AbstractModel):
6611
6673
 
6612
6674
  @property
6613
6675
  def DbMode(self):
6614
- r"""数据库类型
6676
+ r"""<p>数据库类型</p>
6615
6677
  :rtype: str
6616
6678
  """
6617
6679
  return self._DbMode
@@ -6622,8 +6684,7 @@ class ClusterInstanceDetail(AbstractModel):
6622
6684
 
6623
6685
  @property
6624
6686
  def NodeList(self):
6625
- r"""节点列表
6626
- 说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
6687
+ r"""<p>节点列表<br>说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。</p>
6627
6688
  :rtype: list of str
6628
6689
  """
6629
6690
  return self._NodeList
@@ -6632,6 +6693,17 @@ class ClusterInstanceDetail(AbstractModel):
6632
6693
  def NodeList(self, NodeList):
6633
6694
  self._NodeList = NodeList
6634
6695
 
6696
+ @property
6697
+ def AIOptimizerStatus(self):
6698
+ r"""<p>AI优化器状态</p>
6699
+ :rtype: :class:`tencentcloud.cynosdb.v20190107.models.AIOptimizerStatus`
6700
+ """
6701
+ return self._AIOptimizerStatus
6702
+
6703
+ @AIOptimizerStatus.setter
6704
+ def AIOptimizerStatus(self, AIOptimizerStatus):
6705
+ self._AIOptimizerStatus = AIOptimizerStatus
6706
+
6635
6707
 
6636
6708
  def _deserialize(self, params):
6637
6709
  self._InstanceId = params.get("InstanceId")
@@ -6657,6 +6729,9 @@ class ClusterInstanceDetail(AbstractModel):
6657
6729
  self._InstanceStorageType = params.get("InstanceStorageType")
6658
6730
  self._DbMode = params.get("DbMode")
6659
6731
  self._NodeList = params.get("NodeList")
6732
+ if params.get("AIOptimizerStatus") is not None:
6733
+ self._AIOptimizerStatus = AIOptimizerStatus()
6734
+ self._AIOptimizerStatus._deserialize(params.get("AIOptimizerStatus"))
6660
6735
  memeber_set = set(params.keys())
6661
6736
  for name, value in vars(self).items():
6662
6737
  property_name = name[1:]
@@ -7042,9 +7117,9 @@ class CopyBackupToVaultRequest(AbstractModel):
7042
7117
 
7043
7118
  def __init__(self):
7044
7119
  r"""
7045
- :param _VaultId: 目标保险箱ID,备份文件将复制到此保险箱
7120
+ :param _VaultId: <p>目标保险箱ID,备份文件将复制到此保险箱</p>
7046
7121
  :type VaultId: str
7047
- :param _BackupIds: 备份文件ID列表,支持批量复制多个备份文件
7122
+ :param _BackupIds: <p>备份文件ID列表,支持批量复制多个备份文件</p>
7048
7123
  :type BackupIds: list of int
7049
7124
  """
7050
7125
  self._VaultId = None
@@ -7052,7 +7127,7 @@ class CopyBackupToVaultRequest(AbstractModel):
7052
7127
 
7053
7128
  @property
7054
7129
  def VaultId(self):
7055
- r"""目标保险箱ID,备份文件将复制到此保险箱
7130
+ r"""<p>目标保险箱ID,备份文件将复制到此保险箱</p>
7056
7131
  :rtype: str
7057
7132
  """
7058
7133
  return self._VaultId
@@ -7063,7 +7138,7 @@ class CopyBackupToVaultRequest(AbstractModel):
7063
7138
 
7064
7139
  @property
7065
7140
  def BackupIds(self):
7066
- r"""备份文件ID列表,支持批量复制多个备份文件
7141
+ r"""<p>备份文件ID列表,支持批量复制多个备份文件</p>
7067
7142
  :rtype: list of int
7068
7143
  """
7069
7144
  return self._BackupIds
@@ -7093,7 +7168,7 @@ class CopyBackupToVaultResponse(AbstractModel):
7093
7168
 
7094
7169
  def __init__(self):
7095
7170
  r"""
7096
- :param _TaskId: 任务ID
7171
+ :param _TaskId: <p>任务ID</p>
7097
7172
  :type TaskId: int
7098
7173
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7099
7174
  :type RequestId: str
@@ -7103,7 +7178,7 @@ class CopyBackupToVaultResponse(AbstractModel):
7103
7178
 
7104
7179
  @property
7105
7180
  def TaskId(self):
7106
- r"""任务ID
7181
+ r"""<p>任务ID</p>
7107
7182
  :rtype: int
7108
7183
  """
7109
7184
  return self._TaskId
@@ -11499,108 +11574,97 @@ class CynosdbCluster(AbstractModel):
11499
11574
 
11500
11575
  def __init__(self):
11501
11576
  r"""
11502
- :param _Status: 集群状态, 可选值如下:
11503
- creating: 创建中
11504
- running:运行中
11505
- isolating:隔离中
11506
- isolated:已隔离
11507
- activating:解隔离中
11508
- offlining:下线中
11509
- offlined:已下线
11510
- deleting:删除中
11511
- deleted:已删除
11577
+ :param _Status: <p>集群状态, 可选值如下:<br>creating: 创建中<br>running:运行中<br>isolating:隔离中<br>isolated:已隔离<br>activating:解隔离中<br>offlining:下线中<br>offlined:已下线<br>deleting:删除中<br>deleted:已删除</p>
11512
11578
  :type Status: str
11513
- :param _UpdateTime: 更新时间
11579
+ :param _UpdateTime: <p>更新时间</p>
11514
11580
  :type UpdateTime: str
11515
- :param _Zone: 可用区
11581
+ :param _Zone: <p>可用区</p>
11516
11582
  :type Zone: str
11517
- :param _ClusterName: 集群名称
11583
+ :param _ClusterName: <p>集群名称</p>
11518
11584
  :type ClusterName: str
11519
- :param _Region: 地域
11585
+ :param _Region: <p>地域</p>
11520
11586
  :type Region: str
11521
- :param _DbVersion: 数据库版本
11587
+ :param _DbVersion: <p>数据库版本</p>
11522
11588
  :type DbVersion: str
11523
- :param _ClusterId: 集群ID
11589
+ :param _ClusterId: <p>集群ID</p>
11524
11590
  :type ClusterId: str
11525
- :param _InstanceNum: 实例数
11591
+ :param _InstanceNum: <p>实例数</p>
11526
11592
  :type InstanceNum: int
11527
- :param _Uin: 用户uin
11593
+ :param _Uin: <p>用户uin</p>
11528
11594
  :type Uin: str
11529
- :param _DbType: 引擎类型
11595
+ :param _DbType: <p>引擎类型</p>
11530
11596
  :type DbType: str
11531
- :param _AppId: 用户appid
11597
+ :param _AppId: <p>用户appid</p>
11532
11598
  :type AppId: int
11533
- :param _StatusDesc: 集群状态描述
11599
+ :param _StatusDesc: <p>集群状态描述</p>
11534
11600
  :type StatusDesc: str
11535
- :param _CreateTime: 集群创建时间
11601
+ :param _CreateTime: <p>集群创建时间</p>
11536
11602
  :type CreateTime: str
11537
- :param _PayMode: 付费模式。0-按量计费,1-包年包月
11603
+ :param _PayMode: <p>付费模式。0-按量计费,1-包年包月</p>
11538
11604
  :type PayMode: int
11539
- :param _PeriodEndTime: 截止时间
11605
+ :param _PeriodEndTime: <p>截止时间</p>
11540
11606
  :type PeriodEndTime: str
11541
- :param _Vip: 集群读写vip
11607
+ :param _Vip: <p>集群读写vip</p>
11542
11608
  :type Vip: str
11543
- :param _Vport: 集群读写vport
11609
+ :param _Vport: <p>集群读写vport</p>
11544
11610
  :type Vport: int
11545
- :param _ProjectID: 项目id
11611
+ :param _ProjectID: <p>项目id</p>
11546
11612
  :type ProjectID: int
11547
- :param _VpcId: 私有网络ID
11613
+ :param _VpcId: <p>私有网络ID</p>
11548
11614
  :type VpcId: str
11549
- :param _SubnetId: 子网ID
11615
+ :param _SubnetId: <p>子网ID</p>
11550
11616
  :type SubnetId: str
11551
- :param _CynosVersion: cynos内核版本
11617
+ :param _CynosVersion: <p>cynos内核版本</p>
11552
11618
  :type CynosVersion: str
11553
- :param _CynosVersionTag: cynos版本标签
11619
+ :param _CynosVersionTag: <p>cynos版本标签</p>
11554
11620
  :type CynosVersionTag: str
11555
- :param _StorageLimit: 存储容量
11621
+ :param _StorageLimit: <p>存储容量</p>
11556
11622
  :type StorageLimit: int
11557
- :param _RenewFlag: 续费标志
11623
+ :param _RenewFlag: <p>续费标志</p>
11558
11624
  :type RenewFlag: int
11559
- :param _ProcessingTask: 正在处理的任务
11625
+ :param _ProcessingTask: <p>正在处理的任务</p>
11560
11626
  :type ProcessingTask: str
11561
- :param _Tasks: 集群的任务数组
11627
+ :param _Tasks: <p>集群的任务数组</p>
11562
11628
  :type Tasks: list of ObjectTask
11563
- :param _ResourceTags: 集群绑定的tag数组
11629
+ :param _ResourceTags: <p>集群绑定的tag数组</p>
11564
11630
  :type ResourceTags: list of Tag
11565
- :param _DbMode: Db类型(NORMAL, SERVERLESS)
11631
+ :param _DbMode: <p>Db类型(NORMAL, SERVERLESS)</p>
11566
11632
  :type DbMode: str
11567
- :param _ServerlessStatus: Db类型为SERVERLESS时,serverless集群状态,可选值:
11568
- resume
11569
- pause
11633
+ :param _ServerlessStatus: <p>当Db类型为SERVERLESS时,serverless集群状态,可选值:<br>resume<br>pause</p>
11570
11634
  :type ServerlessStatus: str
11571
- :param _Storage: 集群预付费存储值大小
11635
+ :param _Storage: <p>集群预付费存储值大小</p>
11572
11636
  :type Storage: int
11573
- :param _StorageId: 集群存储为预付费时的存储ID,用于预付费存储变配
11637
+ :param _StorageId: <p>集群存储为预付费时的存储ID,用于预付费存储变配</p>
11574
11638
  :type StorageId: str
11575
- :param _StoragePayMode: 集群存储付费模式。0-按量计费,1-包年包月
11639
+ :param _StoragePayMode: <p>集群存储付费模式。0-按量计费,1-包年包月</p>
11576
11640
  :type StoragePayMode: int
11577
- :param _MinStorageSize: 集群计算规格对应的最小存储值
11641
+ :param _MinStorageSize: <p>集群计算规格对应的最小存储值</p>
11578
11642
  :type MinStorageSize: int
11579
- :param _MaxStorageSize: 集群计算规格对应的最大存储值
11643
+ :param _MaxStorageSize: <p>集群计算规格对应的最大存储值</p>
11580
11644
  :type MaxStorageSize: int
11581
- :param _NetAddrs: 集群网络信息
11645
+ :param _NetAddrs: <p>集群网络信息</p>
11582
11646
  :type NetAddrs: list of NetAddr
11583
- :param _PhysicalZone: 物理可用区
11647
+ :param _PhysicalZone: <p>物理可用区</p>
11584
11648
  :type PhysicalZone: str
11585
- :param _MasterZone: 主可用区
11649
+ :param _MasterZone: <p>主可用区</p>
11586
11650
  :type MasterZone: str
11587
- :param _HasSlaveZone: 是否有从可用区
11651
+ :param _HasSlaveZone: <p>是否有从可用区</p>
11588
11652
  :type HasSlaveZone: str
11589
- :param _SlaveZones: 从可用区
11653
+ :param _SlaveZones: <p>从可用区</p>
11590
11654
  :type SlaveZones: list of str
11591
- :param _BusinessType: 商业类型
11655
+ :param _BusinessType: <p>商业类型</p>
11592
11656
  :type BusinessType: str
11593
- :param _IsFreeze: 是否冻结
11657
+ :param _IsFreeze: <p>是否冻结</p>
11594
11658
  :type IsFreeze: str
11595
- :param _OrderSource: 订单来源
11659
+ :param _OrderSource: <p>订单来源</p>
11596
11660
  :type OrderSource: str
11597
- :param _Ability: 能力
11661
+ :param _Ability: <p>能力</p>
11598
11662
  :type Ability: :class:`tencentcloud.cynosdb.v20190107.models.Ability`
11599
- :param _ResourcePackages: 实例绑定资源包信息(此处只返回存储资源包,即packageType=DISK
11663
+ :param _ResourcePackages: <p>实例绑定资源包信息(此处只返回存储资源包,即packageType=DISK)</p>
11600
11664
  :type ResourcePackages: list of ResourcePackage
11601
- :param _GdnId: 全球数据库唯一标识
11665
+ :param _GdnId: <p>全球数据库唯一标识</p>
11602
11666
  :type GdnId: str
11603
- :param _GdnRole: 集群角色。主集群- primary,从集群 - standby,如果 GdnId为空,该字段无效。
11667
+ :param _GdnRole: <p>集群角色。主集群- primary,从集群 - standby,如果 GdnId为空,该字段无效。</p>
11604
11668
  :type GdnRole: str
11605
11669
  """
11606
11670
  self._Status = None
@@ -11652,16 +11716,7 @@ pause
11652
11716
 
11653
11717
  @property
11654
11718
  def Status(self):
11655
- r"""集群状态, 可选值如下:
11656
- creating: 创建中
11657
- running:运行中
11658
- isolating:隔离中
11659
- isolated:已隔离
11660
- activating:解隔离中
11661
- offlining:下线中
11662
- offlined:已下线
11663
- deleting:删除中
11664
- deleted:已删除
11719
+ r"""<p>集群状态, 可选值如下:<br>creating: 创建中<br>running:运行中<br>isolating:隔离中<br>isolated:已隔离<br>activating:解隔离中<br>offlining:下线中<br>offlined:已下线<br>deleting:删除中<br>deleted:已删除</p>
11665
11720
  :rtype: str
11666
11721
  """
11667
11722
  return self._Status
@@ -11672,7 +11727,7 @@ deleted:已删除
11672
11727
 
11673
11728
  @property
11674
11729
  def UpdateTime(self):
11675
- r"""更新时间
11730
+ r"""<p>更新时间</p>
11676
11731
  :rtype: str
11677
11732
  """
11678
11733
  return self._UpdateTime
@@ -11683,7 +11738,7 @@ deleted:已删除
11683
11738
 
11684
11739
  @property
11685
11740
  def Zone(self):
11686
- r"""可用区
11741
+ r"""<p>可用区</p>
11687
11742
  :rtype: str
11688
11743
  """
11689
11744
  return self._Zone
@@ -11694,7 +11749,7 @@ deleted:已删除
11694
11749
 
11695
11750
  @property
11696
11751
  def ClusterName(self):
11697
- r"""集群名称
11752
+ r"""<p>集群名称</p>
11698
11753
  :rtype: str
11699
11754
  """
11700
11755
  return self._ClusterName
@@ -11705,7 +11760,7 @@ deleted:已删除
11705
11760
 
11706
11761
  @property
11707
11762
  def Region(self):
11708
- r"""地域
11763
+ r"""<p>地域</p>
11709
11764
  :rtype: str
11710
11765
  """
11711
11766
  return self._Region
@@ -11716,7 +11771,7 @@ deleted:已删除
11716
11771
 
11717
11772
  @property
11718
11773
  def DbVersion(self):
11719
- r"""数据库版本
11774
+ r"""<p>数据库版本</p>
11720
11775
  :rtype: str
11721
11776
  """
11722
11777
  return self._DbVersion
@@ -11727,7 +11782,7 @@ deleted:已删除
11727
11782
 
11728
11783
  @property
11729
11784
  def ClusterId(self):
11730
- r"""集群ID
11785
+ r"""<p>集群ID</p>
11731
11786
  :rtype: str
11732
11787
  """
11733
11788
  return self._ClusterId
@@ -11738,7 +11793,7 @@ deleted:已删除
11738
11793
 
11739
11794
  @property
11740
11795
  def InstanceNum(self):
11741
- r"""实例数
11796
+ r"""<p>实例数</p>
11742
11797
  :rtype: int
11743
11798
  """
11744
11799
  return self._InstanceNum
@@ -11749,7 +11804,7 @@ deleted:已删除
11749
11804
 
11750
11805
  @property
11751
11806
  def Uin(self):
11752
- r"""用户uin
11807
+ r"""<p>用户uin</p>
11753
11808
  :rtype: str
11754
11809
  """
11755
11810
  return self._Uin
@@ -11760,7 +11815,7 @@ deleted:已删除
11760
11815
 
11761
11816
  @property
11762
11817
  def DbType(self):
11763
- r"""引擎类型
11818
+ r"""<p>引擎类型</p>
11764
11819
  :rtype: str
11765
11820
  """
11766
11821
  return self._DbType
@@ -11771,7 +11826,7 @@ deleted:已删除
11771
11826
 
11772
11827
  @property
11773
11828
  def AppId(self):
11774
- r"""用户appid
11829
+ r"""<p>用户appid</p>
11775
11830
  :rtype: int
11776
11831
  """
11777
11832
  return self._AppId
@@ -11782,7 +11837,7 @@ deleted:已删除
11782
11837
 
11783
11838
  @property
11784
11839
  def StatusDesc(self):
11785
- r"""集群状态描述
11840
+ r"""<p>集群状态描述</p>
11786
11841
  :rtype: str
11787
11842
  """
11788
11843
  return self._StatusDesc
@@ -11793,7 +11848,7 @@ deleted:已删除
11793
11848
 
11794
11849
  @property
11795
11850
  def CreateTime(self):
11796
- r"""集群创建时间
11851
+ r"""<p>集群创建时间</p>
11797
11852
  :rtype: str
11798
11853
  """
11799
11854
  return self._CreateTime
@@ -11804,7 +11859,7 @@ deleted:已删除
11804
11859
 
11805
11860
  @property
11806
11861
  def PayMode(self):
11807
- r"""付费模式。0-按量计费,1-包年包月
11862
+ r"""<p>付费模式。0-按量计费,1-包年包月</p>
11808
11863
  :rtype: int
11809
11864
  """
11810
11865
  return self._PayMode
@@ -11815,7 +11870,7 @@ deleted:已删除
11815
11870
 
11816
11871
  @property
11817
11872
  def PeriodEndTime(self):
11818
- r"""截止时间
11873
+ r"""<p>截止时间</p>
11819
11874
  :rtype: str
11820
11875
  """
11821
11876
  return self._PeriodEndTime
@@ -11826,7 +11881,7 @@ deleted:已删除
11826
11881
 
11827
11882
  @property
11828
11883
  def Vip(self):
11829
- r"""集群读写vip
11884
+ r"""<p>集群读写vip</p>
11830
11885
  :rtype: str
11831
11886
  """
11832
11887
  return self._Vip
@@ -11837,7 +11892,7 @@ deleted:已删除
11837
11892
 
11838
11893
  @property
11839
11894
  def Vport(self):
11840
- r"""集群读写vport
11895
+ r"""<p>集群读写vport</p>
11841
11896
  :rtype: int
11842
11897
  """
11843
11898
  return self._Vport
@@ -11848,7 +11903,7 @@ deleted:已删除
11848
11903
 
11849
11904
  @property
11850
11905
  def ProjectID(self):
11851
- r"""项目id
11906
+ r"""<p>项目id</p>
11852
11907
  :rtype: int
11853
11908
  """
11854
11909
  return self._ProjectID
@@ -11859,7 +11914,7 @@ deleted:已删除
11859
11914
 
11860
11915
  @property
11861
11916
  def VpcId(self):
11862
- r"""私有网络ID
11917
+ r"""<p>私有网络ID</p>
11863
11918
  :rtype: str
11864
11919
  """
11865
11920
  return self._VpcId
@@ -11870,7 +11925,7 @@ deleted:已删除
11870
11925
 
11871
11926
  @property
11872
11927
  def SubnetId(self):
11873
- r"""子网ID
11928
+ r"""<p>子网ID</p>
11874
11929
  :rtype: str
11875
11930
  """
11876
11931
  return self._SubnetId
@@ -11881,7 +11936,7 @@ deleted:已删除
11881
11936
 
11882
11937
  @property
11883
11938
  def CynosVersion(self):
11884
- r"""cynos内核版本
11939
+ r"""<p>cynos内核版本</p>
11885
11940
  :rtype: str
11886
11941
  """
11887
11942
  return self._CynosVersion
@@ -11892,7 +11947,7 @@ deleted:已删除
11892
11947
 
11893
11948
  @property
11894
11949
  def CynosVersionTag(self):
11895
- r"""cynos版本标签
11950
+ r"""<p>cynos版本标签</p>
11896
11951
  :rtype: str
11897
11952
  """
11898
11953
  return self._CynosVersionTag
@@ -11903,7 +11958,7 @@ deleted:已删除
11903
11958
 
11904
11959
  @property
11905
11960
  def StorageLimit(self):
11906
- r"""存储容量
11961
+ r"""<p>存储容量</p>
11907
11962
  :rtype: int
11908
11963
  """
11909
11964
  return self._StorageLimit
@@ -11914,7 +11969,7 @@ deleted:已删除
11914
11969
 
11915
11970
  @property
11916
11971
  def RenewFlag(self):
11917
- r"""续费标志
11972
+ r"""<p>续费标志</p>
11918
11973
  :rtype: int
11919
11974
  """
11920
11975
  return self._RenewFlag
@@ -11925,7 +11980,7 @@ deleted:已删除
11925
11980
 
11926
11981
  @property
11927
11982
  def ProcessingTask(self):
11928
- r"""正在处理的任务
11983
+ r"""<p>正在处理的任务</p>
11929
11984
  :rtype: str
11930
11985
  """
11931
11986
  return self._ProcessingTask
@@ -11936,7 +11991,7 @@ deleted:已删除
11936
11991
 
11937
11992
  @property
11938
11993
  def Tasks(self):
11939
- r"""集群的任务数组
11994
+ r"""<p>集群的任务数组</p>
11940
11995
  :rtype: list of ObjectTask
11941
11996
  """
11942
11997
  return self._Tasks
@@ -11947,7 +12002,7 @@ deleted:已删除
11947
12002
 
11948
12003
  @property
11949
12004
  def ResourceTags(self):
11950
- r"""集群绑定的tag数组
12005
+ r"""<p>集群绑定的tag数组</p>
11951
12006
  :rtype: list of Tag
11952
12007
  """
11953
12008
  return self._ResourceTags
@@ -11958,7 +12013,7 @@ deleted:已删除
11958
12013
 
11959
12014
  @property
11960
12015
  def DbMode(self):
11961
- r"""Db类型(NORMAL, SERVERLESS)
12016
+ r"""<p>Db类型(NORMAL, SERVERLESS)</p>
11962
12017
  :rtype: str
11963
12018
  """
11964
12019
  return self._DbMode
@@ -11969,9 +12024,7 @@ deleted:已删除
11969
12024
 
11970
12025
  @property
11971
12026
  def ServerlessStatus(self):
11972
- r"""Db类型为SERVERLESS时,serverless集群状态,可选值:
11973
- resume
11974
- pause
12027
+ r"""<p>当Db类型为SERVERLESS时,serverless集群状态,可选值:<br>resume<br>pause</p>
11975
12028
  :rtype: str
11976
12029
  """
11977
12030
  return self._ServerlessStatus
@@ -11982,7 +12035,7 @@ pause
11982
12035
 
11983
12036
  @property
11984
12037
  def Storage(self):
11985
- r"""集群预付费存储值大小
12038
+ r"""<p>集群预付费存储值大小</p>
11986
12039
  :rtype: int
11987
12040
  """
11988
12041
  return self._Storage
@@ -11993,7 +12046,7 @@ pause
11993
12046
 
11994
12047
  @property
11995
12048
  def StorageId(self):
11996
- r"""集群存储为预付费时的存储ID,用于预付费存储变配
12049
+ r"""<p>集群存储为预付费时的存储ID,用于预付费存储变配</p>
11997
12050
  :rtype: str
11998
12051
  """
11999
12052
  return self._StorageId
@@ -12004,7 +12057,7 @@ pause
12004
12057
 
12005
12058
  @property
12006
12059
  def StoragePayMode(self):
12007
- r"""集群存储付费模式。0-按量计费,1-包年包月
12060
+ r"""<p>集群存储付费模式。0-按量计费,1-包年包月</p>
12008
12061
  :rtype: int
12009
12062
  """
12010
12063
  return self._StoragePayMode
@@ -12015,7 +12068,7 @@ pause
12015
12068
 
12016
12069
  @property
12017
12070
  def MinStorageSize(self):
12018
- r"""集群计算规格对应的最小存储值
12071
+ r"""<p>集群计算规格对应的最小存储值</p>
12019
12072
  :rtype: int
12020
12073
  """
12021
12074
  return self._MinStorageSize
@@ -12026,7 +12079,7 @@ pause
12026
12079
 
12027
12080
  @property
12028
12081
  def MaxStorageSize(self):
12029
- r"""集群计算规格对应的最大存储值
12082
+ r"""<p>集群计算规格对应的最大存储值</p>
12030
12083
  :rtype: int
12031
12084
  """
12032
12085
  return self._MaxStorageSize
@@ -12037,7 +12090,7 @@ pause
12037
12090
 
12038
12091
  @property
12039
12092
  def NetAddrs(self):
12040
- r"""集群网络信息
12093
+ r"""<p>集群网络信息</p>
12041
12094
  :rtype: list of NetAddr
12042
12095
  """
12043
12096
  return self._NetAddrs
@@ -12048,7 +12101,7 @@ pause
12048
12101
 
12049
12102
  @property
12050
12103
  def PhysicalZone(self):
12051
- r"""物理可用区
12104
+ r"""<p>物理可用区</p>
12052
12105
  :rtype: str
12053
12106
  """
12054
12107
  return self._PhysicalZone
@@ -12059,7 +12112,7 @@ pause
12059
12112
 
12060
12113
  @property
12061
12114
  def MasterZone(self):
12062
- r"""主可用区
12115
+ r"""<p>主可用区</p>
12063
12116
  :rtype: str
12064
12117
  """
12065
12118
  return self._MasterZone
@@ -12070,7 +12123,7 @@ pause
12070
12123
 
12071
12124
  @property
12072
12125
  def HasSlaveZone(self):
12073
- r"""是否有从可用区
12126
+ r"""<p>是否有从可用区</p>
12074
12127
  :rtype: str
12075
12128
  """
12076
12129
  return self._HasSlaveZone
@@ -12081,7 +12134,7 @@ pause
12081
12134
 
12082
12135
  @property
12083
12136
  def SlaveZones(self):
12084
- r"""从可用区
12137
+ r"""<p>从可用区</p>
12085
12138
  :rtype: list of str
12086
12139
  """
12087
12140
  return self._SlaveZones
@@ -12092,7 +12145,7 @@ pause
12092
12145
 
12093
12146
  @property
12094
12147
  def BusinessType(self):
12095
- r"""商业类型
12148
+ r"""<p>商业类型</p>
12096
12149
  :rtype: str
12097
12150
  """
12098
12151
  return self._BusinessType
@@ -12103,7 +12156,7 @@ pause
12103
12156
 
12104
12157
  @property
12105
12158
  def IsFreeze(self):
12106
- r"""是否冻结
12159
+ r"""<p>是否冻结</p>
12107
12160
  :rtype: str
12108
12161
  """
12109
12162
  return self._IsFreeze
@@ -12114,7 +12167,7 @@ pause
12114
12167
 
12115
12168
  @property
12116
12169
  def OrderSource(self):
12117
- r"""订单来源
12170
+ r"""<p>订单来源</p>
12118
12171
  :rtype: str
12119
12172
  """
12120
12173
  return self._OrderSource
@@ -12125,7 +12178,7 @@ pause
12125
12178
 
12126
12179
  @property
12127
12180
  def Ability(self):
12128
- r"""能力
12181
+ r"""<p>能力</p>
12129
12182
  :rtype: :class:`tencentcloud.cynosdb.v20190107.models.Ability`
12130
12183
  """
12131
12184
  return self._Ability
@@ -12136,7 +12189,7 @@ pause
12136
12189
 
12137
12190
  @property
12138
12191
  def ResourcePackages(self):
12139
- r"""实例绑定资源包信息(此处只返回存储资源包,即packageType=DISK
12192
+ r"""<p>实例绑定资源包信息(此处只返回存储资源包,即packageType=DISK)</p>
12140
12193
  :rtype: list of ResourcePackage
12141
12194
  """
12142
12195
  return self._ResourcePackages
@@ -12147,7 +12200,7 @@ pause
12147
12200
 
12148
12201
  @property
12149
12202
  def GdnId(self):
12150
- r"""全球数据库唯一标识
12203
+ r"""<p>全球数据库唯一标识</p>
12151
12204
  :rtype: str
12152
12205
  """
12153
12206
  return self._GdnId
@@ -12158,7 +12211,7 @@ pause
12158
12211
 
12159
12212
  @property
12160
12213
  def GdnRole(self):
12161
- r"""集群角色。主集群- primary,从集群 - standby,如果 GdnId为空,该字段无效。
12214
+ r"""<p>集群角色。主集群- primary,从集群 - standby,如果 GdnId为空,该字段无效。</p>
12162
12215
  :rtype: str
12163
12216
  """
12164
12217
  return self._GdnRole
@@ -47183,31 +47236,33 @@ class ParamItemDetail(AbstractModel):
47183
47236
 
47184
47237
  def __init__(self):
47185
47238
  r"""
47186
- :param _CurrentValue: 当前值
47239
+ :param _CurrentValue: <p>当前值</p>
47187
47240
  :type CurrentValue: str
47188
- :param _Default: 默认值
47241
+ :param _Default: <p>默认值</p>
47189
47242
  :type Default: str
47190
- :param _EnumValue: 参数的可选枚举值。如果为非枚举值,则为空
47243
+ :param _EnumValue: <p>参数的可选枚举值。如果为非枚举值,则为空</p>
47191
47244
  :type EnumValue: list of str
47192
- :param _IsGlobal: 1:全局参数,0:非全局参数
47245
+ :param _IsGlobal: <p>1:全局参数,0:非全局参数</p>
47193
47246
  :type IsGlobal: int
47194
- :param _Max: 最大值
47247
+ :param _Max: <p>最大值</p>
47195
47248
  :type Max: str
47196
- :param _Min: 最小值
47249
+ :param _Min: <p>最小值</p>
47197
47250
  :type Min: str
47198
- :param _NeedReboot: 修改参数后,是否需要重启数据库以使参数生效。0-不需要重启,1-需要重启。
47251
+ :param _NeedReboot: <p>修改参数后,是否需要重启数据库以使参数生效。0-不需要重启,1-需要重启。</p>
47199
47252
  :type NeedReboot: int
47200
- :param _ParamName: 参数名称
47253
+ :param _ParamName: <p>参数名称</p>
47201
47254
  :type ParamName: str
47202
- :param _ParamType: 参数类型:integer,enum,float,string,func
47255
+ :param _ParamType: <p>参数类型:integer,enum,float,string,func</p>
47203
47256
  :type ParamType: str
47204
- :param _Description: 参数描述
47257
+ :param _ModifiableInfo: <p>参数是否可修改</p>
47258
+ :type ModifiableInfo: :class:`tencentcloud.cynosdb.v20190107.models.ModifiableInfo`
47259
+ :param _Description: <p>参数描述</p>
47205
47260
  :type Description: str
47206
- :param _IsFunc: 类型是否为公式
47261
+ :param _IsFunc: <p>类型是否为公式</p>
47207
47262
  :type IsFunc: bool
47208
- :param _Func: 参数配置公式
47263
+ :param _Func: <p>参数配置公式</p>
47209
47264
  :type Func: str
47210
- :param _FuncPattern: 支持公式的参数的默认公式样式
47265
+ :param _FuncPattern: <p>支持公式的参数的默认公式样式</p>
47211
47266
  :type FuncPattern: str
47212
47267
  """
47213
47268
  self._CurrentValue = None
@@ -47219,6 +47274,7 @@ class ParamItemDetail(AbstractModel):
47219
47274
  self._NeedReboot = None
47220
47275
  self._ParamName = None
47221
47276
  self._ParamType = None
47277
+ self._ModifiableInfo = None
47222
47278
  self._Description = None
47223
47279
  self._IsFunc = None
47224
47280
  self._Func = None
@@ -47226,7 +47282,7 @@ class ParamItemDetail(AbstractModel):
47226
47282
 
47227
47283
  @property
47228
47284
  def CurrentValue(self):
47229
- r"""当前值
47285
+ r"""<p>当前值</p>
47230
47286
  :rtype: str
47231
47287
  """
47232
47288
  return self._CurrentValue
@@ -47237,7 +47293,7 @@ class ParamItemDetail(AbstractModel):
47237
47293
 
47238
47294
  @property
47239
47295
  def Default(self):
47240
- r"""默认值
47296
+ r"""<p>默认值</p>
47241
47297
  :rtype: str
47242
47298
  """
47243
47299
  return self._Default
@@ -47248,7 +47304,7 @@ class ParamItemDetail(AbstractModel):
47248
47304
 
47249
47305
  @property
47250
47306
  def EnumValue(self):
47251
- r"""参数的可选枚举值。如果为非枚举值,则为空
47307
+ r"""<p>参数的可选枚举值。如果为非枚举值,则为空</p>
47252
47308
  :rtype: list of str
47253
47309
  """
47254
47310
  return self._EnumValue
@@ -47259,7 +47315,7 @@ class ParamItemDetail(AbstractModel):
47259
47315
 
47260
47316
  @property
47261
47317
  def IsGlobal(self):
47262
- r"""1:全局参数,0:非全局参数
47318
+ r"""<p>1:全局参数,0:非全局参数</p>
47263
47319
  :rtype: int
47264
47320
  """
47265
47321
  return self._IsGlobal
@@ -47270,7 +47326,7 @@ class ParamItemDetail(AbstractModel):
47270
47326
 
47271
47327
  @property
47272
47328
  def Max(self):
47273
- r"""最大值
47329
+ r"""<p>最大值</p>
47274
47330
  :rtype: str
47275
47331
  """
47276
47332
  return self._Max
@@ -47281,7 +47337,7 @@ class ParamItemDetail(AbstractModel):
47281
47337
 
47282
47338
  @property
47283
47339
  def Min(self):
47284
- r"""最小值
47340
+ r"""<p>最小值</p>
47285
47341
  :rtype: str
47286
47342
  """
47287
47343
  return self._Min
@@ -47292,7 +47348,7 @@ class ParamItemDetail(AbstractModel):
47292
47348
 
47293
47349
  @property
47294
47350
  def NeedReboot(self):
47295
- r"""修改参数后,是否需要重启数据库以使参数生效。0-不需要重启,1-需要重启。
47351
+ r"""<p>修改参数后,是否需要重启数据库以使参数生效。0-不需要重启,1-需要重启。</p>
47296
47352
  :rtype: int
47297
47353
  """
47298
47354
  return self._NeedReboot
@@ -47303,7 +47359,7 @@ class ParamItemDetail(AbstractModel):
47303
47359
 
47304
47360
  @property
47305
47361
  def ParamName(self):
47306
- r"""参数名称
47362
+ r"""<p>参数名称</p>
47307
47363
  :rtype: str
47308
47364
  """
47309
47365
  return self._ParamName
@@ -47314,7 +47370,7 @@ class ParamItemDetail(AbstractModel):
47314
47370
 
47315
47371
  @property
47316
47372
  def ParamType(self):
47317
- r"""参数类型:integer,enum,float,string,func
47373
+ r"""<p>参数类型:integer,enum,float,string,func</p>
47318
47374
  :rtype: str
47319
47375
  """
47320
47376
  return self._ParamType
@@ -47323,9 +47379,20 @@ class ParamItemDetail(AbstractModel):
47323
47379
  def ParamType(self, ParamType):
47324
47380
  self._ParamType = ParamType
47325
47381
 
47382
+ @property
47383
+ def ModifiableInfo(self):
47384
+ r"""<p>参数是否可修改</p>
47385
+ :rtype: :class:`tencentcloud.cynosdb.v20190107.models.ModifiableInfo`
47386
+ """
47387
+ return self._ModifiableInfo
47388
+
47389
+ @ModifiableInfo.setter
47390
+ def ModifiableInfo(self, ModifiableInfo):
47391
+ self._ModifiableInfo = ModifiableInfo
47392
+
47326
47393
  @property
47327
47394
  def Description(self):
47328
- r"""参数描述
47395
+ r"""<p>参数描述</p>
47329
47396
  :rtype: str
47330
47397
  """
47331
47398
  return self._Description
@@ -47336,7 +47403,7 @@ class ParamItemDetail(AbstractModel):
47336
47403
 
47337
47404
  @property
47338
47405
  def IsFunc(self):
47339
- r"""类型是否为公式
47406
+ r"""<p>类型是否为公式</p>
47340
47407
  :rtype: bool
47341
47408
  """
47342
47409
  return self._IsFunc
@@ -47347,7 +47414,7 @@ class ParamItemDetail(AbstractModel):
47347
47414
 
47348
47415
  @property
47349
47416
  def Func(self):
47350
- r"""参数配置公式
47417
+ r"""<p>参数配置公式</p>
47351
47418
  :rtype: str
47352
47419
  """
47353
47420
  return self._Func
@@ -47358,7 +47425,7 @@ class ParamItemDetail(AbstractModel):
47358
47425
 
47359
47426
  @property
47360
47427
  def FuncPattern(self):
47361
- r"""支持公式的参数的默认公式样式
47428
+ r"""<p>支持公式的参数的默认公式样式</p>
47362
47429
  :rtype: str
47363
47430
  """
47364
47431
  return self._FuncPattern
@@ -47378,6 +47445,9 @@ class ParamItemDetail(AbstractModel):
47378
47445
  self._NeedReboot = params.get("NeedReboot")
47379
47446
  self._ParamName = params.get("ParamName")
47380
47447
  self._ParamType = params.get("ParamType")
47448
+ if params.get("ModifiableInfo") is not None:
47449
+ self._ModifiableInfo = ModifiableInfo()
47450
+ self._ModifiableInfo._deserialize(params.get("ModifiableInfo"))
47381
47451
  self._Description = params.get("Description")
47382
47452
  self._IsFunc = params.get("IsFunc")
47383
47453
  self._Func = params.get("Func")
@@ -55349,15 +55419,15 @@ class SparseBackupConfigInfo(AbstractModel):
55349
55419
 
55350
55420
  def __init__(self):
55351
55421
  r"""
55352
- :param _OpType: 操作类型:add,modify,remove
55422
+ :param _OpType: <p>操作类型:add,modify,remove</p>
55353
55423
  :type OpType: str
55354
- :param _ConfigId: 配置 ID
55424
+ :param _ConfigId: <p>配置 ID</p>
55355
55425
  :type ConfigId: str
55356
- :param _SparsePeriodConfig: 周期策略类型:weekly/monthly/yearly
55426
+ :param _SparsePeriodConfig: <p>周期策略类型:weekly/monthly/yearly</p>
55357
55427
  :type SparsePeriodConfig: str
55358
- :param _SparsePeriodTime: 周期时间配置
55428
+ :param _SparsePeriodTime: <p>周期时间配置</p>
55359
55429
  :type SparsePeriodTime: :class:`tencentcloud.cynosdb.v20190107.models.SparsePeriodTime`
55360
- :param _SparseBackupSaveDays: 保留天数(7-7320天,最长20年)
55430
+ :param _SparseBackupSaveDays: <p>保留天数(7-7320天,最长20年)</p>
55361
55431
  :type SparseBackupSaveDays: int
55362
55432
  """
55363
55433
  self._OpType = None
@@ -55368,7 +55438,7 @@ class SparseBackupConfigInfo(AbstractModel):
55368
55438
 
55369
55439
  @property
55370
55440
  def OpType(self):
55371
- r"""操作类型:add,modify,remove
55441
+ r"""<p>操作类型:add,modify,remove</p>
55372
55442
  :rtype: str
55373
55443
  """
55374
55444
  return self._OpType
@@ -55379,7 +55449,7 @@ class SparseBackupConfigInfo(AbstractModel):
55379
55449
 
55380
55450
  @property
55381
55451
  def ConfigId(self):
55382
- r"""配置 ID
55452
+ r"""<p>配置 ID</p>
55383
55453
  :rtype: str
55384
55454
  """
55385
55455
  return self._ConfigId
@@ -55390,7 +55460,7 @@ class SparseBackupConfigInfo(AbstractModel):
55390
55460
 
55391
55461
  @property
55392
55462
  def SparsePeriodConfig(self):
55393
- r"""周期策略类型:weekly/monthly/yearly
55463
+ r"""<p>周期策略类型:weekly/monthly/yearly</p>
55394
55464
  :rtype: str
55395
55465
  """
55396
55466
  return self._SparsePeriodConfig
@@ -55401,7 +55471,7 @@ class SparseBackupConfigInfo(AbstractModel):
55401
55471
 
55402
55472
  @property
55403
55473
  def SparsePeriodTime(self):
55404
- r"""周期时间配置
55474
+ r"""<p>周期时间配置</p>
55405
55475
  :rtype: :class:`tencentcloud.cynosdb.v20190107.models.SparsePeriodTime`
55406
55476
  """
55407
55477
  return self._SparsePeriodTime
@@ -55412,7 +55482,7 @@ class SparseBackupConfigInfo(AbstractModel):
55412
55482
 
55413
55483
  @property
55414
55484
  def SparseBackupSaveDays(self):
55415
- r"""保留天数(7-7320天,最长20年)
55485
+ r"""<p>保留天数(7-7320天,最长20年)</p>
55416
55486
  :rtype: int
55417
55487
  """
55418
55488
  return self._SparseBackupSaveDays
@@ -55447,10 +55517,10 @@ class SparseBackupConfigRsp(AbstractModel):
55447
55517
 
55448
55518
  def __init__(self):
55449
55519
  r"""
55450
- :param _SparseBackupSwitch: 稀疏备份开关:ON/OFF
55520
+ :param _SparseBackupSwitch: <p>稀疏备份开关:ON/OFF</p>
55451
55521
  注意:此字段可能返回 null,表示取不到有效值。
55452
55522
  :type SparseBackupSwitch: str
55453
- :param _SparseBackupConfigInfos: 稀疏备份策略列表(1-3条)
55523
+ :param _SparseBackupConfigInfos: <p>稀疏备份策略列表(1-3条)</p>
55454
55524
  注意:此字段可能返回 null,表示取不到有效值。
55455
55525
  :type SparseBackupConfigInfos: list of SparseBackupConfigInfo
55456
55526
  """
@@ -55459,7 +55529,7 @@ class SparseBackupConfigRsp(AbstractModel):
55459
55529
 
55460
55530
  @property
55461
55531
  def SparseBackupSwitch(self):
55462
- r"""稀疏备份开关:ON/OFF
55532
+ r"""<p>稀疏备份开关:ON/OFF</p>
55463
55533
  注意:此字段可能返回 null,表示取不到有效值。
55464
55534
  :rtype: str
55465
55535
  """
@@ -55471,7 +55541,7 @@ class SparseBackupConfigRsp(AbstractModel):
55471
55541
 
55472
55542
  @property
55473
55543
  def SparseBackupConfigInfos(self):
55474
- r"""稀疏备份策略列表(1-3条)
55544
+ r"""<p>稀疏备份策略列表(1-3条)</p>
55475
55545
  注意:此字段可能返回 null,表示取不到有效值。
55476
55546
  :rtype: list of SparseBackupConfigInfo
55477
55547
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cynosdb
3
- Version: 3.1.101
3
+ Version: 3.1.103
4
4
  Summary: Tencent Cloud Cynosdb SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.101
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.103
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.103
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.101