tencentcloud-sdk-python-cdb 3.0.1133__tar.gz → 3.0.1140__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.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud/cdb/v20170320/models.py +12 -0
  5. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cdb-3.0.1140/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cdb-3.0.1133/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud/cdb/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud/cdb/v20170320/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud/cdb/v20170320/cdb_client.py +0 -0
  13. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cdb-3.0.1133 → tencentcloud-sdk-python-cdb-3.0.1140}/tencentcloud_sdk_python_cdb.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cdb
3
- Version: 3.0.1133
3
+ Version: 3.0.1140
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.1133"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1140"],
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.1133'
17
+ __version__ = '3.0.1140'
@@ -5733,6 +5733,8 @@ class CreateCdbProxyRequest(AbstractModel):
5733
5733
  :type Desc: str
5734
5734
  :param _ConnectionPoolLimit: 连接池阈值
5735
5735
  :type ConnectionPoolLimit: int
5736
+ :param _ProxyVersion: 指定要购买的 proxy 内核版本。不填则默认发货最新版本的 proxy。
5737
+ :type ProxyVersion: str
5736
5738
  """
5737
5739
  self._InstanceId = None
5738
5740
  self._UniqVpcId = None
@@ -5741,6 +5743,7 @@ class CreateCdbProxyRequest(AbstractModel):
5741
5743
  self._SecurityGroup = None
5742
5744
  self._Desc = None
5743
5745
  self._ConnectionPoolLimit = None
5746
+ self._ProxyVersion = None
5744
5747
 
5745
5748
  @property
5746
5749
  def InstanceId(self):
@@ -5798,6 +5801,14 @@ class CreateCdbProxyRequest(AbstractModel):
5798
5801
  def ConnectionPoolLimit(self, ConnectionPoolLimit):
5799
5802
  self._ConnectionPoolLimit = ConnectionPoolLimit
5800
5803
 
5804
+ @property
5805
+ def ProxyVersion(self):
5806
+ return self._ProxyVersion
5807
+
5808
+ @ProxyVersion.setter
5809
+ def ProxyVersion(self, ProxyVersion):
5810
+ self._ProxyVersion = ProxyVersion
5811
+
5801
5812
 
5802
5813
  def _deserialize(self, params):
5803
5814
  self._InstanceId = params.get("InstanceId")
@@ -5812,6 +5823,7 @@ class CreateCdbProxyRequest(AbstractModel):
5812
5823
  self._SecurityGroup = params.get("SecurityGroup")
5813
5824
  self._Desc = params.get("Desc")
5814
5825
  self._ConnectionPoolLimit = params.get("ConnectionPoolLimit")
5826
+ self._ProxyVersion = params.get("ProxyVersion")
5815
5827
  memeber_set = set(params.keys())
5816
5828
  for name, value in vars(self).items():
5817
5829
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cdb
3
- Version: 3.0.1133
3
+ Version: 3.0.1140
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.1140
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1133