tencentcloud-sdk-python-sqlserver 3.0.1481__tar.gz → 3.1.58__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_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/setup.py +2 -1
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud/sqlserver/v20180328/models.py +23 -8
- tencentcloud_sdk_python_sqlserver-3.1.58/tencentcloud/sqlserver/v20180328/sqlserver_client_async.py +2693 -0
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud_sdk_python_sqlserver.egg-info/PKG-INFO +2 -2
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud_sdk_python_sqlserver.egg-info/SOURCES.txt +1 -0
- tencentcloud_sdk_python_sqlserver-3.1.58/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_sqlserver-3.0.1481/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/README.rst +0 -0
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/setup.cfg +0 -0
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud/sqlserver/__init__.py +0 -0
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud/sqlserver/v20180328/__init__.py +0 -0
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud/sqlserver/v20180328/errorcodes.py +0 -0
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud/sqlserver/v20180328/sqlserver_client.py +0 -0
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud_sdk_python_sqlserver.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/tencentcloud_sdk_python_sqlserver.egg-info/top_level.txt +0 -0
{tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-sqlserver
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1.58
|
|
4
4
|
Summary: Tencent Cloud Sqlserver 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.58
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
{tencentcloud_sdk_python_sqlserver-3.0.1481 → tencentcloud_sdk_python_sqlserver-3.1.58}/setup.py
RENAMED
|
@@ -8,7 +8,8 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-sqlserver',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.58,<4.0.0"],
|
|
12
|
+
|
|
12
13
|
version=tencentcloud.__version__,
|
|
13
14
|
description='Tencent Cloud Sqlserver SDK for Python',
|
|
14
15
|
long_description=open('README.rst').read(),
|
|
@@ -8389,17 +8389,20 @@ class DeleteDBRequest(AbstractModel):
|
|
|
8389
8389
|
|
|
8390
8390
|
def __init__(self):
|
|
8391
8391
|
r"""
|
|
8392
|
-
:param _InstanceId:
|
|
8392
|
+
:param _InstanceId: <p>实例ID,形如mssql-rljoi3bf</p>
|
|
8393
8393
|
:type InstanceId: str
|
|
8394
|
-
:param _Names:
|
|
8394
|
+
:param _Names: <p>数据库名数组</p>
|
|
8395
8395
|
:type Names: list of str
|
|
8396
|
+
:param _NoDoBackup: <p>删除数据库前是否创建备份。</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
|
|
8397
|
+
:type NoDoBackup: int
|
|
8396
8398
|
"""
|
|
8397
8399
|
self._InstanceId = None
|
|
8398
8400
|
self._Names = None
|
|
8401
|
+
self._NoDoBackup = None
|
|
8399
8402
|
|
|
8400
8403
|
@property
|
|
8401
8404
|
def InstanceId(self):
|
|
8402
|
-
r"""
|
|
8405
|
+
r"""<p>实例ID,形如mssql-rljoi3bf</p>
|
|
8403
8406
|
:rtype: str
|
|
8404
8407
|
"""
|
|
8405
8408
|
return self._InstanceId
|
|
@@ -8410,7 +8413,7 @@ class DeleteDBRequest(AbstractModel):
|
|
|
8410
8413
|
|
|
8411
8414
|
@property
|
|
8412
8415
|
def Names(self):
|
|
8413
|
-
r"""
|
|
8416
|
+
r"""<p>数据库名数组</p>
|
|
8414
8417
|
:rtype: list of str
|
|
8415
8418
|
"""
|
|
8416
8419
|
return self._Names
|
|
@@ -8419,10 +8422,22 @@ class DeleteDBRequest(AbstractModel):
|
|
|
8419
8422
|
def Names(self, Names):
|
|
8420
8423
|
self._Names = Names
|
|
8421
8424
|
|
|
8425
|
+
@property
|
|
8426
|
+
def NoDoBackup(self):
|
|
8427
|
+
r"""<p>删除数据库前是否创建备份。</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
|
|
8428
|
+
:rtype: int
|
|
8429
|
+
"""
|
|
8430
|
+
return self._NoDoBackup
|
|
8431
|
+
|
|
8432
|
+
@NoDoBackup.setter
|
|
8433
|
+
def NoDoBackup(self, NoDoBackup):
|
|
8434
|
+
self._NoDoBackup = NoDoBackup
|
|
8435
|
+
|
|
8422
8436
|
|
|
8423
8437
|
def _deserialize(self, params):
|
|
8424
8438
|
self._InstanceId = params.get("InstanceId")
|
|
8425
8439
|
self._Names = params.get("Names")
|
|
8440
|
+
self._NoDoBackup = params.get("NoDoBackup")
|
|
8426
8441
|
memeber_set = set(params.keys())
|
|
8427
8442
|
for name, value in vars(self).items():
|
|
8428
8443
|
property_name = name[1:]
|
|
@@ -8440,7 +8455,7 @@ class DeleteDBResponse(AbstractModel):
|
|
|
8440
8455
|
|
|
8441
8456
|
def __init__(self):
|
|
8442
8457
|
r"""
|
|
8443
|
-
:param _FlowId:
|
|
8458
|
+
:param _FlowId: <p>任务流ID</p>
|
|
8444
8459
|
:type FlowId: int
|
|
8445
8460
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8446
8461
|
:type RequestId: str
|
|
@@ -8450,7 +8465,7 @@ class DeleteDBResponse(AbstractModel):
|
|
|
8450
8465
|
|
|
8451
8466
|
@property
|
|
8452
8467
|
def FlowId(self):
|
|
8453
|
-
r"""
|
|
8468
|
+
r"""<p>任务流ID</p>
|
|
8454
8469
|
:rtype: int
|
|
8455
8470
|
"""
|
|
8456
8471
|
return self._FlowId
|
|
@@ -20004,7 +20019,7 @@ class Events(AbstractModel):
|
|
|
20004
20019
|
:type Size: int
|
|
20005
20020
|
:param _EventType: 事件类型,slow-慢SQL事件,blocked-阻塞事件,deadlock-死锁事件
|
|
20006
20021
|
:type EventType: str
|
|
20007
|
-
:param _Status: 事件记录状态,1-成功,
|
|
20022
|
+
:param _Status: 事件记录状态,1-成功,4-写入中
|
|
20008
20023
|
:type Status: int
|
|
20009
20024
|
:param _StartTime: 扩展文件生成开始时间
|
|
20010
20025
|
:type StartTime: str
|
|
@@ -20071,7 +20086,7 @@ class Events(AbstractModel):
|
|
|
20071
20086
|
|
|
20072
20087
|
@property
|
|
20073
20088
|
def Status(self):
|
|
20074
|
-
r"""事件记录状态,1-成功,
|
|
20089
|
+
r"""事件记录状态,1-成功,4-写入中
|
|
20075
20090
|
:rtype: int
|
|
20076
20091
|
"""
|
|
20077
20092
|
return self._Status
|