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