tencentcloud-sdk-python-ags 3.1.125__tar.gz → 3.1.132__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.125 → tencentcloud_sdk_python_ags-3.1.132}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud/ags/v20250920/models.py +35 -20
  5. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud_sdk_python_ags.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ags-3.1.132/tencentcloud_sdk_python_ags.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ags-3.1.125/tencentcloud_sdk_python_ags.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud/ags/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud/ags/v20250920/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud/ags/v20250920/ags_client.py +0 -0
  13. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/tencentcloud_sdk_python_ags.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ags-3.1.125 → tencentcloud_sdk_python_ags-3.1.132}/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.125
3
+ Version: 3.1.132
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.125
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.132
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.125,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.132,<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.125'
17
+ __version__ = '3.1.132'
@@ -492,17 +492,20 @@ class CreatePreCacheImageTaskRequest(AbstractModel):
492
492
 
493
493
  def __init__(self):
494
494
  r"""
495
- :param _Image: 镜像地址
495
+ :param _Image: <p>镜像地址</p>
496
496
  :type Image: str
497
- :param _ImageRegistryType: 镜像仓库类型:`enterprise`、`personal`。
497
+ :param _ImageRegistryType: <p>镜像仓库类型:<code>enterprise</code>、<code>personal</code>、<code>custom</code></p><p>枚举值:</p><ul><li>enterprise: tcr 企业容器镜像服务</li><li>personal: ccr 个人容器镜像服务</li></ul>
498
498
  :type ImageRegistryType: str
499
+ :param _TimeoutMinutes: <p>预热超时时长</p>
500
+ :type TimeoutMinutes: int
499
501
  """
500
502
  self._Image = None
501
503
  self._ImageRegistryType = None
504
+ self._TimeoutMinutes = None
502
505
 
503
506
  @property
504
507
  def Image(self):
505
- r"""镜像地址
508
+ r"""<p>镜像地址</p>
506
509
  :rtype: str
507
510
  """
508
511
  return self._Image
@@ -513,7 +516,7 @@ class CreatePreCacheImageTaskRequest(AbstractModel):
513
516
 
514
517
  @property
515
518
  def ImageRegistryType(self):
516
- r"""镜像仓库类型:`enterprise`、`personal`。
519
+ r"""<p>镜像仓库类型:<code>enterprise</code>、<code>personal</code>、<code>custom</code></p><p>枚举值:</p><ul><li>enterprise: tcr 企业容器镜像服务</li><li>personal: ccr 个人容器镜像服务</li></ul>
517
520
  :rtype: str
518
521
  """
519
522
  return self._ImageRegistryType
@@ -522,10 +525,22 @@ class CreatePreCacheImageTaskRequest(AbstractModel):
522
525
  def ImageRegistryType(self, ImageRegistryType):
523
526
  self._ImageRegistryType = ImageRegistryType
524
527
 
528
+ @property
529
+ def TimeoutMinutes(self):
530
+ r"""<p>预热超时时长</p>
531
+ :rtype: int
532
+ """
533
+ return self._TimeoutMinutes
534
+
535
+ @TimeoutMinutes.setter
536
+ def TimeoutMinutes(self, TimeoutMinutes):
537
+ self._TimeoutMinutes = TimeoutMinutes
538
+
525
539
 
526
540
  def _deserialize(self, params):
527
541
  self._Image = params.get("Image")
528
542
  self._ImageRegistryType = params.get("ImageRegistryType")
543
+ self._TimeoutMinutes = params.get("TimeoutMinutes")
529
544
  memeber_set = set(params.keys())
530
545
  for name, value in vars(self).items():
531
546
  property_name = name[1:]
@@ -543,11 +558,11 @@ class CreatePreCacheImageTaskResponse(AbstractModel):
543
558
 
544
559
  def __init__(self):
545
560
  r"""
546
- :param _Image: 镜像地址
561
+ :param _Image: <p>镜像地址</p>
547
562
  :type Image: str
548
- :param _ImageDigest: 镜像 Digest
563
+ :param _ImageDigest: <p>镜像 Digest</p>
549
564
  :type ImageDigest: str
550
- :param _ImageRegistryType: 镜像仓库类型:`enterprise`、`personal`。
565
+ :param _ImageRegistryType: <p>镜像仓库类型:<code>enterprise</code>、<code>personal</code>。</p>
551
566
  :type ImageRegistryType: str
552
567
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
553
568
  :type RequestId: str
@@ -559,7 +574,7 @@ class CreatePreCacheImageTaskResponse(AbstractModel):
559
574
 
560
575
  @property
561
576
  def Image(self):
562
- r"""镜像地址
577
+ r"""<p>镜像地址</p>
563
578
  :rtype: str
564
579
  """
