tencentcloud-sdk-python-tdai 3.1.103__tar.gz → 3.1.127__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 (17) hide show
  1. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/setup.py +1 -1
  3. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud/tdai/v20250717/models.py +75 -0
  5. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud_sdk_python_tdai.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_tdai-3.1.127/tencentcloud_sdk_python_tdai.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_tdai-3.1.103/tencentcloud_sdk_python_tdai.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/README.rst +0 -0
  9. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud/tdai/__init__.py +0 -0
  11. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud/tdai/v20250717/__init__.py +0 -0
  12. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud/tdai/v20250717/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud/tdai/v20250717/tdai_client.py +0 -0
  14. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud/tdai/v20250717/tdai_client_async.py +0 -0
  15. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud_sdk_python_tdai.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud_sdk_python_tdai.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_tdai-3.1.103 → tencentcloud_sdk_python_tdai-3.1.127}/tencentcloud_sdk_python_tdai.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tdai
3
- Version: 3.1.103
3
+ Version: 3.1.127
4
4
  Summary: Tencent Cloud Tdai 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.1.103
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.127
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-tdai',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.103,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.127,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Tdai SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.103'
17
+ __version__ = '3.1.127'
@@ -1809,11 +1809,20 @@ class CreateMemoryPlusSpaceRequest(AbstractModel):
1809
1809
  :type ResourceTags: list of ResourceTag
1810
1810
  :param _GoodsNum: <p>单次批量创建 Memory 实例的数量。取值范围为 1-50。</p>
1811
1811
  :type GoodsNum: int
1812
+ :param _PayMode: <p>计费模式。</p><p>枚举值:</p><ul><li>0: 按量计费。</li><li>1: 包年包月。</li></ul>
1813
+ :type PayMode: int
1814
+ :param _PayPeriod: <p>包年包月周期</p>
1815
+ :type PayPeriod: int
1816
+ :param _AutoRenew: <p>是否自动续费</p>
1817
+ :type AutoRenew: int
1812
1818
  """
1813
1819
  self._Name = None
1814
1820
  self._Description = None
1815
1821
  self._ResourceTags = None
1816
1822
  self._GoodsNum = None
1823
+ self._PayMode = None
1824
+ self._PayPeriod = None
1825
+ self._AutoRenew = None
1817
1826
 
1818
1827
  @property
1819
1828
  def Name(self):
@@ -1859,6 +1868,39 @@ class CreateMemoryPlusSpaceRequest(AbstractModel):
1859
1868
  def GoodsNum(self, GoodsNum):
1860
1869
  self._GoodsNum = GoodsNum
1861
1870
 
1871
+ @property
1872
+ def PayMode(self):
1873
+ r"""<p>计费模式。</p><p>枚举值:</p><ul><li>0: 按量计费。</li><li>1: 包年包月。</li></ul>
1874
+ :rtype: int
1875
+ """
1876
+ return self._PayMode
1877
+
1878
+ @PayMode.setter
1879
+ def PayMode(self, PayMode):
1880
+ self._PayMode = PayMode
1881
+
1882
+ @property
1883
+ def PayPeriod(self):
1884
+ r"""<p>包年包月周期</p>
1885
+ :rtype: int
1886
+ """
1887
+ return self._PayPeriod
1888
+
1889
+ @PayPeriod.setter
1890
+ def PayPeriod(self, PayPeriod):
1891
+ self._PayPeriod = PayPeriod
1892
+
1893
+ @property
1894
+ def AutoRenew(self):
1895
+ r"""<p>是否自动续费</p>
1896
+ :rtype: int
1897
+ """
1898
+ return self._AutoRenew
1899
+
1900
+ @AutoRenew.setter
1901
+ def AutoRenew(self, AutoRenew):
1902
+ self._AutoRenew = AutoRenew
1903
+
1862
1904
 
1863
1905
  def _deserialize(self, params):
1864
1906
  self._Name = params.get("Name")
@@ -1870,6 +1912,9 @@ class CreateMemoryPlusSpaceRequest(AbstractModel):
1870
1912
  obj._deserialize(item)
1871
1913
  self._ResourceTags.append(obj)
1872
1914
  self._GoodsNum = params.get("GoodsNum")
1915
+ self._PayMode = params.get("PayMode")
1916
+ self._PayPeriod = params.get("PayPeriod")
1917
+ self._AutoRenew = params.get("AutoRenew")
1873
1918
  memeber_set = set(params.keys())
1874
1919
  for name, value in vars(self).items():
1875
1920
  property_name = name[1:]
@@ -3575,6 +3620,8 @@ class DescribeMemoryPlusSpaceResponse(AbstractModel):
3575
3620
  :type Status: int
3576
3621
  :param _PayMode: <p>Memory 实例计费模式。</p><ul><li>-1:免费体验。</li><li>0:包年包月。</li><li>1:按量计费。</li></ul>
3577
3622
  :type PayMode: int
3623
+ :param _AutoRenew: <p>是否自动续费</p><p>枚举值:</p><ul><li>0: 不自动续费</li><li>1: 自动续费</li></ul>
3624
+ :type AutoRenew: int
3578
3625
  :param _Version: <p>Memory 版本信息:v1。</p>
3579
3626
  :type Version: str
3580
3627
  :param _MemoryUsage: <p>Memory 当前已写入的记忆条数。</p>
@@ -3608,6 +3655,7 @@ class DescribeMemoryPlusSpaceResponse(AbstractModel):
3608
3655
  self._ResourceTags = None
3609
3656
  self._Status = None
3610
3657
  self._PayMode = None
3658
+ self._AutoRenew = None
3611
3659
  self._Version = None
3612
3660
  self._MemoryUsage = None
3613
3661
  self._MemoryLimit = None
@@ -3709,6 +3757,17 @@ class DescribeMemoryPlusSpaceResponse(AbstractModel):
3709
3757
  def PayMode(self, PayMode):
3710
3758
  self._PayMode = PayMode
3711
3759
 
3760
+ @property
3761
+ def AutoRenew(self):
3762
+ r"""<p>是否自动续费</p><p>枚举值:</p><ul><li>0: 不自动续费</li><li>1: 自动续费</li></ul>
3763
+ :rtype: int
3764
+ """
3765
+ return self._AutoRenew
3766
+
3767
+ @AutoRenew.setter
3768
+ def AutoRenew(self, AutoRenew):
3769
+ self._AutoRenew = AutoRenew
3770
+
3712
3771
  @property
3713
3772
  def Version(self):
3714
3773
  r"""<p>Memory 版本信息:v1。</p>
