tencentcloud-sdk-python-dbbrain 3.0.1193__tar.gz → 3.0.1203__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.
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/setup.py +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/v20210527/models.py +12 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud_sdk_python_dbbrain.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dbbrain-3.0.1203/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dbbrain-3.0.1193/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/README.rst +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/v20191016/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/v20191016/dbbrain_client.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/v20191016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/v20191016/models.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/v20210527/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/v20210527/dbbrain_client.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud/dbbrain/v20210527/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud_sdk_python_dbbrain.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud_sdk_python_dbbrain.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/tencentcloud_sdk_python_dbbrain.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-dbbrain',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1203"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dbbrain SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1667,6 +1667,8 @@ class CreateKillTaskRequest(AbstractModel):
|
|
|
1667
1667
|
:type Command: str
|
|
1668
1668
|
:param _Info: 任务过滤条件,支持单条件前缀匹配。
|
|
1669
1669
|
:type Info: str
|
|
1670
|
+
:param _Infos: 任务过滤条件,支持多个关键字匹配,与Info参数互斥。
|
|
1671
|
+
:type Infos: list of str
|
|
1670
1672
|
:param _User: 任务过滤条件,用户类型。
|
|
1671
1673
|
:type User: str
|
|
1672
1674
|
:param _Time: 任务过滤条件,会话持续时长,单位秒。
|
|
@@ -1680,6 +1682,7 @@ class CreateKillTaskRequest(AbstractModel):
|
|
|
1680
1682
|
self._DB = None
|
|
1681
1683
|
self._Command = None
|
|
1682
1684
|
self._Info = None
|
|
1685
|
+
self._Infos = None
|
|
1683
1686
|
self._User = None
|
|
1684
1687
|
self._Time = None
|
|
1685
1688
|
self._Product = None
|
|
@@ -1732,6 +1735,14 @@ class CreateKillTaskRequest(AbstractModel):
|
|
|
1732
1735
|
def Info(self, Info):
|
|
1733
1736
|
self._Info = Info
|
|
1734
1737
|
|
|
1738
|
+
@property
|
|
1739
|
+
def Infos(self):
|
|
1740
|
+
return self._Infos
|
|
1741
|
+
|
|
1742
|
+
@Infos.setter
|
|
1743
|
+
def Infos(self, Infos):
|
|
1744
|
+
self._Infos = Infos
|
|
1745
|
+
|
|
1735
1746
|
@property
|
|
1736
1747
|
def User(self):
|
|
1737
1748
|
return self._User
|
|
@@ -1764,6 +1775,7 @@ class CreateKillTaskRequest(AbstractModel):
|
|
|
1764
1775
|
self._DB = params.get("DB")
|
|
1765
1776
|
self._Command = params.get("Command")
|
|
1766
1777
|
self._Info = params.get("Info")
|
|
1778
|
+
self._Infos = params.get("Infos")
|
|
1767
1779
|
self._User = params.get("User")
|
|
1768
1780
|
self._Time = params.get("Time")
|
|
1769
1781
|
self._Product = params.get("Product")
|
tencentcloud-sdk-python-dbbrain-3.0.1203/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1203
|
tencentcloud-sdk-python-dbbrain-3.0.1193/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1193
|
{tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-dbbrain-3.0.1193 → tencentcloud-sdk-python-dbbrain-3.0.1203}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|