tencentcloud-sdk-python-ags 3.1.164__tar.gz → 3.1.169__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.164 → tencentcloud_sdk_python_ags-3.1.169}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud/ags/v20250920/models.py +38 -4
  5. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud_sdk_python_ags.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ags-3.1.169/tencentcloud_sdk_python_ags.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ags-3.1.164/tencentcloud_sdk_python_ags.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud/ags/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud/ags/v20250920/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud/ags/v20250920/ags_client.py +0 -0
  13. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/tencentcloud_sdk_python_ags.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ags-3.1.164 → tencentcloud_sdk_python_ags-3.1.169}/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.164
3
+ Version: 3.1.169
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.164
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.169
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.164,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.169,<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.164'
17
+ __version__ = '3.1.169'
@@ -1052,6 +1052,8 @@ class CreateSandboxToolRequest(AbstractModel):
1052
1052
  :type StorageMounts: list of StorageMount
1053
1053
  :param _CustomConfiguration: <p>沙箱工具自定义配置</p>
1054
1054
  :type CustomConfiguration: :class:`tencentcloud.ags.v20250920.models.CustomConfiguration`
1055
+ :param _ComputerConfiguration: <p>桌面电脑环境类沙箱配置</p>
1056
+ :type ComputerConfiguration: :class:`tencentcloud.ags.v20250920.models.ComputerConfiguration`
1055
1057
  :param _LogConfiguration: <p>沙箱工具日志推送相关配置</p>
1056
1058
  :type LogConfiguration: :class:`tencentcloud.ags.v20250920.models.LogConfiguration`
1057
1059
  :param _Persistent: <p>常驻沙箱标识</p>
@@ -1067,6 +1069,7 @@ class CreateSandboxToolRequest(AbstractModel):
1067
1069
  self._RoleArn = None
1068
1070
  self._StorageMounts = None
1069
1071
  self._CustomConfiguration = None
1072
+ self._ComputerConfiguration = None
1070
1073
  self._LogConfiguration = None
1071
1074
  self._Persistent = None
1072
1075
 
@@ -1180,6 +1183,17 @@ class CreateSandboxToolRequest(AbstractModel):
1180
1183
  def CustomConfiguration(self, CustomConfiguration):
1181
1184
  self._CustomConfiguration = CustomConfiguration
1182
1185
 
1186
+ @property
1187
+ def ComputerConfiguration(self):
1188
+ r"""<p>桌面电脑环境类沙箱配置</p>
1189
+ :rtype: :class:`tencentcloud.ags.v20250920.models.ComputerConfiguration`
1190
+ """
1191
+ return self._ComputerConfiguration
1192
+
1193
+ @ComputerConfiguration.setter
1194
+ def ComputerConfiguration(self, ComputerConfiguration):
1195
+ self._ComputerConfiguration = ComputerConfiguration
1196
+
1183
1197
  @property
1184
1198
  def LogConfiguration(self):
1185
1199
  r"""<p>沙箱工具日志推送相关配置</p>
@@ -1228,6 +1242,9 @@ class CreateSandboxToolRequest(AbstractModel):
1228
1242
  if params.get("CustomConfiguration") is not None:
1229
1243
  self._CustomConfiguration = CustomConfiguration()
1230
1244
  self._CustomConfiguration._deserialize(params.get("CustomConfiguration"))
1245
+ if params.get("ComputerConfiguration") is not None:
1246
+ self._ComputerConfiguration = ComputerConfiguration()
1247
+ self._ComputerConfiguration._deserialize(params.get("ComputerConfiguration"))
1231
1248
  if params.get("LogConfiguration") is not None:
1232
1249
  self._LogConfiguration = LogConfiguration()
1233
1250
  self._LogConfiguration._deserialize(params.get("LogConfiguration"))
@@ -3265,9 +3282,9 @@ class MetadataVar(AbstractModel):
3265
3282
 
3266
3283
  def __init__(self):
3267
3284
  r"""
3268
- :param _Name: <p>沙箱元数据名</p>
3285
+ :param _Name: <p>元数据名</p>
3269
3286
  :type Name: str
3270
- :param _Value: <p>沙箱元数据值</p>
3287
+ :param _Value: <p>元数据值</p>
3271
3288
  :type Value: str
3272
3289
  """
3273
3290
  self._Name = None
@@ -3275,7 +3292,7 @@ class MetadataVar(AbstractModel):
3275
3292
 
3276
3293
  @property
3277
3294
  def Name(self):
3278
- r"""<p>沙箱元数据名</p>
3295
+ r"""<p>元数据名</p>
3279
3296
  :rtype: str
3280
3297
  """
3281
3298
  return self._Name
@@ -3286,7 +3303,7 @@ class MetadataVar(AbstractModel):
3286
3303
 
3287
3304
  @property
3288
3305
  def Value(self):
3289
- r"""<p>沙箱元数据值</p>
3306
+ r"""<p>元数据值</p>
3290
3307
  :rtype: str
3291
3308
  """
3292
3309
  return self._Value
@@ -5236,12 +5253,15 @@ class UpdateSandboxToolRequest(AbstractModel):
5236
5253
  :type Tags: list of Tag
5237
5254
  :param _CustomConfiguration: <p>沙箱工具自定义配置</p>
5238
5255
  :type CustomConfiguration: :class:`tencentcloud.ags.v20250920.models.CustomConfiguration`
5256
+ :param _ComputerConfiguration: <p>桌面电脑环境类沙箱配置</p>
5257
+ :type ComputerConfiguration: :class:`tencentcloud.ags.v20250920.models.ComputerConfiguration`
5239
5258
  """
5240
5259
  self._ToolId = None
5241
5260
  self._Description = None
5242
5261
  self._NetworkConfiguration = None
5243
5262
  self._Tags = None
5244
5263
  self._CustomConfiguration = None
5264
+ self._ComputerConfiguration = None
5245
5265
 
5246
5266
  @property
5247
5267
  def ToolId(self):
@@ -5298,6 +5318,17 @@ class UpdateSandboxToolRequest(AbstractModel):
5298
5318
  def CustomConfiguration(self, CustomConfiguration):
5299
5319
  self._CustomConfiguration = CustomConfiguration
5300
5320
 
5321
+ @property
5322
+ def ComputerConfiguration(self):
5323
+ r"""<p>桌面电脑环境类沙箱配置</p>
5324
+ :rtype: :class:`tencentcloud.ags.v20250920.models.ComputerConfiguration`
5325
+ """
5326
+ return self._ComputerConfiguration
5327
+
5328
+ @ComputerConfiguration.setter
5329
+ def ComputerConfiguration(self, ComputerConfiguration):
5330
+ self._ComputerConfiguration = ComputerConfiguration
5331
+
5301
5332
 
5302
5333
  def _deserialize(self, params):
5303
5334
  self._ToolId = params.get("ToolId")
@@ -5314,6 +5345,9 @@ class UpdateSandboxToolRequest(AbstractModel):
5314
5345
  if params.get("CustomConfiguration") is not None:
5315
5346
  self._CustomConfiguration = CustomConfiguration()
5316
5347
  self._CustomConfiguration._deserialize(params.get("CustomConfiguration"))
5348
+ if params.get("ComputerConfiguration") is not None:
5349
+ self._ComputerConfiguration = ComputerConfiguration()
5350
+ self._ComputerConfiguration._deserialize(params.get("ComputerConfiguration"))
5317
5351
  memeber_set = set(params.keys())
5318
5352
  for name, value in vars(self).items():
5319
5353
  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.164
3
+ Version: 3.1.169
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.164
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.169
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.169
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.164