@@ -3856,6 +3915,7 @@ class DescribeMemoryPlusSpaceResponse(AbstractModel):
3856
3915
  self._ResourceTags.append(obj)
3857
3916
  self._Status = params.get("Status")
3858
3917
  self._PayMode = params.get("PayMode")
3918
+ self._AutoRenew = params.get("AutoRenew")
3859
3919
  self._Version = params.get("Version")
3860
3920
  self._MemoryUsage = params.get("MemoryUsage")
3861
3921
  self._MemoryLimit = params.get("MemoryLimit")
@@ -5277,8 +5337,11 @@ class RecoverMemoryPlusSpaceRequest(AbstractModel):
5277
5337
  r"""
5278
5338
  :param _SpaceIds: <p>指定需要恢复的 Memory 实例 ID 列表。</p>
5279
5339
  :type SpaceIds: list of str
5340
+ :param _PayPeriod: <p>包年包月续费周期</p><p>单位:月</p>
5341
+ :type PayPeriod: int
5280
5342
  """
5281
5343
  self._SpaceIds = None
5344
+ self._PayPeriod = None
5282
5345
 
5283
5346
  @property
5284
5347
  def SpaceIds(self):
@@ -5291,9 +5354,21 @@ class RecoverMemoryPlusSpaceRequest(AbstractModel):
5291
5354
  def SpaceIds(self, SpaceIds):
5292
5355
  self._SpaceIds = SpaceIds
5293
5356
 
5357
+ @property
5358
+ def PayPeriod(self):
5359
+ r"""<p>包年包月续费周期</p><p>单位:月</p>
5360
+ :rtype: int
5361
+ """
5362
+ return self._PayPeriod
5363
+
5364
+ @PayPeriod.setter
5365
+ def PayPeriod(self, PayPeriod):
5366
+ self._PayPeriod = PayPeriod
5367
+
5294
5368
 
5295
5369
  def _deserialize(self, params):
5296
5370
  self._SpaceIds = params.get("SpaceIds")
5371
+ self._PayPeriod = params.get("PayPeriod")
5297
5372
  memeber_set = set(params.keys())
5298
5373
  for name, value in vars(self).items():
5299
5374
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tdai
3
- Version: 3.1.103
3
+ Version: 3.1.127
4
4
  Summary: Tencent Cloud Tdai 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.1.103
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.127
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.127
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.103