tencentcloud-sdk-python-cdb 3.0.1389__tar.gz → 3.0.1391__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.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud/cdb/v20170320/models.py +34 -0
  5. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cdb-3.0.1391/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cdb-3.0.1389/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud/cdb/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud/cdb/v20170320/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud/cdb/v20170320/cdb_client.py +0 -0
  13. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cdb-3.0.1389 → tencentcloud-sdk-python-cdb-3.0.1391}/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.1389
3
+ Version: 3.0.1391
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.1389"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1391"],
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.1389'
17
+ __version__ = '3.0.1391'
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cdb
3
- Version: 3.0.1389
3
+ Version: 3.0.1391
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.1391
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1389