565
580
  return self._Image
@@ -570,7 +585,7 @@ class CreatePreCacheImageTaskResponse(AbstractModel):
570
585
 
571
586
  @property
572
587
  def ImageDigest(self):
573
- r"""镜像 Digest
588
+ r"""<p>镜像 Digest</p>
574
589
  :rtype: str
575
590
  """
576
591
  return self._ImageDigest
@@ -581,7 +596,7 @@ class CreatePreCacheImageTaskResponse(AbstractModel):
581
596
 
582
597
  @property
583
598
  def ImageRegistryType(self):
584
- r"""镜像仓库类型:`enterprise`、`personal`。
599
+ r"""<p>镜像仓库类型:<code>enterprise</code>、<code>personal</code>。</p>
585
600
  :rtype: str
586
601
  """
587
602
  return self._ImageRegistryType
@@ -3999,15 +4014,15 @@ class UpdateSandboxToolRequest(AbstractModel):
3999
4014
 
4000
4015
  def __init__(self):
4001
4016
  r"""
4002
- :param _ToolId: 沙箱工具ID
4017
+ :param _ToolId: <p>沙箱工具ID</p>
4003
4018
  :type ToolId: str
4004
- :param _Description: 沙箱工具描述,最大长度200字符
4019
+ :param _Description: <p>沙箱工具描述,最大长度200字符</p>
4005
4020
  :type Description: str
4006
- :param _NetworkConfiguration: 网络配置
4021
+ :param _NetworkConfiguration: <p>网络配置</p>
4007
4022
  :type NetworkConfiguration: :class:`tencentcloud.ags.v20250920.models.NetworkConfiguration`
4008
- :param _Tags: 标签
4023
+ :param _Tags: <p>标签</p>
4009
4024
  :type Tags: list of Tag
4010
- :param _CustomConfiguration: 沙箱工具自定义配置
4025
+ :param _CustomConfiguration: <p>沙箱工具自定义配置</p>
4011
4026
  :type CustomConfiguration: :class:`tencentcloud.ags.v20250920.models.CustomConfiguration`
4012
4027
  """
4013
4028
  self._ToolId = None
@@ -4018,7 +4033,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4018
4033
 
4019
4034
  @property
4020
4035
  def ToolId(self):
4021
- r"""沙箱工具ID
4036
+ r"""<p>沙箱工具ID</p>
4022
4037
  :rtype: str
4023
4038
  """
4024
4039
  return self._ToolId
@@ -4029,7 +4044,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4029
4044
 
4030
4045
  @property
4031
4046
  def Description(self):
4032
- r"""沙箱工具描述,最大长度200字符
4047
+ r"""<p>沙箱工具描述,最大长度200字符</p>
4033
4048
  :rtype: str
4034
4049
  """
4035
4050
  return self._Description
@@ -4040,7 +4055,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4040
4055
 
4041
4056
  @property
4042
4057
  def NetworkConfiguration(self):
4043
- r"""网络配置
4058
+ r"""<p>网络配置</p>
4044
4059
  :rtype: :class:`tencentcloud.ags.v20250920.models.NetworkConfiguration`
4045
4060
  """
4046
4061
  return self._NetworkConfiguration
@@ -4051,7 +4066,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4051
4066
 
4052
4067
  @property
4053
4068
  def Tags(self):
4054
- r"""标签
4069
+ r"""<p>标签</p>
4055
4070
  :rtype: list of Tag
4056
4071
  """
4057
4072
  return self._Tags
@@ -4062,7 +4077,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4062
4077
 
4063
4078
  @property
4064
4079
  def CustomConfiguration(self):
4065
- r"""沙箱工具自定义配置
4080
+ r"""<p>沙箱工具自定义配置</p>
4066
4081
  :rtype: :class:`tencentcloud.ags.v20250920.models.CustomConfiguration`
4067
4082
  """
4068
4083
  return self._CustomConfiguration
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ags
3
- Version: 3.1.125
3
+ Version: 3.1.132
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.125
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.132
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.132
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.125