tencentcloud-sdk-python-omics 3.0.1392__tar.gz → 3.0.1421__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 (16) hide show
  1. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/setup.py +1 -1
  3. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud/omics/v20221128/errorcodes.py +1 -1
  5. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud/omics/v20221128/models.py +61 -1
  6. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud/omics/v20221128/omics_client.py +1 -1
  7. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud_sdk_python_omics.egg-info/PKG-INFO +1 -1
  8. tencentcloud-sdk-python-omics-3.0.1421/tencentcloud_sdk_python_omics.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-omics-3.0.1392/tencentcloud_sdk_python_omics.egg-info/requires.txt +0 -1
  10. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/README.rst +0 -0
  11. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/setup.cfg +0 -0
  12. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud/omics/__init__.py +0 -0
  13. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud/omics/v20221128/__init__.py +0 -0
  14. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud_sdk_python_omics.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud_sdk_python_omics.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-omics-3.0.1392 → tencentcloud-sdk-python-omics-3.0.1421}/tencentcloud_sdk_python_omics.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-omics
3
- Version: 3.0.1392
3
+ Version: 3.0.1421
4
4
  Summary: Tencent Cloud Omics SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-omics',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1392"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1421,<4.0.0"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Omics SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1392'
17
+ __version__ = '3.0.1421'
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -347,12 +347,18 @@ class ClusterOption(AbstractModel):
347
347
  :type ResourceQuota: :class:`tencentcloud.omics.v20221128.models.ResourceQuota`
348
348
  :param _LimitRange: 限制范围。
349
349
  :type LimitRange: :class:`tencentcloud.omics.v20221128.models.LimitRange`
350
+ :param _SystemNodeInstanceType: 系统节点池实例规格。
351
+ :type SystemNodeInstanceType: str
352
+ :param _SystemNodeCount: 系统节点池实例数量。
353
+ :type SystemNodeCount: int
350
354
  """
351
355
  self._Zone = None
352
356
  self._Type = None
353
357
  self._ServiceCidr = None
354
358
  self._ResourceQuota = None
355
359
  self._LimitRange = None
360
+ self._SystemNodeInstanceType = None
361
+ self._SystemNodeCount = None
356
362
 
357
363
  @property
358
364
  def Zone(self):
@@ -410,6 +416,28 @@ class ClusterOption(AbstractModel):
410
416
  def LimitRange(self, LimitRange):
411
417
  self._LimitRange = LimitRange
412
418
 
419
+ @property
420
+ def SystemNodeInstanceType(self):
421
+ """系统节点池实例规格。
422
+ :rtype: str
423
+ """
424
+ return self._SystemNodeInstanceType
425
+
426
+ @SystemNodeInstanceType.setter
427
+ def SystemNodeInstanceType(self, SystemNodeInstanceType):
428
+ self._SystemNodeInstanceType = SystemNodeInstanceType
429
+
430
+ @property
431
+ def SystemNodeCount(self):
432
+ """系统节点池实例数量。
433
+ :rtype: int
434
+ """
435
+ return self._SystemNodeCount
436
+
437
+ @SystemNodeCount.setter
438
+ def SystemNodeCount(self, SystemNodeCount):
439
+ self._SystemNodeCount = SystemNodeCount
440
+
413
441
 
414
442
  def _deserialize(self, params):
415
443
  self._Zone = params.get("Zone")
@@ -421,6 +449,8 @@ class ClusterOption(AbstractModel):
421
449
  if params.get("LimitRange") is not None:
422
450
  self._LimitRange = LimitRange()
423
451
  self._LimitRange._deserialize(params.get("LimitRange"))
452
+ self._SystemNodeInstanceType = params.get("SystemNodeInstanceType")
453
+ self._SystemNodeCount = params.get("SystemNodeCount")
424
454
  memeber_set = set(params.keys())
425
455
  for name, value in vars(self).items():
426
456
  property_name = name[1:]
@@ -3389,6 +3419,10 @@ class ResourceIds(AbstractModel):
3389
3419
  :type CVMId: str
3390
3420
  :param _EKSId: 弹性容器集群ID。
3391
3421
  :type EKSId: str
3422
+ :param _TKEId: TKE容器集群ID。
3423
+ :type TKEId: str
3424
+ :param _TKESystemNodePoolId: TKE系统节点池ID。
3425
+ :type TKESystemNodePoolId: str
3392
3426
  """
3393
3427
  self._VPCId = None
3394
3428
  self._SubnetId = None
@@ -3398,6 +3432,8 @@ class ResourceIds(AbstractModel):
3398
3432
  self._CFSStorageType = None
3399
3433
  self._CVMId = None
3400
3434
  self._EKSId = None
3435
+ self._TKEId = None
3436
+ self._TKESystemNodePoolId = None
3401
3437
 
3402
3438
  @property
3403
3439
  def VPCId(self):
@@ -3491,6 +3527,28 @@ class ResourceIds(AbstractModel):
3491
3527
  def EKSId(self, EKSId):
3492
3528
  self._EKSId = EKSId
3493
3529
 
3530
+ @property
3531
+ def TKEId(self):
3532
+ """TKE容器集群ID。
3533
+ :rtype: str
3534
+ """
3535
+ return self._TKEId
3536
+
3537
+ @TKEId.setter
3538
+ def TKEId(self, TKEId):
3539
+ self._TKEId = TKEId
3540
+
3541
+ @property
3542
+ def TKESystemNodePoolId(self):
3543
+ """TKE系统节点池ID。
3544
+ :rtype: str
3545
+ """
3546
+ return self._TKESystemNodePoolId
3547
+
3548
+ @TKESystemNodePoolId.setter
3549
+ def TKESystemNodePoolId(self, TKESystemNodePoolId):
3550
+ self._TKESystemNodePoolId = TKESystemNodePoolId
3551
+
3494
3552
 
3495
3553
  def _deserialize(self, params):
3496
3554
  self._VPCId = params.get("VPCId")
@@ -3501,6 +3559,8 @@ class ResourceIds(AbstractModel):
3501
3559
  self._CFSStorageType = params.get("CFSStorageType")
3502
3560
  self._CVMId = params.get("CVMId")
3503
3561
  self._EKSId = params.get("EKSId")
3562
+ self._TKEId = params.get("TKEId")
3563
+ self._TKESystemNodePoolId = params.get("TKESystemNodePoolId")
3504
3564
  memeber_set = set(params.keys())
3505
3565
  for name, value in vars(self).items():
3506
3566
  property_name = name[1:]
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-omics
3
- Version: 3.0.1392
3
+ Version: 3.0.1421
4
4
  Summary: Tencent Cloud Omics SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.0.1421
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1392