tencentcloud-sdk-python-cdb 3.0.1379__tar.gz → 3.0.1380__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 (16) hide show
  1. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud/cdb/v20170320/errorcodes.py +6 -0
  5. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud/cdb/v20170320/models.py +32 -2
  6. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-cdb-3.0.1380/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-cdb-3.0.1379/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/README.rst +0 -0
  10. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud/cdb/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud/cdb/v20170320/__init__.py +0 -0
  13. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud/cdb/v20170320/cdb_client.py +0 -0
  14. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cdb-3.0.1379 → tencentcloud-sdk-python-cdb-3.0.1380}/tencentcloud_sdk_python_cdb.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cdb
3
- Version: 3.0.1379
3
+ Version: 3.0.1380
4
4
  Summary: Tencent Cloud Cdb SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cdb',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1379"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1380"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cdb SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1379'
17
+ __version__ = '3.0.1380'
@@ -245,6 +245,9 @@ INTERNALERROR_INTERNALASSERTERROR = 'InternalError.InternalAssertError'
245
245
  # 请求执行异常。
246
246
  INTERNALERROR_INTERNALHTTPSERVERERROR = 'InternalError.InternalHttpServerError'
247
247
 
248
+ # 内部服务异常,请稍后重试
249
+ INTERNALERROR_INTERNALINNERSERVICEERROR = 'InternalError.InternalInnerServiceError'
250
+
248
251
  # 后台请求服务失败,请稍后重试。
249
252
  INTERNALERROR_INTERNALREQUESTERROR = 'InternalError.InternalRequestError'
250
253
 
@@ -299,6 +302,9 @@ INTERNALERROR_TIMEWINDOWERROR = 'InternalError.TimeWindowError'
299
302
  # 交易系统错误。
300
303
  INTERNALERROR_TRADEERROR = 'InternalError.TradeError'
301
304
 
305
+ # 开启事务失败
306
+ INTERNALERROR_TRANSACTIOBEGINERROR = 'InternalError.TransactioBeginError'
307
+
302
308
  # 操作失败。
303
309
  INTERNALERROR_TRANSACTIONBEGINERROR = 'InternalError.TransactionBeginError'
304
310
 
@@ -23440,6 +23440,8 @@ class Inbound(AbstractModel):
23440
23440
  :type Dir: str
23441
23441
  :param _AddressModule: 地址模块
23442
23442
  :type AddressModule: str
23443
+ :param _Id: 规则ID,嵌套安全组的规则ID
23444
+ :type Id: str
23443
23445
  :param _Desc: 规则描述
23444
23446
  :type Desc: str
23445
23447
  """
@@ -23449,6 +23451,7 @@ class Inbound(AbstractModel):
23449
23451
  self._IpProtocol = None
23450
23452
  self._Dir = None
23451
23453
  self._AddressModule = None
23454
+ self._Id = None
23452
23455
  self._Desc = None
23453
23456
 
23454
23457
  @property
@@ -23517,6 +23520,17 @@ class Inbound(AbstractModel):
23517
23520
  def AddressModule(self, AddressModule):
23518
23521
  self._AddressModule = AddressModule
23519
23522
 
23523
+ @property
23524
+ def Id(self):
23525
+ """规则ID,嵌套安全组的规则ID
23526
+ :rtype: str
23527
+ """
23528
+ return self._Id
23529
+
23530
+ @Id.setter
23531
+ def Id(self, Id):
23532
+ self._Id = Id
23533
+
23520
23534
  @property
23521
23535
  def Desc(self):
23522
23536
  """规则描述
@@ -23536,6 +23550,7 @@ class Inbound(AbstractModel):
23536
23550
  self._IpProtocol = params.get("IpProtocol")
23537
23551
  self._Dir = params.get("Dir")
23538
23552
  self._AddressModule = params.get("AddressModule")
23553
+ self._Id = params.get("Id")
23539
23554
  self._Desc = params.get("Desc")
23540
23555
  memeber_set = set(params.keys())
23541
23556
  for name, value in vars(self).items():
@@ -30150,7 +30165,7 @@ class OpenAuditServiceRequest(AbstractModel):
30150
30165
  7 - 一周
30151
30166
  30 - 一个月;
30152
30167
  :type HighLogExpireDay: int
30153
- :param _AuditRuleFilters: 审计规则。同RuleTemplateIds都不填是全审计。
30168
+ :param _AuditRuleFilters: 审计规则(该参数已废弃,不再生效)。
30154
30169
  :type AuditRuleFilters: list of AuditRuleFilters
30155
30170
  :param _RuleTemplateIds: 规则模板ID。同AuditRuleFilters都不填是全审计。
30156
30171
  :type RuleTemplateIds: list of str
@@ -30208,7 +30223,7 @@ class OpenAuditServiceRequest(AbstractModel):
30208
30223
 
30209
30224
  @property
30210
30225
  def AuditRuleFilters(self):
30211
- """审计规则。同RuleTemplateIds都不填是全审计。
30226
+ """审计规则(该参数已废弃,不再生效)。
30212
30227
  :rtype: list of AuditRuleFilters
30213
30228
  """
30214
30229
  return self._AuditRuleFilters
@@ -33507,6 +33522,8 @@ class RoInstanceInfo(AbstractModel):
33507
33522
  :type DeadlineTime: str
33508
33523
  :param _PayType: RO实例计费类型,可能返回值:0-包年包月,1-按量计费,2-后付费月结
33509
33524
  :type PayType: int
33525
+ :param _ReplicationStatus: RO延迟复制状态。
33526
+ :type ReplicationStatus: str
33510
33527
  """
33511
33528
  self._MasterInstanceId = None
33512
33529
  self._RoStatus = None
@@ -33531,6 +33548,7 @@ class RoInstanceInfo(AbstractModel):
33531
33548
  self._EngineVersion = None
33532
33549
  self._DeadlineTime = None
33533
33550
  self._PayType = None
33551
+ self._ReplicationStatus = None
33534
33552
 
33535
33553
  @property
33536
33554
  def MasterInstanceId(self):
@@ -33785,6 +33803,17 @@ class RoInstanceInfo(AbstractModel):
33785
33803
  def PayType(self, PayType):
33786
33804
  self._PayType = PayType
33787
33805
 
33806
+ @property
33807
+ def ReplicationStatus(self):
33808
+ """RO延迟复制状态。
33809
+ :rtype: str
33810
+ """
33811
+ return self._ReplicationStatus
33812
+
33813
+ @ReplicationStatus.setter
33814
+ def ReplicationStatus(self, ReplicationStatus):
33815
+ self._ReplicationStatus = ReplicationStatus
33816
+
33788
33817
 
33789
33818
  def _deserialize(self, params):
33790
33819
  self._MasterInstanceId = params.get("MasterInstanceId")
@@ -33810,6 +33839,7 @@ class RoInstanceInfo(AbstractModel):
33810
33839
  self._EngineVersion = params.get("EngineVersion")
33811
33840
  self._DeadlineTime = params.get("DeadlineTime")
33812
33841
  self._PayType = params.get("PayType")
33842
+ self._ReplicationStatus = params.get("ReplicationStatus")
33813
33843
  memeber_set = set(params.keys())
33814
33844
  for name, value in vars(self).items():
33815
33845
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cdb
3
- Version: 3.0.1379
3
+ Version: 3.0.1380
4
4
  Summary: Tencent Cloud Cdb SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1380
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1379