tencentcloud-sdk-python-tke 3.1.32__tar.gz → 3.1.35__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 (22) hide show
  1. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/setup.py +1 -1
  3. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20180525/models.py +80 -12
  5. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud_sdk_python_tke.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_tke-3.1.35/tencentcloud_sdk_python_tke.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_tke-3.1.32/tencentcloud_sdk_python_tke.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/README.rst +0 -0
  9. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/__init__.py +0 -0
  11. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20180525/__init__.py +0 -0
  12. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20180525/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20180525/tke_client.py +0 -0
  14. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20180525/tke_client_async.py +0 -0
  15. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20220501/__init__.py +0 -0
  16. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20220501/errorcodes.py +0 -0
  17. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20220501/models.py +0 -0
  18. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20220501/tke_client.py +0 -0
  19. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud/tke/v20220501/tke_client_async.py +0 -0
  20. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud_sdk_python_tke.egg-info/SOURCES.txt +0 -0
  21. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud_sdk_python_tke.egg-info/dependency_links.txt +0 -0
  22. {tencentcloud_sdk_python_tke-3.1.32 → tencentcloud_sdk_python_tke-3.1.35}/tencentcloud_sdk_python_tke.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tke
3
- Version: 3.1.32
3
+ Version: 3.1.35
4
4
  Summary: Tencent Cloud Tke 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.32
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.35
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-tke',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.32,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.35,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Tke SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.32'
17
+ __version__ = '3.1.35'
@@ -6209,13 +6209,21 @@ class CreateClusterMaintenanceWindowAndExclusionsRequest(AbstractModel):
6209
6209
 
6210
6210
  def __init__(self):
6211
6211
  r"""
6212
- :param _ClusterID: 集群ID
6212
+ :param _ClusterID: 集群ID,可以从容器服务集群控制台获取(https://console.cloud.tencent.com/tke2/cluster)。
6213
6213
  :type ClusterID: str
6214
6214
  :param _MaintenanceTime: 维护开始时间
6215
6215
  :type MaintenanceTime: str
6216
6216
  :param _Duration: 维护时长(小时)
6217
6217
  :type Duration: int
6218
- :param _DayOfWeek: 维护周期(一周中的哪几天)
6218
+ :param _DayOfWeek: 维护周期(一周中的哪几天),支持的参数值如下:
6219
+
6220
+ - MO:周一
6221
+ - TU:周二
6222
+ - WE:周三
6223
+ - TH:周四
6224
+ - FR:周五
6225
+ - SA:周六
6226
+ - SU:周日
6219
6227
  :type DayOfWeek: list of str
6220
6228
  :param _Exclusions: 维护排除项
6221
6229
  :type Exclusions: list of MaintenanceExclusion
@@ -6228,7 +6236,7 @@ class CreateClusterMaintenanceWindowAndExclusionsRequest(AbstractModel):
6228
6236
 
6229
6237
  @property
6230
6238
  def ClusterID(self):
6231
- r"""集群ID
6239
+ r"""集群ID,可以从容器服务集群控制台获取(https://console.cloud.tencent.com/tke2/cluster)。
6232
6240
  :rtype: str
6233
6241
  """
6234
6242
  return self._ClusterID
@@ -6261,7 +6269,15 @@ class CreateClusterMaintenanceWindowAndExclusionsRequest(AbstractModel):
6261
6269
 
6262
6270
  @property
6263
6271
  def DayOfWeek(self):
6264
- r"""维护周期(一周中的哪几天)
6272
+ r"""维护周期(一周中的哪几天),支持的参数值如下:
6273
+
6274
+ - MO:周一
6275
+ - TU:周二
6276
+ - WE:周三
6277
+ - TH:周四
6278
+ - FR:周五
6279
+ - SA:周六
6280
+ - SU:周日
6265
6281
  :rtype: list of str
6266
6282
  """
6267
6283
  return self._DayOfWeek
@@ -11714,14 +11730,14 @@ class DeleteClusterMaintenanceWindowAndExclusionRequest(AbstractModel):
11714
11730
 
11715
11731
  def __init__(self):
11716
11732
  r"""
