tencentcloud-sdk-python 3.0.1060__py2.py3-none-any.whl → 3.0.1063__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/billing/v20180709/models.py +27 -0
- tencentcloud/cat/v20180409/models.py +14 -2
- tencentcloud/cbs/v20170312/models.py +4 -4
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +322 -0
- tencentcloud/cdwdoris/v20211228/models.py +3747 -882
- tencentcloud/cls/v20201016/models.py +1 -1
- tencentcloud/cwp/v20180228/models.py +9 -15
- tencentcloud/dts/v20211206/models.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +65 -9
- tencentcloud/ess/v20201111/models.py +297 -39
- tencentcloud/essbasic/v20210526/essbasic_client.py +46 -6
- tencentcloud/essbasic/v20210526/models.py +308 -35
- tencentcloud/faceid/v20180301/models.py +2 -2
- tencentcloud/iotcloud/v20210408/errorcodes.py +3 -0
- tencentcloud/iss/v20230517/errorcodes.py +6 -0
- tencentcloud/iss/v20230517/models.py +20 -8
- tencentcloud/ivld/v20210903/models.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +166 -8
- tencentcloud/mongodb/v20190725/mongodb_client.py +1 -1
- tencentcloud/omics/v20221128/models.py +55 -2
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +6 -6
- tencentcloud/ssm/v20190923/models.py +2 -2
- tencentcloud/tcb/v20180608/models.py +3 -3
- tencentcloud/teo/v20220901/errorcodes.py +15 -0
- tencentcloud/tione/v20211111/errorcodes.py +6 -0
- tencentcloud/tke/v20180525/models.py +97 -1
- tencentcloud/tsf/v20180326/models.py +1 -1
- tencentcloud/tsf/v20180326/tsf_client.py +1 -1
- tencentcloud/vod/v20180717/models.py +165 -166
- tencentcloud/vod/v20180717/vod_client.py +2 -1
- tencentcloud/vpc/v20170312/models.py +36 -0
- tencentcloud/waf/v20180125/models.py +13 -0
- tencentcloud/wedata/v20210820/models.py +1353 -0
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- tencentcloud/yinsuda/v20220527/models.py +431 -0
- tencentcloud/yinsuda/v20220527/yinsuda_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1060.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1060.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/RECORD +42 -42
- {tencentcloud_sdk_python-3.0.1060.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1060.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1060.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/top_level.txt +0 -0
|
@@ -663,6 +663,51 @@ class Addon(AbstractModel):
|
|
|
663
663
|
|
|
664
664
|
|
|
665
665
|
|
|
666
|
+
class AnnotationValue(AbstractModel):
|
|
667
|
+
"""注释
|
|
668
|
+
|
|
669
|
+
"""
|
|
670
|
+
|
|
671
|
+
def __init__(self):
|
|
672
|
+
r"""
|
|
673
|
+
:param _Name: 注释键
|
|
674
|
+
:type Name: str
|
|
675
|
+
:param _Value: 注释值
|
|
676
|
+
:type Value: str
|
|
677
|
+
"""
|
|
678
|
+
self._Name = None
|
|
679
|
+
self._Value = None
|
|
680
|
+
|
|
681
|
+
@property
|
|
682
|
+
def Name(self):
|
|
683
|
+
return self._Name
|
|
684
|
+
|
|
685
|
+
@Name.setter
|
|
686
|
+
def Name(self, Name):
|
|
687
|
+
self._Name = Name
|
|
688
|
+
|
|
689
|
+
@property
|
|
690
|
+
def Value(self):
|
|
691
|
+
return self._Value
|
|
692
|
+
|
|
693
|
+
@Value.setter
|
|
694
|
+
def Value(self, Value):
|
|
695
|
+
self._Value = Value
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
def _deserialize(self, params):
|
|
699
|
+
self._Name = params.get("Name")
|
|
700
|
+
self._Value = params.get("Value")
|
|
701
|
+
memeber_set = set(params.keys())
|
|
702
|
+
for name, value in vars(self).items():
|
|
703
|
+
property_name = name[1:]
|
|
704
|
+
if property_name in memeber_set:
|
|
705
|
+
memeber_set.remove(property_name)
|
|
706
|
+
if len(memeber_set) > 0:
|
|
707
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
|
|
666
711
|
class AppChart(AbstractModel):
|
|
667
712
|
"""app所支持的chart
|
|
668
713
|
|
|
@@ -4771,7 +4816,7 @@ class CreateClusterNodePoolRequest(AbstractModel):
|
|
|
4771
4816
|
:type AutoScalingGroupPara: str
|
|
4772
4817
|
:param _LaunchConfigurePara: LaunchConfigurePara 运行参数,参考 https://cloud.tencent.com/document/product/377/20447
|
|
4773
4818
|
:type LaunchConfigurePara: str
|
|
4774
|
-
:param _InstanceAdvancedSettings: InstanceAdvancedSettings
|
|
4819
|
+
:param _InstanceAdvancedSettings: InstanceAdvancedSettings
|
|
4775
4820
|
:type InstanceAdvancedSettings: :class:`tencentcloud.tke.v20180525.models.InstanceAdvancedSettings`
|
|
4776
4821
|
:param _EnableAutoscale: 是否启用自动伸缩
|
|
4777
4822
|
:type EnableAutoscale: bool
|
|
@@ -4781,6 +4826,8 @@ class CreateClusterNodePoolRequest(AbstractModel):
|
|
|
4781
4826
|
:type Labels: list of Label
|
|
4782
4827
|
:param _Taints: Taints互斥
|
|
4783
4828
|
:type Taints: list of Taint
|
|
4829
|
+
:param _Annotations: 节点Annotation 列表
|
|
4830
|
+
:type Annotations: list of AnnotationValue
|
|
4784
4831
|
:param _ContainerRuntime: 节点池纬度运行时类型及版本
|
|
4785
4832
|
:type ContainerRuntime: str
|
|
4786
4833
|
:param _RuntimeVersion: 运行时版本
|
|
@@ -4802,6 +4849,7 @@ class CreateClusterNodePoolRequest(AbstractModel):
|
|
|
4802
4849
|
self._Name = None
|
|
4803
4850
|
self._Labels = None
|
|
4804
4851
|
self._Taints = None
|
|
4852
|
+
self._Annotations = None
|
|
4805
4853
|
self._ContainerRuntime = None
|
|
4806
4854
|
self._RuntimeVersion = None
|
|
4807
4855
|
self._NodePoolOs = None
|
|
@@ -4873,6 +4921,14 @@ class CreateClusterNodePoolRequest(AbstractModel):
|
|
|
4873
4921
|
def Taints(self, Taints):
|
|
4874
4922
|
self._Taints = Taints
|
|
4875
4923
|
|
|
4924
|
+
@property
|
|
4925
|
+
def Annotations(self):
|
|
4926
|
+
return self._Annotations
|
|
4927
|
+
|
|
4928
|
+
@Annotations.setter
|
|
4929
|
+
def Annotations(self, Annotations):
|
|
4930
|
+
self._Annotations = Annotations
|
|
4931
|
+
|
|
4876
4932
|
@property
|
|
4877
4933
|
def ContainerRuntime(self):
|
|
4878
4934
|
return self._ContainerRuntime
|
|
@@ -4943,6 +4999,12 @@ class CreateClusterNodePoolRequest(AbstractModel):
|
|
|
4943
4999
|
obj = Taint()
|
|
4944
5000
|
obj._deserialize(item)
|
|
4945
5001
|
self._Taints.append(obj)
|
|
5002
|
+
if params.get("Annotations") is not None:
|
|
5003
|
+
self._Annotations = []
|
|
5004
|
+
for item in params.get("Annotations"):
|
|
5005
|
+
obj = AnnotationValue()
|
|
5006
|
+
obj._deserialize(item)
|
|
5007
|
+
self._Annotations.append(obj)
|
|
4946
5008
|
self._ContainerRuntime = params.get("ContainerRuntime")
|
|
4947
5009
|
self._RuntimeVersion = params.get("RuntimeVersion")
|
|
4948
5010
|
self._NodePoolOs = params.get("NodePoolOs")
|
|
@@ -27988,6 +28050,8 @@ class ModifyClusterNodePoolRequest(AbstractModel):
|
|
|
27988
28050
|
:type Labels: list of Label
|
|
27989
28051
|
:param _Taints: 污点
|
|
27990
28052
|
:type Taints: list of Taint
|
|
28053
|
+
:param _Annotations: 节点 Annotation 列表
|
|
28054
|
+
:type Annotations: list of AnnotationValue
|
|
27991
28055
|
:param _EnableAutoscale: 是否开启伸缩
|
|
27992
28056
|
:type EnableAutoscale: bool
|
|
27993
28057
|
:param _OsName: 操作系统名称
|
|
@@ -28020,6 +28084,7 @@ class ModifyClusterNodePoolRequest(AbstractModel):
|
|
|
28020
28084
|
self._MinNodesNum = None
|
|
28021
28085
|
self._Labels = None
|
|
28022
28086
|
self._Taints = None
|
|
28087
|
+
self._Annotations = None
|
|
28023
28088
|
self._EnableAutoscale = None
|
|
28024
28089
|
self._OsName = None
|
|
28025
28090
|
self._OsCustomizeType = None
|
|
@@ -28089,6 +28154,14 @@ class ModifyClusterNodePoolRequest(AbstractModel):
|
|
|
28089
28154
|
def Taints(self, Taints):
|
|
28090
28155
|
self._Taints = Taints
|
|
28091
28156
|
|
|
28157
|
+
@property
|
|
28158
|
+
def Annotations(self):
|
|
28159
|
+
return self._Annotations
|
|
28160
|
+
|
|
28161
|
+
@Annotations.setter
|
|
28162
|
+
def Annotations(self, Annotations):
|
|
28163
|
+
self._Annotations = Annotations
|
|
28164
|
+
|
|
28092
28165
|
@property
|
|
28093
28166
|
def EnableAutoscale(self):
|
|
28094
28167
|
return self._EnableAutoscale
|
|
@@ -28204,6 +28277,12 @@ class ModifyClusterNodePoolRequest(AbstractModel):
|
|
|
28204
28277
|
obj = Taint()
|
|
28205
28278
|
obj._deserialize(item)
|
|
28206
28279
|
self._Taints.append(obj)
|
|
28280
|
+
if params.get("Annotations") is not None:
|
|
28281
|
+
self._Annotations = []
|
|
28282
|
+
for item in params.get("Annotations"):
|
|
28283
|
+
obj = AnnotationValue()
|
|
28284
|
+
obj._deserialize(item)
|
|
28285
|
+
self._Annotations.append(obj)
|
|
28207
28286
|
self._EnableAutoscale = params.get("EnableAutoscale")
|
|
28208
28287
|
self._OsName = params.get("OsName")
|
|
28209
28288
|
self._OsCustomizeType = params.get("OsCustomizeType")
|
|
@@ -29441,6 +29520,8 @@ class NodePool(AbstractModel):
|
|
|
29441
29520
|
:type Labels: list of Label
|
|
29442
29521
|
:param _Taints: Taints 污点标记
|
|
29443
29522
|
:type Taints: list of Taint
|
|
29523
|
+
:param _Annotations: 节点 Annotation 列表
|
|
29524
|
+
:type Annotations: list of AnnotationValue
|
|
29444
29525
|
:param _NodeCountSummary: NodeCountSummary 节点列表
|
|
29445
29526
|
:type NodeCountSummary: :class:`tencentcloud.tke.v20180525.models.NodeCountSummary`
|
|
29446
29527
|
:param _AutoscalingGroupStatus: 状态信息
|
|
@@ -29503,6 +29584,7 @@ class NodePool(AbstractModel):
|
|
|
29503
29584
|
self._AutoscalingGroupId = None
|
|
29504
29585
|
self._Labels = None
|
|
29505
29586
|
self._Taints = None
|
|
29587
|
+
self._Annotations = None
|
|
29506
29588
|
self._NodeCountSummary = None
|
|
29507
29589
|
self._AutoscalingGroupStatus = None
|
|
29508
29590
|
self._MaxNodesNum = None
|
|
@@ -29586,6 +29668,14 @@ class NodePool(AbstractModel):
|
|
|
29586
29668
|
def Taints(self, Taints):
|
|
29587
29669
|
self._Taints = Taints
|
|
29588
29670
|
|
|
29671
|
+
@property
|
|
29672
|
+
def Annotations(self):
|
|
29673
|
+
return self._Annotations
|
|
29674
|
+
|
|
29675
|
+
@Annotations.setter
|
|
29676
|
+
def Annotations(self, Annotations):
|
|
29677
|
+
self._Annotations = Annotations
|
|
29678
|
+
|
|
29589
29679
|
@property
|
|
29590
29680
|
def NodeCountSummary(self):
|
|
29591
29681
|
return self._NodeCountSummary
|
|
@@ -29750,6 +29840,12 @@ class NodePool(AbstractModel):
|
|
|
29750
29840
|
obj = Taint()
|
|
29751
29841
|
obj._deserialize(item)
|
|
29752
29842
|
self._Taints.append(obj)
|
|
29843
|
+
if params.get("Annotations") is not None:
|
|
29844
|
+
self._Annotations = []
|
|
29845
|
+
for item in params.get("Annotations"):
|
|
29846
|
+
obj = AnnotationValue()
|
|
29847
|
+
obj._deserialize(item)
|
|
29848
|
+
self._Annotations.append(obj)
|
|
29753
29849
|
if params.get("NodeCountSummary") is not None:
|
|
29754
29850
|
self._NodeCountSummary = NodeCountSummary()
|
|
29755
29851
|
self._NodeCountSummary._deserialize(params.get("NodeCountSummary"))
|
|
@@ -6512,7 +6512,7 @@ class ContinueRunFailedTaskBatchResponse(AbstractModel):
|
|
|
6512
6512
|
|
|
6513
6513
|
def __init__(self):
|
|
6514
6514
|
r"""
|
|
6515
|
-
:param _Result:
|
|
6515
|
+
:param _Result: true:操作成功、false:操作失败
|
|
6516
6516
|
:type Result: bool
|
|
6517
6517
|
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6518
6518
|
:type RequestId: str
|
|
@@ -395,7 +395,7 @@ class TsfClient(AbstractClient):
|
|
|
395
395
|
|
|
396
396
|
|
|
397
397
|
def CreateConfigTemplateWithDetailResp(self, request):
|
|
398
|
-
"""
|
|
398
|
+
"""创建参数模板,并返回模板详细信息
|
|
399
399
|
|
|
400
400
|
:param request: Request instance for CreateConfigTemplateWithDetailResp.
|
|
401
401
|
:type request: :class:`tencentcloud.tsf.v20180326.models.CreateConfigTemplateWithDetailRespRequest`
|