tencentcloud-sdk-python-ags 3.1.111__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/models.py +32 -0
  5. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud_sdk_python_ags.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ags-3.1.119/tencentcloud_sdk_python_ags.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ags-3.1.111/tencentcloud_sdk_python_ags.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/ags_client.py +0 -0
  13. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.119}/tencentcloud_sdk_python_ags.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ags-3.1.111 → 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.111
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.111
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.111,<4.0.0"],
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',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.111'
17
+ __version__ = '3.1.119'
@@ -2543,11 +2543,25 @@ class PauseSandboxInstanceResponse(AbstractModel):
2543
2543
 
2544
2544
  def __init__(self):
2545
2545
  r"""
2546
+ :param _InstanceStatus: <p>目标沙箱实例当前的状态</p><p>枚举值:</p><ul><li>PAUSING: 正在暂停中</li><li>PAUSED: 已暂停</li><li>PAUSE_FAILED: 暂停失败</li></ul>
2547
+ :type InstanceStatus: str
2546
2548
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2547
2549
  :type RequestId: str
2548
2550
  """
2551
+ self._InstanceStatus = None
2549
2552
  self._RequestId = None
2550
2553
 
2554
+ @property
2555
+ def InstanceStatus(self):
2556
+ r"""<p>目标沙箱实例当前的状态</p><p>枚举值:</p><ul><li>PAUSING: 正在暂停中</li><li>PAUSED: 已暂停</li><li>PAUSE_FAILED: 暂停失败</li></ul>
2557
+ :rtype: str
2558
+ """
2559
+ return self._InstanceStatus
2560
+
2561
+ @InstanceStatus.setter
2562
+ def InstanceStatus(self, InstanceStatus):
2563
+ self._InstanceStatus = InstanceStatus
2564
+
2551
2565
  @property
2552
2566
  def RequestId(self):
2553
2567
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -2561,6 +2575,7 @@ class PauseSandboxInstanceResponse(AbstractModel):
2561
2575
 
2562
2576
 
2563
2577
  def _deserialize(self, params):
2578
+ self._InstanceStatus = params.get("InstanceStatus")
2564
2579
  self._RequestId = params.get("RequestId")
2565
2580
 
2566
2581
 
@@ -2754,9 +2769,13 @@ class ResourceConfiguration(AbstractModel):
2754
2769
  :type CPU: str
2755
2770
  :param _Memory: <p>内存资源量</p>
2756
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
2757
2775
  """
2758
2776
  self._CPU = None
2759
2777
  self._Memory = None
2778
+ self._Storage = None
2760
2779
 
2761
2780
  @property
2762
2781
  def CPU(self):
@@ -2780,10 +2799,23 @@ class ResourceConfiguration(AbstractModel):
2780
2799
  def Memory(self, Memory):
2781
2800
  self._Memory = Memory
2782
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
+
2783
2814
 
2784
2815
  def _deserialize(self, params):
2785
2816
  self._CPU = params.get("CPU")
2786
2817
  self._Memory = params.get("Memory")
2818
+ self._Storage = params.get("Storage")
2787
2819
  memeber_set = set(params.keys())
2788
2820
  for name, value in vars(self).items():
2789
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.111
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.111
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.111