tencentcloud-sdk-python-ags 3.1.40__tar.gz → 3.1.45__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.40 → tencentcloud_sdk_python_ags-3.1.45}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud/ags/v20250920/models.py +68 -0
  5. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud_sdk_python_ags.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ags-3.1.45/tencentcloud_sdk_python_ags.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ags-3.1.40/tencentcloud_sdk_python_ags.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud/ags/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud/ags/v20250920/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud/ags/v20250920/ags_client.py +0 -0
  13. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/tencentcloud_sdk_python_ags.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ags-3.1.40 → tencentcloud_sdk_python_ags-3.1.45}/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.40
3
+ Version: 3.1.45
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.40
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.45
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.40,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.45,<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.40'
17
+ __version__ = '3.1.45'
@@ -208,6 +208,57 @@ class AcquireSandboxInstanceTokenResponse(AbstractModel):
208
208
  self._RequestId = params.get("RequestId")
209
209
 
210
210
 
211
+ class CfsStorageSource(AbstractModel):
212
+ r"""文件存储配置
213
+
214
+ """
215
+
216
+ def __init__(self):
217
+ r"""
218
+ :param _FileSystemId: CFS资源ID
219
+ :type FileSystemId: str
220
+ :param _Path: CFS挂载路径
221
+ :type Path: str
222
+ """
223
+ self._FileSystemId = None
224
+ self._Path = None
225
+
226
+ @property
227
+ def FileSystemId(self):
228
+ r"""CFS资源ID
229
+ :rtype: str
230
+ """
231
+ return self._FileSystemId
232
+
233
+ @FileSystemId.setter
234
+ def FileSystemId(self, FileSystemId):
235
+ self._FileSystemId = FileSystemId
236
+
237
+ @property
238
+ def Path(self):
239
+ r"""CFS挂载路径
240
+ :rtype: str
241
+ """
242
+ return self._Path
243
+
244
+ @Path.setter
245
+ def Path(self, Path):
246
+ self._Path = Path
247
+
248
+
249
+ def _deserialize(self, params):
250
+ self._FileSystemId = params.get("FileSystemId")
251
+ self._Path = params.get("Path")
252
+ memeber_set = set(params.keys())
253
+ for name, value in vars(self).items():
254
+ property_name = name[1:]
255
+ if property_name in memeber_set:
256
+ memeber_set.remove(property_name)
257
+ if len(memeber_set) > 0:
258
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
259
+
260
+
261
+
211
262
  class CosStorageSource(AbstractModel):
212
263
  r"""沙箱实例对象存储挂载配置
213
264
 
@@ -3224,9 +3275,12 @@ class StorageSource(AbstractModel):
3224
3275
  :type Cos: :class:`tencentcloud.ags.v20250920.models.CosStorageSource`
3225
3276
  :param _Image: 镜像卷配置
3226
3277
  :type Image: :class:`tencentcloud.ags.v20250920.models.ImageStorageSource`
3278
+ :param _Cfs: 文件存储配置
3279
+ :type Cfs: :class:`tencentcloud.ags.v20250920.models.CfsStorageSource`
3227
3280
  """
3228
3281
  self._Cos = None
3229
3282
  self._Image = None
3283
+ self._Cfs = None
3230
3284
 
3231
3285
  @property
3232
3286
  def Cos(self):
@@ -3250,6 +3304,17 @@ class StorageSource(AbstractModel):
3250
3304
  def Image(self, Image):
3251
3305
  self._Image = Image
3252
3306
 
3307
+ @property
3308
+ def Cfs(self):
3309
+ r"""文件存储配置
3310
+ :rtype: :class:`tencentcloud.ags.v20250920.models.CfsStorageSource`
3311
+ """
3312
+ return self._Cfs
3313
+
3314
+ @Cfs.setter
3315
+ def Cfs(self, Cfs):
3316
+ self._Cfs = Cfs
3317
+
3253
3318
 
3254
3319
  def _deserialize(self, params):
3255
3320
  if params.get("Cos") is not None:
@@ -3258,6 +3323,9 @@ class StorageSource(AbstractModel):
3258
3323
  if params.get("Image") is not None:
3259
3324
  self._Image = ImageStorageSource()
3260
3325
  self._Image._deserialize(params.get("Image"))
3326
+ if params.get("Cfs") is not None:
3327
+ self._Cfs = CfsStorageSource()
3328
+ self._Cfs._deserialize(params.get("Cfs"))
3261
3329
  memeber_set = set(params.keys())
3262
3330
  for name, value in vars(self).items():
3263
3331
  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.40
3
+ Version: 3.1.45
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.40
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.45
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.45
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.40