tencentcloud-sdk-python-sqlserver 3.0.1459__tar.gz → 3.0.1464__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.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/setup.py +1 -1
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud/sqlserver/v20180328/models.py +21 -2
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud/sqlserver/v20180328/sqlserver_client.py +1 -1
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud_sdk_python_sqlserver.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-sqlserver-3.0.1464/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-sqlserver-3.0.1459/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/README.rst +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/setup.cfg +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud/sqlserver/__init__.py +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud/sqlserver/v20180328/__init__.py +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud/sqlserver/v20180328/errorcodes.py +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud_sdk_python_sqlserver.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud_sdk_python_sqlserver.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/tencentcloud_sdk_python_sqlserver.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ 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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1464,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Sqlserver SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -12083,6 +12083,9 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
|
12083
12083
|
:type IsSafetyLimited: int
|
|
12084
12084
|
:param _IsSupportSA: 是否支持创建SA权限账号,0-不支持,1-支持
|
|
12085
12085
|
:type IsSupportSA: int
|
|
12086
|
+
:param _SlowLogThreshold: 慢SQL阈值,单位毫秒
|
|
12087
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12088
|
+
:type SlowLogThreshold: int
|
|
12086
12089
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12087
12090
|
:type RequestId: str
|
|
12088
12091
|
"""
|
|
@@ -12103,6 +12106,7 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
|
12103
12106
|
self._IsDiskEncryptFlag = None
|
|
12104
12107
|
self._IsSafetyLimited = None
|
|
12105
12108
|
self._IsSupportSA = None
|
|
12109
|
+
self._SlowLogThreshold = None
|
|
12106
12110
|
self._RequestId = None
|
|
12107
12111
|
|
|
12108
12112
|
@property
|
|
@@ -12292,6 +12296,18 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
|
12292
12296
|
def IsSupportSA(self, IsSupportSA):
|
|
12293
12297
|
self._IsSupportSA = IsSupportSA
|
|
12294
12298
|
|
|
12299
|
+
@property
|
|
12300
|
+
def SlowLogThreshold(self):
|
|
12301
|
+
r"""慢SQL阈值,单位毫秒
|
|
12302
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12303
|
+
:rtype: int
|
|
12304
|
+
"""
|
|
12305
|
+
return self._SlowLogThreshold
|
|
12306
|
+
|
|
12307
|
+
@SlowLogThreshold.setter
|
|
12308
|
+
def SlowLogThreshold(self, SlowLogThreshold):
|
|
12309
|
+
self._SlowLogThreshold = SlowLogThreshold
|
|
12310
|
+
|
|
12295
12311
|
@property
|
|
12296
12312
|
def RequestId(self):
|
|
12297
12313
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -12338,6 +12354,7 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
|
12338
12354
|
self._IsDiskEncryptFlag = params.get("IsDiskEncryptFlag")
|
|
12339
12355
|
self._IsSafetyLimited = params.get("IsSafetyLimited")
|
|
12340
12356
|
self._IsSupportSA = params.get("IsSupportSA")
|
|
12357
|
+
self._SlowLogThreshold = params.get("SlowLogThreshold")
|
|
12341
12358
|
self._RequestId = params.get("RequestId")
|
|
12342
12359
|
|
|
12343
12360
|
|
|
@@ -23950,7 +23967,8 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
|
23950
23967
|
r"""
|
|
23951
23968
|
:param _InstanceId: 实例 ID,格式如:mssql-c1nl9rpv 或者 mssqlro-c1nl9rpv,与云数据库控制台页面中显示的实例 ID 相同。
|
|
23952
23969
|
:type InstanceId: str
|
|
23953
|
-
:param _SecurityGroupIdSet: 要修改的安全组 ID 列表,一个或者多个安全组 ID
|
|
23970
|
+
:param _SecurityGroupIdSet: 要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。可通过 DescribeDBSecurityGroups 接口获取。输入的安全组 ID 数组无长度限制。
|
|
23971
|
+
注意:该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
|
23954
23972
|
:type SecurityGroupIdSet: list of str
|
|
23955
23973
|
"""
|
|
23956
23974
|
self._InstanceId = None
|
|
@@ -23969,7 +23987,8 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
|
23969
23987
|
|
|
23970
23988
|
@property
|
|
23971
23989
|
def SecurityGroupIdSet(self):
|
|
23972
|
-
r"""要修改的安全组 ID 列表,一个或者多个安全组 ID
|
|
23990
|
+
r"""要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。可通过 DescribeDBSecurityGroups 接口获取。输入的安全组 ID 数组无长度限制。
|
|
23991
|
+
注意:该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
|
23973
23992
|
:rtype: list of str
|
|
23974
23993
|
"""
|
|
23975
23994
|
return self._SecurityGroupIdSet
|
|
@@ -2741,7 +2741,7 @@ class SqlserverClient(AbstractClient):
|
|
|
2741
2741
|
|
|
2742
2742
|
|
|
2743
2743
|
def ModifyDatabaseShrinkMDF(self, request):
|
|
2744
|
-
r"""
|
|
2744
|
+
r"""本接口(ModifyDatabaseShrinkMDF)用于收缩数据库 mdf(Shrink mdf)。
|
|
2745
2745
|
|
|
2746
2746
|
:param request: Request instance for ModifyDatabaseShrinkMDF.
|
|
2747
2747
|
:type request: :class:`tencentcloud.sqlserver.v20180328.models.ModifyDatabaseShrinkMDFRequest`
|
tencentcloud-sdk-python-sqlserver-3.0.1464/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1464
|
tencentcloud-sdk-python-sqlserver-3.0.1459/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1459
|
{tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-sqlserver-3.0.1459 → tencentcloud-sdk-python-sqlserver-3.0.1464}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|