11717
- :param _ClusterID: 集群ID
11733
+ :param _ClusterID: 集群ID,可以从容器服务控制台计划升级功能集群维护窗口页面获取(https://console.cloud.tencent.com/tke2/upgrade-plan)。
11718
11734
  :type ClusterID: str
11719
11735
  """
11720
11736
  self._ClusterID = None
11721
11737
 
11722
11738
  @property
11723
11739
  def ClusterID(self):
11724
- r"""集群ID
11740
+ r"""集群ID,可以从容器服务控制台计划升级功能集群维护窗口页面获取(https://console.cloud.tencent.com/tke2/upgrade-plan)。
11725
11741
  :rtype: str
11726
11742
  """
11727
11743
  return self._ClusterID
@@ -37228,7 +37244,15 @@ class ModifyClusterMaintenanceWindowAndExclusionsRequest(AbstractModel):
37228
37244
  :type MaintenanceTime: str
37229
37245
  :param _Duration: 维护时长(小时)
37230
37246
  :type Duration: int
37231
- :param _DayOfWeek: 维护周期(一周中的哪几天)
37247
+ :param _DayOfWeek: 维护周期(一周中的哪几天),支持的参数值如下:
37248
+
37249
+ - MO:周一
37250
+ - TU:周二
37251
+ - WE:周三
37252
+ - TH:周四
37253
+ - FR:周五
37254
+ - SA:周六
37255
+ - SU:周日
37232
37256
  :type DayOfWeek: list of str
37233
37257
  :param _Exclusions: 维护排除项
37234
37258
  :type Exclusions: list of MaintenanceExclusion
@@ -37274,7 +37298,15 @@ class ModifyClusterMaintenanceWindowAndExclusionsRequest(AbstractModel):
37274
37298
 
37275
37299
  @property
37276
37300
  def DayOfWeek(self):
37277
- r"""维护周期(一周中的哪几天)
37301
+ r"""维护周期(一周中的哪几天),支持的参数值如下:
37302
+
37303
+ - MO:周一
37304
+ - TU:周二
37305
+ - WE:周三
37306
+ - TH:周四
37307
+ - FR:周五
37308
+ - SA:周六
37309
+ - SU:周日
37278
37310
  :rtype: list of str
37279
37311
  """
37280
37312
  return self._DayOfWeek
@@ -37724,9 +37756,11 @@ class ModifyClusterRollOutSequenceTagsRequest(AbstractModel):
37724
37756
 
37725
37757
  def __init__(self):
37726
37758
  r"""
37727
- :param _ClusterID: 集群ID
37759
+ :param _ClusterID: 集群ID,可以从容器服务集群控制台获取(https://console.cloud.tencent.com/tke2/cluster)。
37728
37760
  :type ClusterID: str
37729
- :param _Tags: 集群发布序列标签(为空时表示移除集群标签)
37761
+ :param _Tags: 集群发布序列标签(为空时表示移除集群标签)。支持以下集群标签:
37762
+ - 标签键:"Env",支持的标签值:["Test","Pre-Production","Production"]
37763
+ - 标签键:"Protection-Level",支持的标签值:["Low","Medium","High"]
37730
37764
  :type Tags: list of Tag
37731
37765
  """
37732
37766
  self._ClusterID = None
@@ -37734,7 +37768,7 @@ class ModifyClusterRollOutSequenceTagsRequest(AbstractModel):
37734
37768
 
37735
37769
  @property
37736
37770
  def ClusterID(self):
37737
- r"""集群ID
37771
+ r"""集群ID,可以从容器服务集群控制台获取(https://console.cloud.tencent.com/tke2/cluster)。
37738
37772
  :rtype: str
37739
37773
  """
37740
37774
  return self._ClusterID
@@ -37745,7 +37779,9 @@ class ModifyClusterRollOutSequenceTagsRequest(AbstractModel):
37745
37779
 
37746
37780
  @property
37747
37781
  def Tags(self):
37748
- r"""集群发布序列标签(为空时表示移除集群标签)
37782
+ r"""集群发布序列标签(为空时表示移除集群标签)。支持以下集群标签:
37783
+ - 标签键:"Env",支持的标签值:["Test","Pre-Production","Production"]
37784
+ - 标签键:"Protection-Level",支持的标签值:["Low","Medium","High"]
37749
37785
  :rtype: list of Tag
37750
37786
  """
37751
37787
  return self._Tags
@@ -52916,6 +52952,8 @@ class UpgradePlan(AbstractModel):
52916
52952
  :type ClusterID: str
52917
52953
  :param _ClusterName: 集群名称
52918
52954
  :type ClusterName: str
52955
+ :param _Region: 集群地域
52956
+ :type Region: str
52919
52957
  :param _PlanedStartAt: 预计开始时间
52920
52958
  :type PlanedStartAt: str
52921
52959
  :param _UpgradeStartAt: 升级开始时间
@@ -52930,6 +52968,7 @@ class UpgradePlan(AbstractModel):
52930
52968
  self._ID = None
52931
52969
  self._ClusterID = None
52932
52970
  self._ClusterName = None
52971
+ self._Region = None
52933
52972
  self._PlanedStartAt = None
52934
52973
  self._UpgradeStartAt = None
52935
52974
  self._UpgradeEndAt = None
@@ -52969,6 +53008,17 @@ class UpgradePlan(AbstractModel):
52969
53008
  def ClusterName(self, ClusterName):
52970
53009
  self._ClusterName = ClusterName
52971
53010
 
53011
+ @property
53012
+ def Region(self):
53013
+ r"""集群地域
53014
+ :rtype: str
53015
+ """
53016
+ return self._Region
53017
+
53018
+ @Region.setter
53019
+ def Region(self, Region):
53020
+ self._Region = Region
53021
+
52972
53022
  @property
52973
53023
  def PlanedStartAt(self):
52974
53024
  r"""预计开始时间
@@ -53029,6 +53079,7 @@ class UpgradePlan(AbstractModel):
53029
53079
  self._ID = params.get("ID")
53030
53080
  self._ClusterID = params.get("ClusterID")
53031
53081
  self._ClusterName = params.get("ClusterName")
53082
+ self._Region = params.get("Region")
53032
53083
  self._PlanedStartAt = params.get("PlanedStartAt")
53033
53084
  self._UpgradeStartAt = params.get("UpgradeStartAt")
53034
53085
  self._UpgradeEndAt = params.get("UpgradeEndAt")
@@ -53463,10 +53514,13 @@ class VirtualNodeSpec(AbstractModel):
53463
53514
  :type SubnetId: str
53464
53515
  :param _Tags: 腾讯云标签
53465
53516
  :type Tags: list of Tag
53517
+ :param _Quota: 按量配额
53518
+ :type Quota: :class:`tencentcloud.tke.v20180525.models.SuperNodeResource`
53466
53519
  """
53467
53520
  self._DisplayName = None
53468
53521
  self._SubnetId = None
53469
53522
  self._Tags = None
53523
+ self._Quota = None
53470
53524
 
53471
53525
  @property
53472
53526
  def DisplayName(self):
@@ -53501,6 +53555,17 @@ class VirtualNodeSpec(AbstractModel):
53501
53555
  def Tags(self, Tags):
53502
53556
  self._Tags = Tags
53503
53557
 
53558
+ @property
53559
+ def Quota(self):
53560
+ r"""按量配额
53561
+ :rtype: :class:`tencentcloud.tke.v20180525.models.SuperNodeResource`
53562
+ """
53563
+ return self._Quota
53564
+
53565
+ @Quota.setter
53566
+ def Quota(self, Quota):
53567
+ self._Quota = Quota
53568
+
53504
53569
 
53505
53570
  def _deserialize(self, params):
53506
53571
  self._DisplayName = params.get("DisplayName")
@@ -53511,6 +53576,9 @@ class VirtualNodeSpec(AbstractModel):
53511
53576
  obj = Tag()
53512
53577
  obj._deserialize(item)
53513
53578
  self._Tags.append(obj)
53579
+ if params.get("Quota") is not None:
53580
+ self._Quota = SuperNodeResource()
53581
+ self._Quota._deserialize(params.get("Quota"))
53514
53582
  memeber_set = set(params.keys())
53515
53583
  for name, value in vars(self).items():
53516
53584
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tke
3
- Version: 3.1.32
3
+ Version: 3.1.35
4
4
  Summary: Tencent Cloud Tke 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.32
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.35
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.35
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.32