tencentcloud-sdk-python-ags 3.1.118__tar.gz → 3.1.119__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_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/setup.py +1 -1
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/models.py +17 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud_sdk_python_ags.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ags-3.1.119/tencentcloud_sdk_python_ags.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ags-3.1.118/tencentcloud_sdk_python_ags.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/README.rst +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/__init__.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/__init__.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/ags_client.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud_sdk_python_ags.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ags-3.1.118 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud_sdk_python_ags.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ags
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.119
|
|
4
4
|
Summary: Tencent Cloud Ags 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.119
|
|
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-ags',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.119,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ags SDK for Python',
|
|
@@ -2769,9 +2769,13 @@ class ResourceConfiguration(AbstractModel):
|
|
|
2769
2769
|
:type CPU: str
|
|
2770
2770
|
:param _Memory: <p>内存资源量</p>
|
|
2771
2771
|
:type Memory: str
|
|
2772
|
+
:param _Storage: <p>自定义磁盘大小</p><p>枚举值:</p><ul><li>1Gi: 1Gi</li><li>5Gi: 5Gi</li><li>10Gi: 10Gi</li><li>20Gi: 20Gi</li></ul>
|
|
2773
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2774
|
+
:type Storage: str
|
|
2772
2775
|
"""
|
|
2773
2776
|
self._CPU = None
|
|
2774
2777
|
self._Memory = None
|
|
2778
|
+
self._Storage = None
|
|
2775
2779
|
|
|
2776
2780
|
@property
|
|
2777
2781
|
def CPU(self):
|
|
@@ -2795,10 +2799,23 @@ class ResourceConfiguration(AbstractModel):
|
|
|
2795
2799
|
def Memory(self, Memory):
|
|
2796
2800
|
self._Memory = Memory
|
|
2797
2801
|
|
|
2802
|
+
@property
|
|
2803
|
+
def Storage(self):
|
|
2804
|
+
r"""<p>自定义磁盘大小</p><p>枚举值:</p><ul><li>1Gi: 1Gi</li><li>5Gi: 5Gi</li><li>10Gi: 10Gi</li><li>20Gi: 20Gi</li></ul>
|
|
2805
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2806
|
+
:rtype: str
|
|
2807
|
+
"""
|
|
2808
|
+
return self._Storage
|
|
2809
|
+
|
|
2810
|
+
@Storage.setter
|
|
2811
|
+
def Storage(self, Storage):
|
|
2812
|
+
self._Storage = Storage
|
|
2813
|
+
|
|
2798
2814
|
|
|
2799
2815
|
def _deserialize(self, params):
|
|
2800
2816
|
self._CPU = params.get("CPU")
|
|
2801
2817
|
self._Memory = params.get("Memory")
|
|
2818
|
+
self._Storage = params.get("Storage")
|
|
2802
2819
|
memeber_set = set(params.keys())
|
|
2803
2820
|
for name, value in vars(self).items():
|
|
2804
2821
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ags
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.119
|
|
4
4
|
Summary: Tencent Cloud Ags 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.119
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.119
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.118
|
|
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
|