tencentcloud-sdk-python-ags 3.1.111__tar.gz → 3.1.118__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.118}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud/ags/v20250920/models.py +15 -0
  5. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud_sdk_python_ags.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ags-3.1.118/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.118}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud/ags/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud/ags/v20250920/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud/ags/v20250920/ags_client.py +0 -0
  13. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ags-3.1.111 → tencentcloud_sdk_python_ags-3.1.118}/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.118}/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.118
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.118
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.118,<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.118'
@@ -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
 
@@ -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.118
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.118
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.118
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.111