tencentcloud-sdk-python-sqlserver 3.0.978__tar.gz → 3.0.981__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.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/setup.py +1 -1
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud/sqlserver/v20180328/models.py +36 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud_sdk_python_sqlserver.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-sqlserver-3.0.981/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-sqlserver-3.0.978/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/README.rst +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/setup.cfg +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud/sqlserver/__init__.py +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud/sqlserver/v20180328/__init__.py +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud/sqlserver/v20180328/errorcodes.py +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud/sqlserver/v20180328/sqlserver_client.py +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud_sdk_python_sqlserver.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud_sdk_python_sqlserver.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/tencentcloud_sdk_python_sqlserver.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/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.981"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Sqlserver SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -616,6 +616,8 @@ class Backup(AbstractModel):
|
|
|
616
616
|
:type DBs: list of str
|
|
617
617
|
:param _Strategy: 备份策略(0-实例备份;1-多库备份)
|
|
618
618
|
:type Strategy: int
|
|
619
|
+
:param _StorageStrategy: 备份存储策略 0-跟随自定义备份保留策略 1-跟随实例生命周期直到实例下线
|
|
620
|
+
:type StorageStrategy: int
|
|
619
621
|
:param _BackupWay: 备份方式,0-定时备份;1-手动临时备份;2-定期备份
|
|
620
622
|
:type BackupWay: int
|
|
621
623
|
:param _BackupName: 备份任务名称,可自定义
|
|
@@ -641,6 +643,7 @@ class Backup(AbstractModel):
|
|
|
641
643
|
self._Status = None
|
|
642
644
|
self._DBs = None
|
|
643
645
|
self._Strategy = None
|
|
646
|
+
self._StorageStrategy = None
|
|
644
647
|
self._BackupWay = None
|
|
645
648
|
self._BackupName = None
|
|
646
649
|
self._GroupId = None
|
|
@@ -729,6 +732,14 @@ class Backup(AbstractModel):
|
|
|
729
732
|
def Strategy(self, Strategy):
|
|
730
733
|
self._Strategy = Strategy
|
|
731
734
|
|
|
735
|
+
@property
|
|
736
|
+
def StorageStrategy(self):
|
|
737
|
+
return self._StorageStrategy
|
|
738
|
+
|
|
739
|
+
@StorageStrategy.setter
|
|
740
|
+
def StorageStrategy(self, StorageStrategy):
|
|
741
|
+
self._StorageStrategy = StorageStrategy
|
|
742
|
+
|
|
732
743
|
@property
|
|
733
744
|
def BackupWay(self):
|
|
734
745
|
return self._BackupWay
|
|
@@ -797,6 +808,7 @@ class Backup(AbstractModel):
|
|
|
797
808
|
self._Status = params.get("Status")
|
|
798
809
|
self._DBs = params.get("DBs")
|
|
799
810
|
self._Strategy = params.get("Strategy")
|
|
811
|
+
self._StorageStrategy = params.get("StorageStrategy")
|
|
800
812
|
self._BackupWay = params.get("BackupWay")
|
|
801
813
|
self._BackupName = params.get("BackupName")
|
|
802
814
|
self._GroupId = params.get("GroupId")
|
|
@@ -1692,11 +1704,14 @@ class CreateBackupRequest(AbstractModel):
|
|
|
1692
1704
|
:type InstanceId: str
|
|
1693
1705
|
:param _BackupName: 备份名称,若不填则自动生成“实例ID_备份开始时间戳”
|
|
1694
1706
|
:type BackupName: str
|
|
1707
|
+
:param _StorageStrategy: 备份存储策略 0-跟随自定义备份保留策略 1-跟随实例生命周期直到实例下线,默认取值0
|
|
1708
|
+
:type StorageStrategy: int
|
|
1695
1709
|
"""
|
|
1696
1710
|
self._Strategy = None
|
|
1697
1711
|
self._DBNames = None
|
|
1698
1712
|
self._InstanceId = None
|
|
1699
1713
|
self._BackupName = None
|
|
1714
|
+
self._StorageStrategy = None
|
|
1700
1715
|
|
|
1701
1716
|
@property
|
|
1702
1717
|
def Strategy(self):
|
|
@@ -1730,12 +1745,21 @@ class CreateBackupRequest(AbstractModel):
|
|
|
1730
1745
|
def BackupName(self, BackupName):
|
|
1731
1746
|
self._BackupName = BackupName
|
|
1732
1747
|
|
|
1748
|
+
@property
|
|
1749
|
+
def StorageStrategy(self):
|
|
1750
|
+
return self._StorageStrategy
|
|
1751
|
+
|
|
1752
|
+
@StorageStrategy.setter
|
|
1753
|
+
def StorageStrategy(self, StorageStrategy):
|
|
1754
|
+
self._StorageStrategy = StorageStrategy
|
|
1755
|
+
|
|
1733
1756
|
|
|
1734
1757
|
def _deserialize(self, params):
|
|
1735
1758
|
self._Strategy = params.get("Strategy")
|
|
1736
1759
|
self._DBNames = params.get("DBNames")
|
|
1737
1760
|
self._InstanceId = params.get("InstanceId")
|
|
1738
1761
|
self._BackupName = params.get("BackupName")
|
|
1762
|
+
self._StorageStrategy = params.get("StorageStrategy")
|
|
1739
1763
|
memeber_set = set(params.keys())
|
|
1740
1764
|
for name, value in vars(self).items():
|
|
1741
1765
|
property_name = name[1:]
|
|
@@ -7622,6 +7646,8 @@ class DescribeBackupsRequest(AbstractModel):
|
|
|
7622
7646
|
:type Type: int
|
|
7623
7647
|
:param _BackupFormat: 按照备份文件形式筛选,pkg-打包备份文件,single-单库备份文件
|
|
7624
7648
|
:type BackupFormat: str
|
|
7649
|
+
:param _StorageStrategy: 备份存储策略 0-跟随自定义备份保留策略 1-跟随实例生命周期直到实例下线,默认取值0
|
|
7650
|
+
:type StorageStrategy: int
|
|
7625
7651
|
"""
|
|
7626
7652
|
self._StartTime = None
|
|
7627
7653
|
self._EndTime = None
|
|
@@ -7636,6 +7662,7 @@ class DescribeBackupsRequest(AbstractModel):
|
|
|
7636
7662
|
self._Group = None
|
|
7637
7663
|
self._Type = None
|
|
7638
7664
|
self._BackupFormat = None
|
|
7665
|
+
self._StorageStrategy = None
|
|
7639
7666
|
|
|
7640
7667
|
@property
|
|
7641
7668
|
def StartTime(self):
|
|
@@ -7741,6 +7768,14 @@ class DescribeBackupsRequest(AbstractModel):
|
|
|
7741
7768
|
def BackupFormat(self, BackupFormat):
|
|
7742
7769
|
self._BackupFormat = BackupFormat
|
|
7743
7770
|
|
|
7771
|
+
@property
|
|
7772
|
+
def StorageStrategy(self):
|
|
7773
|
+
return self._StorageStrategy
|
|
7774
|
+
|
|
7775
|
+
@StorageStrategy.setter
|
|
7776
|
+
def StorageStrategy(self, StorageStrategy):
|
|
7777
|
+
self._StorageStrategy = StorageStrategy
|
|
7778
|
+
|
|
7744
7779
|
|
|
7745
7780
|
def _deserialize(self, params):
|
|
7746
7781
|
self._StartTime = params.get("StartTime")
|
|
@@ -7756,6 +7791,7 @@ class DescribeBackupsRequest(AbstractModel):
|
|
|
7756
7791
|
self._Group = params.get("Group")
|
|
7757
7792
|
self._Type = params.get("Type")
|
|
7758
7793
|
self._BackupFormat = params.get("BackupFormat")
|
|
7794
|
+
self._StorageStrategy = params.get("StorageStrategy")
|
|
7759
7795
|
memeber_set = set(params.keys())
|
|
7760
7796
|
for name, value in vars(self).items():
|
|
7761
7797
|
property_name = name[1:]
|
tencentcloud-sdk-python-sqlserver-3.0.981/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.981
|
tencentcloud-sdk-python-sqlserver-3.0.978/tencentcloud_sdk_python_sqlserver.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.978
|
{tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-sqlserver-3.0.978 → tencentcloud-sdk-python-sqlserver-3.0.981}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|