tencentcloud-sdk-python 3.0.1328__py2.py3-none-any.whl → 3.0.1330__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ams/v20201229/models.py +157 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/batch/v20170312/models.py +2 -26
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cfw/v20190904/cfw_client.py +9 -3
- tencentcloud/clb/v20180317/models.py +45 -0
- tencentcloud/cvm/v20170312/models.py +22 -38
- tencentcloud/cynosdb/v20190107/models.py +23 -4
- tencentcloud/dlc/v20210125/models.py +0 -10
- tencentcloud/emr/v20190103/models.py +4 -4
- tencentcloud/ess/v20201111/ess_client.py +27 -0
- tencentcloud/ess/v20201111/models.py +147 -316
- tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
- tencentcloud/essbasic/v20210526/models.py +146 -238
- tencentcloud/faceid/v20180301/models.py +20 -12
- tencentcloud/lcic/v20220817/models.py +12 -2
- tencentcloud/lighthouse/v20200324/models.py +12 -12
- tencentcloud/live/v20180801/models.py +10 -112
- tencentcloud/lke/v20231130/lke_client.py +23 -0
- tencentcloud/lke/v20231130/models.py +128 -4
- tencentcloud/ocr/v20181119/models.py +23 -0
- tencentcloud/ocr/v20181119/ocr_client.py +10 -0
- tencentcloud/organization/v20210331/models.py +30 -0
- tencentcloud/rce/v20201103/models.py +18 -54
- tencentcloud/taf/v20200210/models.py +0 -2
- tencentcloud/tcbr/v20220217/models.py +30 -0
- tencentcloud/teo/v20220901/models.py +18 -4
- tencentcloud/tke/v20180525/models.py +2 -320
- tencentcloud/tke/v20220501/models.py +0 -8
- tencentcloud/tse/v20201207/models.py +153 -0
- tencentcloud/vm/v20201229/models.py +615 -68
- tencentcloud/vm/v20210922/models.py +737 -102
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/weilingwith/v20230427/models.py +0 -20
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/RECORD +40 -55
- tencentcloud/lp/__init__.py +0 -0
- tencentcloud/lp/v20200224/__init__.py +0 -0
- tencentcloud/lp/v20200224/errorcodes.py +0 -78
- tencentcloud/lp/v20200224/lp_client.py +0 -49
- tencentcloud/lp/v20200224/models.py +0 -748
- tencentcloud/rkp/__init__.py +0 -0
- tencentcloud/rkp/v20191209/__init__.py +0 -0
- tencentcloud/rkp/v20191209/errorcodes.py +0 -102
- tencentcloud/rkp/v20191209/models.py +0 -1007
- tencentcloud/rkp/v20191209/rkp_client.py +0 -101
- tencentcloud/rp/__init__.py +0 -0
- tencentcloud/rp/v20200224/__init__.py +0 -0
- tencentcloud/rp/v20200224/errorcodes.py +0 -78
- tencentcloud/rp/v20200224/models.py +0 -655
- tencentcloud/rp/v20200224/rp_client.py +0 -49
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/top_level.txt +0 -0
@@ -1394,7 +1394,6 @@ class CancelClusterReleaseResponse(AbstractModel):
|
|
1394
1394
|
def __init__(self):
|
1395
1395
|
r"""
|
1396
1396
|
:param _Release: 应用信息
|
1397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1398
1397
|
:type Release: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
1399
1398
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1400
1399
|
:type RequestId: str
|
@@ -1405,7 +1404,6 @@ class CancelClusterReleaseResponse(AbstractModel):
|
|
1405
1404
|
@property
|
1406
1405
|
def Release(self):
|
1407
1406
|
"""应用信息
|
1408
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1409
1407
|
:rtype: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
1410
1408
|
"""
|
1411
1409
|
return self._Release
|
@@ -1801,10 +1799,8 @@ class CheckInstancesUpgradeAbleResponse(AbstractModel):
|
|
1801
1799
|
:param _LatestVersion: 集群master对应的大版本目前最新小版本
|
1802
1800
|
:type LatestVersion: str
|
1803
1801
|
:param _UpgradeAbleInstances: 可升级节点列表
|
1804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1805
1802
|
:type UpgradeAbleInstances: list of UpgradeAbleInstancesItem
|
1806
1803
|
:param _Total: 总数
|
1807
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1808
1804
|
:type Total: int
|
1809
1805
|
:param _UnavailableVersionReason: 不可升级原因
|
1810
1806
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -1844,7 +1840,6 @@ class CheckInstancesUpgradeAbleResponse(AbstractModel):
|
|
1844
1840
|
@property
|
1845
1841
|
def UpgradeAbleInstances(self):
|
1846
1842
|
"""可升级节点列表
|
1847
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1848
1843
|
:rtype: list of UpgradeAbleInstancesItem
|
1849
1844
|
"""
|
1850
1845
|
return self._UpgradeAbleInstances
|
@@ -1856,7 +1851,6 @@ class CheckInstancesUpgradeAbleResponse(AbstractModel):
|
|
1856
1851
|
@property
|
1857
1852
|
def Total(self):
|
1858
1853
|
"""总数
|
1859
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1860
1854
|
:rtype: int
|
1861
1855
|
"""
|
1862
1856
|
return self._Total
|
@@ -1939,45 +1933,32 @@ class Cluster(AbstractModel):
|
|
1939
1933
|
:param _ClusterStatus: 集群状态 (Trading 集群开通中,Creating 创建中,Running 运行中,Deleting 删除中,Idling 闲置中,Recovering 唤醒中,Scaling 规模调整中,Upgrading 升级中,WaittingForConnect 等待注册,Trading 集群开通中,Isolated 欠费隔离中,Pause 集群升级暂停,NodeUpgrading 节点升级中,RuntimeUpgrading 节点运行时升级中,MasterScaling Master扩缩容中,ClusterLevelUpgrading 调整规格中,ResourceIsolate 隔离中,ResourceIsolated 已隔离,ResourceReverse 冲正中,Abnormal 异常)
|
1940
1934
|
:type ClusterStatus: str
|
1941
1935
|
:param _Property: 集群属性(包括集群不同属性的MAP,属性字段包括NodeNameType (lan-ip模式和hostname 模式,默认无lan-ip模式))
|
1942
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1943
1936
|
:type Property: str
|
1944
1937
|
:param _ClusterMaterNodeNum: 集群当前master数量
|
1945
1938
|
:type ClusterMaterNodeNum: int
|
1946
1939
|
:param _ImageId: 集群使用镜像id
|
1947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1948
1940
|
:type ImageId: str
|
1949
1941
|
:param _OsCustomizeType: OsCustomizeType 系统定制类型
|
1950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1951
1942
|
:type OsCustomizeType: str
|
1952
1943
|
:param _ContainerRuntime: 集群运行环境docker或container
|
1953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1954
1944
|
:type ContainerRuntime: str
|
1955
1945
|
:param _CreatedTime: 创建时间
|
1956
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1957
1946
|
:type CreatedTime: str
|
1958
1947
|
:param _DeletionProtection: 删除保护开关
|
1959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1960
1948
|
:type DeletionProtection: bool
|
1961
1949
|
:param _EnableExternalNode: 集群是否开启第三方节点支持
|
1962
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1963
1950
|
:type EnableExternalNode: bool
|
1964
1951
|
:param _ClusterLevel: 集群等级,针对托管集群生效
|
1965
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1966
1952
|
:type ClusterLevel: str
|
1967
1953
|
:param _AutoUpgradeClusterLevel: 自动变配集群等级,针对托管集群生效
|
1968
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1969
1954
|
:type AutoUpgradeClusterLevel: bool
|
1970
1955
|
:param _QGPUShareEnable: 是否开启QGPU共享
|
1971
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1972
1956
|
:type QGPUShareEnable: bool
|
1973
1957
|
:param _RuntimeVersion: 运行时版本
|
1974
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1975
1958
|
:type RuntimeVersion: str
|
1976
1959
|
:param _ClusterEtcdNodeNum: 集群当前etcd数量
|
1977
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1978
1960
|
:type ClusterEtcdNodeNum: int
|
1979
1961
|
:param _CdcId: 本地专用集群Id
|
1980
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1981
1962
|
:type CdcId: str
|
1982
1963
|
"""
|
1983
1964
|
self._ClusterId = None
|
@@ -2131,7 +2112,6 @@ class Cluster(AbstractModel):
|
|
2131
2112
|
@property
|
2132
2113
|
def Property(self):
|
2133
2114
|
"""集群属性(包括集群不同属性的MAP,属性字段包括NodeNameType (lan-ip模式和hostname 模式,默认无lan-ip模式))
|
2134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2135
2115
|
:rtype: str
|
2136
2116
|
"""
|
2137
2117
|
return self._Property
|
@@ -2154,7 +2134,6 @@ class Cluster(AbstractModel):
|
|
2154
2134
|
@property
|
2155
2135
|
def ImageId(self):
|
2156
2136
|
"""集群使用镜像id
|
2157
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2158
2137
|
:rtype: str
|
2159
2138
|
"""
|
2160
2139
|
return self._ImageId
|
@@ -2166,7 +2145,6 @@ class Cluster(AbstractModel):
|
|
2166
2145
|
@property
|
2167
2146
|
def OsCustomizeType(self):
|
2168
2147
|
"""OsCustomizeType 系统定制类型
|
2169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2170
2148
|
:rtype: str
|
2171
2149
|
"""
|
2172
2150
|
return self._OsCustomizeType
|
@@ -2178,7 +2156,6 @@ class Cluster(AbstractModel):
|
|
2178
2156
|
@property
|
2179
2157
|
def ContainerRuntime(self):
|
2180
2158
|
"""集群运行环境docker或container
|
2181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2182
2159
|
:rtype: str
|
2183
2160
|
"""
|
2184
2161
|
return self._ContainerRuntime
|
@@ -2190,7 +2167,6 @@ class Cluster(AbstractModel):
|
|
2190
2167
|
@property
|
2191
2168
|
def CreatedTime(self):
|
2192
2169
|
"""创建时间
|
2193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2194
2170
|
:rtype: str
|
2195
2171
|
"""
|
2196
2172
|
return self._CreatedTime
|
@@ -2202,7 +2178,6 @@ class Cluster(AbstractModel):
|
|
2202
2178
|
@property
|
2203
2179
|
def DeletionProtection(self):
|
2204
2180
|
"""删除保护开关
|
2205
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2206
2181
|
:rtype: bool
|
2207
2182
|
"""
|
2208
2183
|
return self._DeletionProtection
|
@@ -2214,7 +2189,6 @@ class Cluster(AbstractModel):
|
|
2214
2189
|
@property
|
2215
2190
|
def EnableExternalNode(self):
|
2216
2191
|
"""集群是否开启第三方节点支持
|
2217
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2218
2192
|
:rtype: bool
|
2219
2193
|
"""
|
2220
2194
|
return self._EnableExternalNode
|
@@ -2226,7 +2200,6 @@ class Cluster(AbstractModel):
|
|
2226
2200
|
@property
|
2227
2201
|
def ClusterLevel(self):
|
2228
2202
|
"""集群等级,针对托管集群生效
|
2229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2230
2203
|
:rtype: str
|
2231
2204
|
"""
|
2232
2205
|
return self._ClusterLevel
|
@@ -2238,7 +2211,6 @@ class Cluster(AbstractModel):
|
|
2238
2211
|
@property
|
2239
2212
|
def AutoUpgradeClusterLevel(self):
|
2240
2213
|
"""自动变配集群等级,针对托管集群生效
|
2241
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2242
2214
|
:rtype: bool
|
2243
2215
|
"""
|
2244
2216
|
return self._AutoUpgradeClusterLevel
|
@@ -2250,7 +2222,6 @@ class Cluster(AbstractModel):
|
|
2250
2222
|
@property
|
2251
2223
|
def QGPUShareEnable(self):
|
2252
2224
|
"""是否开启QGPU共享
|
2253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2254
2225
|
:rtype: bool
|
2255
2226
|
"""
|
2256
2227
|
return self._QGPUShareEnable
|
@@ -2262,7 +2233,6 @@ class Cluster(AbstractModel):
|
|
2262
2233
|
@property
|
2263
2234
|
def RuntimeVersion(self):
|
2264
2235
|
"""运行时版本
|
2265
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2266
2236
|
:rtype: str
|
2267
2237
|
"""
|
2268
2238
|
return self._RuntimeVersion
|
@@ -2274,7 +2244,6 @@ class Cluster(AbstractModel):
|
|
2274
2244
|
@property
|
2275
2245
|
def ClusterEtcdNodeNum(self):
|
2276
2246
|
"""集群当前etcd数量
|
2277
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2278
2247
|
:rtype: int
|
2279
2248
|
"""
|
2280
2249
|
return self._ClusterEtcdNodeNum
|
@@ -2286,7 +2255,6 @@ class Cluster(AbstractModel):
|
|
2286
2255
|
@property
|
2287
2256
|
def CdcId(self):
|
2288
2257
|
"""本地专用集群Id
|
2289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2290
2258
|
:rtype: str
|
2291
2259
|
"""
|
2292
2260
|
return self._CdcId
|
@@ -2843,7 +2811,6 @@ class ClusterAsGroupOption(AbstractModel):
|
|
2843
2811
|
注意:此字段可能返回 null,表示取不到有效值。
|
2844
2812
|
:type IsScaleDownEnabled: bool
|
2845
2813
|
:param _Expander: 多伸缩组情况下扩容选择算法(random 随机选择,most-pods 最多类型的Pod least-waste 最少的资源浪费,默认为random)
|
2846
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2847
2814
|
:type Expander: str
|
2848
2815
|
:param _MaxEmptyBulkDelete: 最大并发缩容数
|
2849
2816
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -2908,7 +2875,6 @@ class ClusterAsGroupOption(AbstractModel):
|
|
2908
2875
|
@property
|
2909
2876
|
def Expander(self):
|
2910
2877
|
"""多伸缩组情况下扩容选择算法(random 随机选择,most-pods 最多类型的Pod least-waste 最少的资源浪费,默认为random)
|
2911
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2912
2878
|
:rtype: str
|
2913
2879
|
"""
|
2914
2880
|
return self._Expander
|
@@ -4088,26 +4054,20 @@ class ClusterNetworkSettings(AbstractModel):
|
|
4088
4054
|
:param _Cni: 网络插件是否启用CNI(默认开启)
|
4089
4055
|
:type Cni: bool
|
4090
4056
|
:param _KubeProxyMode: service的网络模式,当前参数只适用于ipvs+bpf模式
|
4091
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4092
4057
|
:type KubeProxyMode: str
|
4093
4058
|
:param _ServiceCIDR: 用于分配service的IP range,不得与 VPC CIDR 冲突,也不得与同 VPC 内其他集群 CIDR 冲突
|
4094
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4095
4059
|
:type ServiceCIDR: str
|
4096
4060
|
:param _Subnets: 集群关联的容器子网
|
4097
4061
|
注意:此字段可能返回 null,表示取不到有效值。
|
4098
4062
|
:type Subnets: list of str
|
4099
4063
|
:param _IgnoreServiceCIDRConflict: 是否忽略 ServiceCIDR 冲突错误, 仅在 VPC-CNI 模式生效,默认不忽略
|
4100
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4101
4064
|
:type IgnoreServiceCIDRConflict: bool
|
4102
4065
|
:param _IsDualStack: 集群VPC-CNI模式是否为非双栈集群,默认false,非双栈。
|
4103
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4104
4066
|
:type IsDualStack: bool
|
4105
4067
|
:param _Ipv6ServiceCIDR: 用于分配service的IP range,由系统自动分配
|
4106
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4107
4068
|
:type Ipv6ServiceCIDR: str
|
4108
4069
|
:param _CiliumMode: 集群Cilium Mode配置
|
4109
4070
|
- clusterIP
|
4110
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4111
4071
|
:type CiliumMode: str
|
4112
4072
|
"""
|
4113
4073
|
self._ClusterCIDR = None
|
@@ -4205,7 +4165,6 @@ class ClusterNetworkSettings(AbstractModel):
|
|
4205
4165
|
@property
|
4206
4166
|
def KubeProxyMode(self):
|
4207
4167
|
"""service的网络模式,当前参数只适用于ipvs+bpf模式
|
4208
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4209
4168
|
:rtype: str
|
4210
4169
|
"""
|
4211
4170
|
return self._KubeProxyMode
|
@@ -4217,7 +4176,6 @@ class ClusterNetworkSettings(AbstractModel):
|
|
4217
4176
|
@property
|
4218
4177
|
def ServiceCIDR(self):
|
4219
4178
|
"""用于分配service的IP range,不得与 VPC CIDR 冲突,也不得与同 VPC 内其他集群 CIDR 冲突
|
4220
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4221
4179
|
:rtype: str
|
4222
4180
|
"""
|
4223
4181
|
return self._ServiceCIDR
|
@@ -4241,7 +4199,6 @@ class ClusterNetworkSettings(AbstractModel):
|
|
4241
4199
|
@property
|
4242
4200
|
def IgnoreServiceCIDRConflict(self):
|
4243
4201
|
"""是否忽略 ServiceCIDR 冲突错误, 仅在 VPC-CNI 模式生效,默认不忽略
|
4244
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4245
4202
|
:rtype: bool
|
4246
4203
|
"""
|
4247
4204
|
return self._IgnoreServiceCIDRConflict
|
@@ -4253,7 +4210,6 @@ class ClusterNetworkSettings(AbstractModel):
|
|
4253
4210
|
@property
|
4254
4211
|
def IsDualStack(self):
|
4255
4212
|
"""集群VPC-CNI模式是否为非双栈集群,默认false,非双栈。
|
4256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4257
4213
|
:rtype: bool
|
4258
4214
|
"""
|
4259
4215
|
return self._IsDualStack
|
@@ -4265,7 +4221,6 @@ class ClusterNetworkSettings(AbstractModel):
|
|
4265
4221
|
@property
|
4266
4222
|
def Ipv6ServiceCIDR(self):
|
4267
4223
|
"""用于分配service的IP range,由系统自动分配
|
4268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4269
4224
|
:rtype: str
|
4270
4225
|
"""
|
4271
4226
|
return self._Ipv6ServiceCIDR
|
@@ -4278,7 +4233,6 @@ class ClusterNetworkSettings(AbstractModel):
|
|
4278
4233
|
def CiliumMode(self):
|
4279
4234
|
"""集群Cilium Mode配置
|
4280
4235
|
- clusterIP
|
4281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4282
4236
|
:rtype: str
|
4283
4237
|
"""
|
4284
4238
|
return self._CiliumMode
|
@@ -6346,7 +6300,6 @@ class CreateClusterReleaseResponse(AbstractModel):
|
|
6346
6300
|
def __init__(self):
|
6347
6301
|
r"""
|
6348
6302
|
:param _Release: 应用详情
|
6349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6350
6303
|
:type Release: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
6351
6304
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6352
6305
|
:type RequestId: str
|
@@ -6357,7 +6310,6 @@ class CreateClusterReleaseResponse(AbstractModel):
|
|
6357
6310
|
@property
|
6358
6311
|
def Release(self):
|
6359
6312
|
"""应用详情
|
6360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6361
6313
|
:rtype: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
6362
6314
|
"""
|
6363
6315
|
return self._Release
|
@@ -11966,7 +11918,6 @@ class DeleteLogConfigsResponse(AbstractModel):
|
|
11966
11918
|
def __init__(self):
|
11967
11919
|
r"""
|
11968
11920
|
:param _Message: 删除采集规则遇到错误时返回错误原因
|
11969
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11970
11921
|
:type Message: str
|
11971
11922
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11972
11923
|
:type RequestId: str
|
@@ -11977,7 +11928,6 @@ class DeleteLogConfigsResponse(AbstractModel):
|
|
11977
11928
|
@property
|
11978
11929
|
def Message(self):
|
11979
11930
|
"""删除采集规则遇到错误时返回错误原因
|
11980
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11981
11931
|
:rtype: str
|
11982
11932
|
"""
|
11983
11933
|
return self._Message
|
@@ -13202,7 +13152,6 @@ class DescribeAvailableClusterVersionResponse(AbstractModel):
|
|
13202
13152
|
注意:此字段可能返回 null,表示取不到有效值。
|
13203
13153
|
:type Versions: list of str
|
13204
13154
|
:param _Clusters: 集群信息
|
13205
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13206
13155
|
:type Clusters: list of ClusterVersion
|
13207
13156
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13208
13157
|
:type RequestId: str
|
@@ -13226,7 +13175,6 @@ class DescribeAvailableClusterVersionResponse(AbstractModel):
|
|
13226
13175
|
@property
|
13227
13176
|
def Clusters(self):
|
13228
13177
|
"""集群信息
|
13229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13230
13178
|
:rtype: list of ClusterVersion
|
13231
13179
|
"""
|
13232
13180
|
return self._Clusters
|
@@ -13501,13 +13449,11 @@ class DescribeBatchModifyTagsStatusResponse(AbstractModel):
|
|
13501
13449
|
def __init__(self):
|
13502
13450
|
r"""
|
13503
13451
|
:param _FailedResources: 失败资源列表
|
13504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13505
13452
|
:type FailedResources: list of FailedResource
|
13506
13453
|
:param _Status: 任务状态:
|
13507
13454
|
- running 运行中
|
13508
13455
|
- failed 失败
|
13509
13456
|
- done 成功
|
13510
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13511
13457
|
:type Status: str
|
13512
13458
|
:param _SyncSubresource: 是否同步集群内子资源标签
|
13513
13459
|
:type SyncSubresource: bool
|
@@ -13525,7 +13471,6 @@ class DescribeBatchModifyTagsStatusResponse(AbstractModel):
|
|
13525
13471
|
@property
|
13526
13472
|
def FailedResources(self):
|
13527
13473
|
"""失败资源列表
|
13528
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13529
13474
|
:rtype: list of FailedResource
|
13530
13475
|
"""
|
13531
13476
|
return self._FailedResources
|
@@ -13540,7 +13485,6 @@ class DescribeBatchModifyTagsStatusResponse(AbstractModel):
|
|
13540
13485
|
- running 运行中
|
13541
13486
|
- failed 失败
|
13542
13487
|
- done 成功
|
13543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13544
13488
|
:rtype: str
|
13545
13489
|
"""
|
13546
13490
|
return self._Status
|
@@ -13645,7 +13589,6 @@ class DescribeClusterAsGroupOptionResponse(AbstractModel):
|
|
13645
13589
|
def __init__(self):
|
13646
13590
|
r"""
|
13647
13591
|
:param _ClusterAsGroupOption: 集群弹性伸缩属性
|
13648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13649
13592
|
:type ClusterAsGroupOption: :class:`tencentcloud.tke.v20180525.models.ClusterAsGroupOption`
|
13650
13593
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13651
13594
|
:type RequestId: str
|
@@ -13656,7 +13599,6 @@ class DescribeClusterAsGroupOptionResponse(AbstractModel):
|
|
13656
13599
|
@property
|
13657
13600
|
def ClusterAsGroupOption(self):
|
13658
13601
|
"""集群弹性伸缩属性
|
13659
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13660
13602
|
:rtype: :class:`tencentcloud.tke.v20180525.models.ClusterAsGroupOption`
|
13661
13603
|
"""
|
13662
13604
|
return self._ClusterAsGroupOption
|
@@ -13872,13 +13814,10 @@ class DescribeClusterAuthenticationOptionsResponse(AbstractModel):
|
|
13872
13814
|
def __init__(self):
|
13873
13815
|
r"""
|
13874
13816
|
:param _ServiceAccounts: ServiceAccount认证配置
|
13875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13876
13817
|
:type ServiceAccounts: :class:`tencentcloud.tke.v20180525.models.ServiceAccountAuthenticationOptions`
|
13877
13818
|
:param _LatestOperationState: 最近一次修改操作结果,返回值可能为:Updating,Success,Failed,TimeOut
|
13878
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13879
13819
|
:type LatestOperationState: str
|
13880
13820
|
:param _OIDCConfig: OIDC认证配置
|
13881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13882
13821
|
:type OIDCConfig: :class:`tencentcloud.tke.v20180525.models.OIDCConfigAuthenticationOptions`
|
13883
13822
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13884
13823
|
:type RequestId: str
|
@@ -13891,7 +13830,6 @@ class DescribeClusterAuthenticationOptionsResponse(AbstractModel):
|
|
13891
13830
|
@property
|
13892
13831
|
def ServiceAccounts(self):
|
13893
13832
|
"""ServiceAccount认证配置
|
13894
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13895
13833
|
:rtype: :class:`tencentcloud.tke.v20180525.models.ServiceAccountAuthenticationOptions`
|
13896
13834
|
"""
|
13897
13835
|
return self._ServiceAccounts
|
@@ -13903,7 +13841,6 @@ class DescribeClusterAuthenticationOptionsResponse(AbstractModel):
|
|
13903
13841
|
@property
|
13904
13842
|
def LatestOperationState(self):
|
13905
13843
|
"""最近一次修改操作结果,返回值可能为:Updating,Success,Failed,TimeOut
|
13906
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13907
13844
|
:rtype: str
|
13908
13845
|
"""
|
13909
13846
|
return self._LatestOperationState
|
@@ -13915,7 +13852,6 @@ class DescribeClusterAuthenticationOptionsResponse(AbstractModel):
|
|
13915
13852
|
@property
|
13916
13853
|
def OIDCConfig(self):
|
13917
13854
|
"""OIDC认证配置
|
13918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13919
13855
|
:rtype: :class:`tencentcloud.tke.v20180525.models.OIDCConfigAuthenticationOptions`
|
13920
13856
|
"""
|
13921
13857
|
return self._OIDCConfig
|
@@ -14204,10 +14140,8 @@ class DescribeClusterEndpointStatusResponse(AbstractModel):
|
|
14204
14140
|
def __init__(self):
|
14205
14141
|
r"""
|
14206
14142
|
:param _Status: 查询集群访问端口状态(Created 开启成功,Creating 开启中,NotFound 未开启)
|
14207
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14208
14143
|
:type Status: str
|
14209
14144
|
:param _ErrorMsg: 开启访问入口失败信息
|
14210
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14211
14145
|
:type ErrorMsg: str
|
14212
14146
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14213
14147
|
:type RequestId: str
|
@@ -14219,7 +14153,6 @@ class DescribeClusterEndpointStatusResponse(AbstractModel):
|
|
14219
14153
|
@property
|
14220
14154
|
def Status(self):
|
14221
14155
|
"""查询集群访问端口状态(Created 开启成功,Creating 开启中,NotFound 未开启)
|
14222
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14223
14156
|
:rtype: str
|
14224
14157
|
"""
|
14225
14158
|
return self._Status
|
@@ -14231,7 +14164,6 @@ class DescribeClusterEndpointStatusResponse(AbstractModel):
|
|
14231
14164
|
@property
|
14232
14165
|
def ErrorMsg(self):
|
14233
14166
|
"""开启访问入口失败信息
|
14234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14235
14167
|
:rtype: str
|
14236
14168
|
"""
|
14237
14169
|
return self._ErrorMsg
|
@@ -14304,7 +14236,6 @@ class DescribeClusterEndpointVipStatusResponse(AbstractModel):
|
|
14304
14236
|
:param _Status: 端口操作状态 (Creating 创建中 CreateFailed 创建失败 Created 创建完成 Deleting 删除中 DeletedFailed 删除失败 Deleted 已删除 NotFound 未发现操作 )
|
14305
14237
|
:type Status: str
|
14306
14238
|
:param _ErrorMsg: 操作失败的原因
|
14307
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14308
14239
|
:type ErrorMsg: str
|
14309
14240
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14310
14241
|
:type RequestId: str
|
@@ -14327,7 +14258,6 @@ class DescribeClusterEndpointVipStatusResponse(AbstractModel):
|
|
14327
14258
|
@property
|
14328
14259
|
def ErrorMsg(self):
|
14329
14260
|
"""操作失败的原因
|
14330
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14331
14261
|
:rtype: str
|
14332
14262
|
"""
|
14333
14263
|
return self._ErrorMsg
|
@@ -14404,22 +14334,17 @@ class DescribeClusterEndpointsResponse(AbstractModel):
|
|
14404
14334
|
:param _ClusterIntranetEndpoint: 集群APIServer的内网访问地址
|
14405
14335
|
:type ClusterIntranetEndpoint: str
|
14406
14336
|
:param _ClusterDomain: 集群APIServer的域名
|
14407
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14408
14337
|
:type ClusterDomain: str
|
14409
14338
|
:param _ClusterExternalACL: 集群APIServer的外网访问ACL列表
|
14410
14339
|
注意:此字段可能返回 null,表示取不到有效值。
|
14411
14340
|
:type ClusterExternalACL: list of str
|
14412
14341
|
:param _ClusterExternalDomain: 外网域名
|
14413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14414
14342
|
:type ClusterExternalDomain: str
|
14415
14343
|
:param _ClusterIntranetDomain: 内网域名
|
14416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14417
14344
|
:type ClusterIntranetDomain: str
|
14418
14345
|
:param _SecurityGroup: 外网安全组
|
14419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14420
14346
|
:type SecurityGroup: str
|
14421
14347
|
:param _ClusterIntranetSubnetId: 内网访问所属子网
|
14422
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14423
14348
|
:type ClusterIntranetSubnetId: str
|
14424
14349
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14425
14350
|
:type RequestId: str
|
@@ -14471,7 +14396,6 @@ class DescribeClusterEndpointsResponse(AbstractModel):
|
|
14471
14396
|
@property
|
14472
14397
|
def ClusterDomain(self):
|
14473
14398
|
"""集群APIServer的域名
|
14474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14475
14399
|
:rtype: str
|
14476
14400
|
"""
|
14477
14401
|
return self._ClusterDomain
|
@@ -14495,7 +14419,6 @@ class DescribeClusterEndpointsResponse(AbstractModel):
|
|
14495
14419
|
@property
|
14496
14420
|
def ClusterExternalDomain(self):
|
14497
14421
|
"""外网域名
|
14498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14499
14422
|
:rtype: str
|
14500
14423
|
"""
|
14501
14424
|
return self._ClusterExternalDomain
|
@@ -14507,7 +14430,6 @@ class DescribeClusterEndpointsResponse(AbstractModel):
|
|
14507
14430
|
@property
|
14508
14431
|
def ClusterIntranetDomain(self):
|
14509
14432
|
"""内网域名
|
14510
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14511
14433
|
:rtype: str
|
14512
14434
|
"""
|
14513
14435
|
return self._ClusterIntranetDomain
|
@@ -14519,7 +14441,6 @@ class DescribeClusterEndpointsResponse(AbstractModel):
|
|
14519
14441
|
@property
|
14520
14442
|
def SecurityGroup(self):
|
14521
14443
|
"""外网安全组
|
14522
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14523
14444
|
:rtype: str
|
14524
14445
|
"""
|
14525
14446
|
return self._SecurityGroup
|
@@ -14531,7 +14452,6 @@ class DescribeClusterEndpointsResponse(AbstractModel):
|
|
14531
14452
|
@property
|
14532
14453
|
def ClusterIntranetSubnetId(self):
|
14533
14454
|
"""内网访问所属子网
|
14534
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14535
14455
|
:rtype: str
|
14536
14456
|
"""
|
14537
14457
|
return self._ClusterIntranetSubnetId
|
@@ -14609,7 +14529,6 @@ class DescribeClusterExtraArgsResponse(AbstractModel):
|
|
14609
14529
|
def __init__(self):
|
14610
14530
|
r"""
|
14611
14531
|
:param _ClusterExtraArgs: 集群自定义参数
|
14612
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14613
14532
|
:type ClusterExtraArgs: :class:`tencentcloud.tke.v20180525.models.ClusterExtraArgs`
|
14614
14533
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14615
14534
|
:type RequestId: str
|
@@ -14620,7 +14539,6 @@ class DescribeClusterExtraArgsResponse(AbstractModel):
|
|
14620
14539
|
@property
|
14621
14540
|
def ClusterExtraArgs(self):
|
14622
14541
|
"""集群自定义参数
|
14623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14624
14542
|
:rtype: :class:`tencentcloud.tke.v20180525.models.ClusterExtraArgs`
|
14625
14543
|
"""
|
14626
14544
|
return self._ClusterExtraArgs
|
@@ -15516,7 +15434,6 @@ class DescribeClusterNodePoolsResponse(AbstractModel):
|
|
15516
15434
|
def __init__(self):
|
15517
15435
|
r"""
|
15518
15436
|
:param _NodePoolSet: NodePools(节点池列表)
|
15519
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15520
15437
|
:type NodePoolSet: list of NodePool
|
15521
15438
|
:param _TotalCount: 资源总数
|
15522
15439
|
:type TotalCount: int
|
@@ -15530,7 +15447,6 @@ class DescribeClusterNodePoolsResponse(AbstractModel):
|
|
15530
15447
|
@property
|
15531
15448
|
def NodePoolSet(self):
|
15532
15449
|
"""NodePools(节点池列表)
|
15533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15534
15450
|
:rtype: list of NodePool
|
15535
15451
|
"""
|
15536
15452
|
return self._NodePoolSet
|
@@ -15662,16 +15578,12 @@ class DescribeClusterPendingReleasesResponse(AbstractModel):
|
|
15662
15578
|
def __init__(self):
|
15663
15579
|
r"""
|
15664
15580
|
:param _ReleaseSet: 正在安装中应用列表
|
15665
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15666
15581
|
:type ReleaseSet: list of PendingRelease
|
15667
15582
|
:param _Limit: 每页返回数量限制
|
15668
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15669
15583
|
:type Limit: int
|
15670
15584
|
:param _Offset: 页偏移量
|
15671
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15672
15585
|
:type Offset: int
|
15673
15586
|
:param _Total: 总数量
|
15674
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15675
15587
|
:type Total: int
|
15676
15588
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15677
15589
|
:type RequestId: str
|
@@ -15685,7 +15597,6 @@ class DescribeClusterPendingReleasesResponse(AbstractModel):
|
|
15685
15597
|
@property
|
15686
15598
|
def ReleaseSet(self):
|
15687
15599
|
"""正在安装中应用列表
|
15688
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15689
15600
|
:rtype: list of PendingRelease
|
15690
15601
|
"""
|
15691
15602
|
return self._ReleaseSet
|
@@ -15697,7 +15608,6 @@ class DescribeClusterPendingReleasesResponse(AbstractModel):
|
|
15697
15608
|
@property
|
15698
15609
|
def Limit(self):
|
15699
15610
|
"""每页返回数量限制
|
15700
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15701
15611
|
:rtype: int
|
15702
15612
|
"""
|
15703
15613
|
return self._Limit
|
@@ -15709,7 +15619,6 @@ class DescribeClusterPendingReleasesResponse(AbstractModel):
|
|
15709
15619
|
@property
|
15710
15620
|
def Offset(self):
|
15711
15621
|
"""页偏移量
|
15712
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15713
15622
|
:rtype: int
|
15714
15623
|
"""
|
15715
15624
|
return self._Offset
|
@@ -15721,7 +15630,6 @@ class DescribeClusterPendingReleasesResponse(AbstractModel):
|
|
15721
15630
|
@property
|
15722
15631
|
def Total(self):
|
15723
15632
|
"""总数量
|
15724
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15725
15633
|
:rtype: int
|
15726
15634
|
"""
|
15727
15635
|
return self._Total
|
@@ -15844,7 +15752,6 @@ class DescribeClusterReleaseDetailsResponse(AbstractModel):
|
|
15844
15752
|
def __init__(self):
|
15845
15753
|
r"""
|
15846
15754
|
:param _Release: 应用详情
|
15847
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15848
15755
|
:type Release: :class:`tencentcloud.tke.v20180525.models.ReleaseDetails`
|
15849
15756
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15850
15757
|
:type RequestId: str
|
@@ -15855,7 +15762,6 @@ class DescribeClusterReleaseDetailsResponse(AbstractModel):
|
|
15855
15762
|
@property
|
15856
15763
|
def Release(self):
|
15857
15764
|
"""应用详情
|
15858
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15859
15765
|
:rtype: :class:`tencentcloud.tke.v20180525.models.ReleaseDetails`
|
15860
15766
|
"""
|
15861
15767
|
return self._Release
|
@@ -15972,10 +15878,8 @@ class DescribeClusterReleaseHistoryResponse(AbstractModel):
|
|
15972
15878
|
def __init__(self):
|
15973
15879
|
r"""
|
15974
15880
|
:param _ReleaseHistorySet: 已安装应用版本历史
|
15975
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15976
15881
|
:type ReleaseHistorySet: list of ReleaseHistory
|
15977
15882
|
:param _Total: 总数量
|
15978
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15979
15883
|
:type Total: int
|
15980
15884
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15981
15885
|
:type RequestId: str
|
@@ -15987,7 +15891,6 @@ class DescribeClusterReleaseHistoryResponse(AbstractModel):
|
|
15987
15891
|
@property
|
15988
15892
|
def ReleaseHistorySet(self):
|
15989
15893
|
"""已安装应用版本历史
|
15990
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15991
15894
|
:rtype: list of ReleaseHistory
|
15992
15895
|
"""
|
15993
15896
|
return self._ReleaseHistorySet
|
@@ -15999,7 +15902,6 @@ class DescribeClusterReleaseHistoryResponse(AbstractModel):
|
|
15999
15902
|
@property
|
16000
15903
|
def Total(self):
|
16001
15904
|
"""总数量
|
16002
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16003
15905
|
:rtype: int
|
16004
15906
|
"""
|
16005
15907
|
return self._Total
|
@@ -16165,16 +16067,12 @@ class DescribeClusterReleasesResponse(AbstractModel):
|
|
16165
16067
|
def __init__(self):
|
16166
16068
|
r"""
|
16167
16069
|
:param _Limit: 数量限制
|
16168
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16169
16070
|
:type Limit: int
|
16170
16071
|
:param _Offset: 偏移量
|
16171
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16172
16072
|
:type Offset: int
|
16173
16073
|
:param _ReleaseSet: 已安装应用列表
|
16174
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16175
16074
|
:type ReleaseSet: list of Release
|
16176
16075
|
:param _Total: 已安装应用总数量
|
16177
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16178
16076
|
:type Total: int
|
16179
16077
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16180
16078
|
:type RequestId: str
|
@@ -16188,7 +16086,6 @@ class DescribeClusterReleasesResponse(AbstractModel):
|
|
16188
16086
|
@property
|
16189
16087
|
def Limit(self):
|
16190
16088
|
"""数量限制
|
16191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16192
16089
|
:rtype: int
|
16193
16090
|
"""
|
16194
16091
|
return self._Limit
|
@@ -16200,7 +16097,6 @@ class DescribeClusterReleasesResponse(AbstractModel):
|
|
16200
16097
|
@property
|
16201
16098
|
def Offset(self):
|
16202
16099
|
"""偏移量
|
16203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16204
16100
|
:rtype: int
|
16205
16101
|
"""
|
16206
16102
|
return self._Offset
|
@@ -16212,7 +16108,6 @@ class DescribeClusterReleasesResponse(AbstractModel):
|
|
16212
16108
|
@property
|
16213
16109
|
def ReleaseSet(self):
|
16214
16110
|
"""已安装应用列表
|
16215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16216
16111
|
:rtype: list of Release
|
16217
16112
|
"""
|
16218
16113
|
return self._ReleaseSet
|
@@ -16224,7 +16119,6 @@ class DescribeClusterReleasesResponse(AbstractModel):
|
|
16224
16119
|
@property
|
16225
16120
|
def Total(self):
|
16226
16121
|
"""已安装应用总数量
|
16227
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16228
16122
|
:rtype: int
|
16229
16123
|
"""
|
16230
16124
|
return self._Total
|
@@ -16505,7 +16399,6 @@ class DescribeClusterSecurityResponse(AbstractModel):
|
|
16505
16399
|
注意:此字段可能返回 null,表示取不到有效值。
|
16506
16400
|
:type SecurityPolicy: list of str
|
16507
16401
|
:param _Kubeconfig: 集群Kubeconfig文件
|
16508
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16509
16402
|
:type Kubeconfig: str
|
16510
16403
|
:param _JnsGwEndpoint: 集群JnsGw的访问地址
|
16511
16404
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -16605,7 +16498,6 @@ class DescribeClusterSecurityResponse(AbstractModel):
|
|
16605
16498
|
@property
|
16606
16499
|
def Kubeconfig(self):
|
16607
16500
|
"""集群Kubeconfig文件
|
16608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16609
16501
|
:rtype: str
|
16610
16502
|
"""
|
16611
16503
|
return self._Kubeconfig
|
@@ -16794,10 +16686,8 @@ class DescribeClusterVirtualNodePoolsResponse(AbstractModel):
|
|
16794
16686
|
def __init__(self):
|
16795
16687
|
r"""
|
16796
16688
|
:param _TotalCount: 节点池总数
|
16797
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16798
16689
|
:type TotalCount: int
|
16799
16690
|
:param _NodePoolSet: 虚拟节点池列表
|
16800
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16801
16691
|
:type NodePoolSet: list of VirtualNodePool
|
16802
16692
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16803
16693
|
:type RequestId: str
|
@@ -16809,7 +16699,6 @@ class DescribeClusterVirtualNodePoolsResponse(AbstractModel):
|
|
16809
16699
|
@property
|
16810
16700
|
def TotalCount(self):
|
16811
16701
|
"""节点池总数
|
16812
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16813
16702
|
:rtype: int
|
16814
16703
|
"""
|
16815
16704
|
return self._TotalCount
|
@@ -16821,7 +16710,6 @@ class DescribeClusterVirtualNodePoolsResponse(AbstractModel):
|
|
16821
16710
|
@property
|
16822
16711
|
def NodePoolSet(self):
|
16823
16712
|
"""虚拟节点池列表
|
16824
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16825
16713
|
:rtype: list of VirtualNodePool
|
16826
16714
|
"""
|
16827
16715
|
return self._NodePoolSet
|
@@ -16927,10 +16815,8 @@ class DescribeClusterVirtualNodeResponse(AbstractModel):
|
|
16927
16815
|
def __init__(self):
|
16928
16816
|
r"""
|
16929
16817
|
:param _Nodes: 节点列表
|
16930
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16931
16818
|
:type Nodes: list of VirtualNode
|
16932
16819
|
:param _TotalCount: 节点总数
|
16933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16934
16820
|
:type TotalCount: int
|
16935
16821
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16936
16822
|
:type RequestId: str
|
@@ -16942,7 +16828,6 @@ class DescribeClusterVirtualNodeResponse(AbstractModel):
|
|
16942
16828
|
@property
|
16943
16829
|
def Nodes(self):
|
16944
16830
|
"""节点列表
|
16945
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16946
16831
|
:rtype: list of VirtualNode
|
16947
16832
|
"""
|
16948
16833
|
return self._Nodes
|
@@ -16954,7 +16839,6 @@ class DescribeClusterVirtualNodeResponse(AbstractModel):
|
|
16954
16839
|
@property
|
16955
16840
|
def TotalCount(self):
|
16956
16841
|
"""节点总数
|
16957
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16958
16842
|
:rtype: int
|
16959
16843
|
"""
|
16960
16844
|
return self._TotalCount
|
@@ -18876,7 +18760,6 @@ class DescribeEnableVpcCniProgressResponse(AbstractModel):
|
|
18876
18760
|
:param _Status: 任务进度的描述:Running/Succeed/Failed
|
18877
18761
|
:type Status: str
|
18878
18762
|
:param _ErrorMessage: 当任务进度为Failed时,对任务状态的进一步描述,例如IPAMD组件安装失败
|
18879
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18880
18763
|
:type ErrorMessage: str
|
18881
18764
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18882
18765
|
:type RequestId: str
|
@@ -18899,7 +18782,6 @@ class DescribeEnableVpcCniProgressResponse(AbstractModel):
|
|
18899
18782
|
@property
|
18900
18783
|
def ErrorMessage(self):
|
18901
18784
|
"""当任务进度为Failed时,对任务状态的进一步描述,例如IPAMD组件安装失败
|
18902
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18903
18785
|
:rtype: str
|
18904
18786
|
"""
|
18905
18787
|
return self._ErrorMessage
|
@@ -19174,7 +19056,6 @@ class DescribeExistedInstancesResponse(AbstractModel):
|
|
19174
19056
|
def __init__(self):
|
19175
19057
|
r"""
|
19176
19058
|
:param _ExistedInstanceSet: 已经存在的实例信息数组。
|
19177
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19178
19059
|
:type ExistedInstanceSet: list of ExistedInstance
|
19179
19060
|
:param _TotalCount: 符合条件的实例数量。
|
19180
19061
|
:type TotalCount: int
|
@@ -19188,7 +19069,6 @@ class DescribeExistedInstancesResponse(AbstractModel):
|
|
19188
19069
|
@property
|
19189
19070
|
def ExistedInstanceSet(self):
|
19190
19071
|
"""已经存在的实例信息数组。
|
19191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19192
19072
|
:rtype: list of ExistedInstance
|
19193
19073
|
"""
|
19194
19074
|
return self._ExistedInstanceSet
|
@@ -19578,25 +19458,19 @@ class DescribeIPAMDResponse(AbstractModel):
|
|
19578
19458
|
:param _EnableIPAMD: 是否安装了eniipamd组件
|
19579
19459
|
:type EnableIPAMD: bool
|
19580
19460
|
:param _EnableCustomizedPodCidr: 是否开启自定义podcidr,默认为false,已安装eniipamd组件才意义
|
19581
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19582
19461
|
:type EnableCustomizedPodCidr: bool
|
19583
19462
|
:param _DisableVpcCniMode: 是否不开启vpccni模式,默认为false,已安装eniipamd组件才意义
|
19584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19585
19463
|
:type DisableVpcCniMode: bool
|
19586
19464
|
:param _Phase: 组件状态,已安装eniipamd组件才会有值
|
19587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19588
19465
|
:type Phase: str
|
19589
19466
|
:param _Reason: 错误信息,已安装eniipamd组件且状态为非running才会有错误信息
|
19590
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19591
19467
|
:type Reason: str
|
19592
19468
|
:param _SubnetIds: 子网信息,已安装eniipamd组件才会有值
|
19593
19469
|
注意:此字段可能返回 null,表示取不到有效值。
|
19594
19470
|
:type SubnetIds: list of str
|
19595
19471
|
:param _ClaimExpiredDuration: 固定ip回收时间,已安装eniipamd组件才会有值
|
19596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19597
19472
|
:type ClaimExpiredDuration: str
|
19598
19473
|
:param _EnableTrunkingENI: 是否开启了中继网卡模式
|
19599
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19600
19474
|
:type EnableTrunkingENI: bool
|
19601
19475
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19602
19476
|
:type RequestId: str
|
@@ -19625,7 +19499,6 @@ class DescribeIPAMDResponse(AbstractModel):
|
|
19625
19499
|
@property
|
19626
19500
|
def EnableCustomizedPodCidr(self):
|
19627
19501
|
"""是否开启自定义podcidr,默认为false,已安装eniipamd组件才意义
|
19628
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19629
19502
|
:rtype: bool
|
19630
19503
|
"""
|
19631
19504
|
return self._EnableCustomizedPodCidr
|
@@ -19637,7 +19510,6 @@ class DescribeIPAMDResponse(AbstractModel):
|
|
19637
19510
|
@property
|
19638
19511
|
def DisableVpcCniMode(self):
|
19639
19512
|
"""是否不开启vpccni模式,默认为false,已安装eniipamd组件才意义
|
19640
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19641
19513
|
:rtype: bool
|
19642
19514
|
"""
|
19643
19515
|
return self._DisableVpcCniMode
|
@@ -19649,7 +19521,6 @@ class DescribeIPAMDResponse(AbstractModel):
|
|
19649
19521
|
@property
|
19650
19522
|
def Phase(self):
|
19651
19523
|
"""组件状态,已安装eniipamd组件才会有值
|
19652
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19653
19524
|
:rtype: str
|
19654
19525
|
"""
|
19655
19526
|
return self._Phase
|
@@ -19661,7 +19532,6 @@ class DescribeIPAMDResponse(AbstractModel):
|
|
19661
19532
|
@property
|
19662
19533
|
def Reason(self):
|
19663
19534
|
"""错误信息,已安装eniipamd组件且状态为非running才会有错误信息
|
19664
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19665
19535
|
:rtype: str
|
19666
19536
|
"""
|
19667
19537
|
return self._Reason
|
@@ -19685,7 +19555,6 @@ class DescribeIPAMDResponse(AbstractModel):
|
|
19685
19555
|
@property
|
19686
19556
|
def ClaimExpiredDuration(self):
|
19687
19557
|
"""固定ip回收时间,已安装eniipamd组件才会有值
|
19688
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19689
19558
|
:rtype: str
|
19690
19559
|
"""
|
19691
19560
|
return self._ClaimExpiredDuration
|
@@ -19697,7 +19566,6 @@ class DescribeIPAMDResponse(AbstractModel):
|
|
19697
19566
|
@property
|
19698
19567
|
def EnableTrunkingENI(self):
|
19699
19568
|
"""是否开启了中继网卡模式
|
19700
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19701
19569
|
:rtype: bool
|
19702
19570
|
"""
|
19703
19571
|
return self._EnableTrunkingENI
|
@@ -19914,10 +19782,8 @@ class DescribeImagesResponse(AbstractModel):
|
|
19914
19782
|
def __init__(self):
|
19915
19783
|
r"""
|
19916
19784
|
:param _TotalCount: 镜像数量
|
19917
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19918
19785
|
:type TotalCount: int
|
19919
19786
|
:param _ImageInstanceSet: 镜像信息列表
|
19920
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19921
19787
|
:type ImageInstanceSet: list of ImageInstance
|
19922
19788
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19923
19789
|
:type RequestId: str
|
@@ -19929,7 +19795,6 @@ class DescribeImagesResponse(AbstractModel):
|
|
19929
19795
|
@property
|
19930
19796
|
def TotalCount(self):
|
19931
19797
|
"""镜像数量
|
19932
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19933
19798
|
:rtype: int
|
19934
19799
|
"""
|
19935
19800
|
return self._TotalCount
|
@@ -19941,7 +19806,6 @@ class DescribeImagesResponse(AbstractModel):
|
|
19941
19806
|
@property
|
19942
19807
|
def ImageInstanceSet(self):
|
19943
19808
|
"""镜像信息列表
|
19944
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19945
19809
|
:rtype: list of ImageInstance
|
19946
19810
|
"""
|
19947
19811
|
return self._ImageInstanceSet
|
@@ -20077,13 +19941,10 @@ class DescribeLogConfigsResponse(AbstractModel):
|
|
20077
19941
|
def __init__(self):
|
20078
19942
|
r"""
|
20079
19943
|
:param _Total: 分页查找时返回采集规则总数
|
20080
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20081
19944
|
:type Total: int
|
20082
19945
|
:param _Message: 指定采集规则名称查找,部分失败时返回失败采集规则名称及最后一个失败原因
|
20083
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20084
19946
|
:type Message: str
|
20085
19947
|
:param _LogConfigs: 采集规则查询结果
|
20086
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20087
19948
|
:type LogConfigs: str
|
20088
19949
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20089
19950
|
:type RequestId: str
|
@@ -20096,7 +19957,6 @@ class DescribeLogConfigsResponse(AbstractModel):
|
|
20096
19957
|
@property
|
20097
19958
|
def Total(self):
|
20098
19959
|
"""分页查找时返回采集规则总数
|
20099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20100
19960
|
:rtype: int
|
20101
19961
|
"""
|
20102
19962
|
return self._Total
|
@@ -20108,7 +19968,6 @@ class DescribeLogConfigsResponse(AbstractModel):
|
|
20108
19968
|
@property
|
20109
19969
|
def Message(self):
|
20110
19970
|
"""指定采集规则名称查找,部分失败时返回失败采集规则名称及最后一个失败原因
|
20111
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20112
19971
|
:rtype: str
|
20113
19972
|
"""
|
20114
19973
|
return self._Message
|
@@ -20120,7 +19979,6 @@ class DescribeLogConfigsResponse(AbstractModel):
|
|
20120
19979
|
@property
|
20121
19980
|
def LogConfigs(self):
|
20122
19981
|
"""采集规则查询结果
|
20123
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20124
19982
|
:rtype: str
|
20125
19983
|
"""
|
20126
19984
|
return self._LogConfigs
|
@@ -23750,10 +23608,8 @@ class DescribeRegionsResponse(AbstractModel):
|
|
23750
23608
|
def __init__(self):
|
23751
23609
|
r"""
|
23752
23610
|
:param _TotalCount: 地域的数量
|
23753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23754
23611
|
:type TotalCount: int
|
23755
23612
|
:param _RegionInstanceSet: 地域列表
|
23756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23757
23613
|
:type RegionInstanceSet: list of RegionInstance
|
23758
23614
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23759
23615
|
:type RequestId: str
|
@@ -23765,7 +23621,6 @@ class DescribeRegionsResponse(AbstractModel):
|
|
23765
23621
|
@property
|
23766
23622
|
def TotalCount(self):
|
23767
23623
|
"""地域的数量
|
23768
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23769
23624
|
:rtype: int
|
23770
23625
|
"""
|
23771
23626
|
return self._TotalCount
|
@@ -23777,7 +23632,6 @@ class DescribeRegionsResponse(AbstractModel):
|
|
23777
23632
|
@property
|
23778
23633
|
def RegionInstanceSet(self):
|
23779
23634
|
"""地域列表
|
23780
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23781
23635
|
:rtype: list of RegionInstance
|
23782
23636
|
"""
|
23783
23637
|
return self._RegionInstanceSet
|
@@ -24433,7 +24287,6 @@ class DescribeRouteTableConflictsResponse(AbstractModel):
|
|
24433
24287
|
:param _HasConflict: 路由表是否冲突。
|
24434
24288
|
:type HasConflict: bool
|
24435
24289
|
:param _RouteTableConflictSet: 路由表冲突列表。
|
24436
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24437
24290
|
:type RouteTableConflictSet: list of RouteTableConflict
|
24438
24291
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
24439
24292
|
:type RequestId: str
|
@@ -24456,7 +24309,6 @@ class DescribeRouteTableConflictsResponse(AbstractModel):
|
|
24456
24309
|
@property
|
24457
24310
|
def RouteTableConflictSet(self):
|
24458
24311
|
"""路由表冲突列表。
|
24459
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24460
24312
|
:rtype: list of RouteTableConflict
|
24461
24313
|
"""
|
24462
24314
|
return self._RouteTableConflictSet
|
@@ -24532,7 +24384,6 @@ class DescribeSupportedRuntimeResponse(AbstractModel):
|
|
24532
24384
|
def __init__(self):
|
24533
24385
|
r"""
|
24534
24386
|
:param _OptionalRuntimes: 可选运行时列表
|
24535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24536
24387
|
:type OptionalRuntimes: list of OptionalRuntimes
|
24537
24388
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
24538
24389
|
:type RequestId: str
|
@@ -24543,7 +24394,6 @@ class DescribeSupportedRuntimeResponse(AbstractModel):
|
|
24543
24394
|
@property
|
24544
24395
|
def OptionalRuntimes(self):
|
24545
24396
|
"""可选运行时列表
|
24546
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24547
24397
|
:rtype: list of OptionalRuntimes
|
24548
24398
|
"""
|
24549
24399
|
return self._OptionalRuntimes
|
@@ -25315,10 +25165,8 @@ class DescribeVersionsResponse(AbstractModel):
|
|
25315
25165
|
def __init__(self):
|
25316
25166
|
r"""
|
25317
25167
|
:param _TotalCount: 版本数量
|
25318
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25319
25168
|
:type TotalCount: int
|
25320
25169
|
:param _VersionInstanceSet: 版本列表
|
25321
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25322
25170
|
:type VersionInstanceSet: list of VersionInstance
|
25323
25171
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25324
25172
|
:type RequestId: str
|
@@ -25330,7 +25178,6 @@ class DescribeVersionsResponse(AbstractModel):
|
|
25330
25178
|
@property
|
25331
25179
|
def TotalCount(self):
|
25332
25180
|
"""版本数量
|
25333
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25334
25181
|
:rtype: int
|
25335
25182
|
"""
|
25336
25183
|
return self._TotalCount
|
@@ -25342,7 +25189,6 @@ class DescribeVersionsResponse(AbstractModel):
|
|
25342
25189
|
@property
|
25343
25190
|
def VersionInstanceSet(self):
|
25344
25191
|
"""版本列表
|
25345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25346
25192
|
:rtype: list of VersionInstance
|
25347
25193
|
"""
|
25348
25194
|
return self._VersionInstanceSet
|
@@ -25448,10 +25294,8 @@ class DescribeVpcCniPodLimitsResponse(AbstractModel):
|
|
25448
25294
|
def __init__(self):
|
25449
25295
|
r"""
|
25450
25296
|
:param _TotalCount: 机型数据数量
|
25451
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25452
25297
|
:type TotalCount: int
|
25453
25298
|
:param _PodLimitsInstanceSet: 机型信息及其可支持的最大VPC-CNI模式Pod数量信息
|
25454
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25455
25299
|
:type PodLimitsInstanceSet: list of PodLimitsInstance
|
25456
25300
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25457
25301
|
:type RequestId: str
|
@@ -25463,7 +25307,6 @@ class DescribeVpcCniPodLimitsResponse(AbstractModel):
|
|
25463
25307
|
@property
|
25464
25308
|
def TotalCount(self):
|
25465
25309
|
"""机型数据数量
|
25466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25467
25310
|
:rtype: int
|
25468
25311
|
"""
|
25469
25312
|
return self._TotalCount
|
@@ -25475,7 +25318,6 @@ class DescribeVpcCniPodLimitsResponse(AbstractModel):
|
|
25475
25318
|
@property
|
25476
25319
|
def PodLimitsInstanceSet(self):
|
25477
25320
|
"""机型信息及其可支持的最大VPC-CNI模式Pod数量信息
|
25478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25479
25321
|
:rtype: list of PodLimitsInstance
|
25480
25322
|
"""
|
25481
25323
|
return self._PodLimitsInstanceSet
|
@@ -28677,18 +28519,14 @@ class ExistedInstance(AbstractModel):
|
|
28677
28519
|
def __init__(self):
|
28678
28520
|
r"""
|
28679
28521
|
:param _Usable: 实例是否支持加入集群(TRUE 可以加入 FALSE 不能加入)。
|
28680
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28681
28522
|
:type Usable: bool
|
28682
28523
|
:param _UnusableReason: 实例不支持加入的原因。
|
28683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28684
28524
|
:type UnusableReason: str
|
28685
28525
|
:param _AlreadyInCluster: 实例已经所在的集群ID。
|
28686
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28687
28526
|
:type AlreadyInCluster: str
|
28688
28527
|
:param _InstanceId: 实例ID形如:ins-e55paxnt。
|
28689
28528
|
:type InstanceId: str
|
28690
28529
|
:param _InstanceName: 实例名称。
|
28691
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28692
28530
|
:type InstanceName: str
|
28693
28531
|
:param _PrivateIpAddresses: 实例主网卡的内网IP列表。
|
28694
28532
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -28698,25 +28536,18 @@ class ExistedInstance(AbstractModel):
|
|
28698
28536
|
注意:此字段可能返回 null,表示取不到有效值。
|
28699
28537
|
:type PublicIpAddresses: list of str
|
28700
28538
|
:param _CreatedTime: 创建时间。按照ISO8601标准表示,并且使用UTC时间。格式为:YYYY-MM-DDThh:mm:ssZ。
|
28701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28702
28539
|
:type CreatedTime: str
|
28703
28540
|
:param _CPU: 实例的CPU核数,单位:核。
|
28704
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28705
28541
|
:type CPU: int
|
28706
28542
|
:param _Memory: 实例内存容量,单位:GB。
|
28707
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28708
28543
|
:type Memory: int
|
28709
28544
|
:param _OsName: 操作系统名称。
|
28710
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28711
28545
|
:type OsName: str
|
28712
28546
|
:param _InstanceType: 实例机型。
|
28713
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28714
28547
|
:type InstanceType: str
|
28715
28548
|
:param _AutoscalingGroupId: 伸缩组ID
|
28716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28717
28549
|
:type AutoscalingGroupId: str
|
28718
28550
|
:param _InstanceChargeType: 实例计费模式。取值范围: PREPAID:表示预付费,即包年包月 POSTPAID_BY_HOUR:表示后付费,即按量计费 CDHPAID:CDH付费,即只对CDH计费,不对CDH上的实例计费。
|
28719
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28720
28551
|
:type InstanceChargeType: str
|
28721
28552
|
:param _IPv6Addresses: 实例的IPv6地址。
|
28722
28553
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -28742,7 +28573,6 @@ class ExistedInstance(AbstractModel):
|
|
28742
28573
|
@property
|
28743
28574
|
def Usable(self):
|
28744
28575
|
"""实例是否支持加入集群(TRUE 可以加入 FALSE 不能加入)。
|
28745
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28746
28576
|
:rtype: bool
|
28747
28577
|
"""
|
28748
28578
|
return self._Usable
|
@@ -28754,7 +28584,6 @@ class ExistedInstance(AbstractModel):
|
|
28754
28584
|
@property
|
28755
28585
|
def UnusableReason(self):
|
28756
28586
|
"""实例不支持加入的原因。
|
28757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28758
28587
|
:rtype: str
|
28759
28588
|
"""
|
28760
28589
|
return self._UnusableReason
|
@@ -28766,7 +28595,6 @@ class ExistedInstance(AbstractModel):
|
|
28766
28595
|
@property
|
28767
28596
|
def AlreadyInCluster(self):
|
28768
28597
|
"""实例已经所在的集群ID。
|
28769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28770
28598
|
:rtype: str
|
28771
28599
|
"""
|
28772
28600
|
return self._AlreadyInCluster
|
@@ -28789,7 +28617,6 @@ class ExistedInstance(AbstractModel):
|
|
28789
28617
|
@property
|
28790
28618
|
def InstanceName(self):
|
28791
28619
|
"""实例名称。
|
28792
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28793
28620
|
:rtype: str
|
28794
28621
|
"""
|
28795
28622
|
return self._InstanceName
|
@@ -28826,7 +28653,6 @@ class ExistedInstance(AbstractModel):
|
|
28826
28653
|
@property
|
28827
28654
|
def CreatedTime(self):
|
28828
28655
|
"""创建时间。按照ISO8601标准表示,并且使用UTC时间。格式为:YYYY-MM-DDThh:mm:ssZ。
|
28829
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28830
28656
|
:rtype: str
|
28831
28657
|
"""
|
28832
28658
|
return self._CreatedTime
|
@@ -28838,7 +28664,6 @@ class ExistedInstance(AbstractModel):
|
|
28838
28664
|
@property
|
28839
28665
|
def CPU(self):
|
28840
28666
|
"""实例的CPU核数,单位:核。
|
28841
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28842
28667
|
:rtype: int
|
28843
28668
|
"""
|
28844
28669
|
return self._CPU
|
@@ -28850,7 +28675,6 @@ class ExistedInstance(AbstractModel):
|
|
28850
28675
|
@property
|
28851
28676
|
def Memory(self):
|
28852
28677
|
"""实例内存容量,单位:GB。
|
28853
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28854
28678
|
:rtype: int
|
28855
28679
|
"""
|
28856
28680
|
return self._Memory
|
@@ -28862,7 +28686,6 @@ class ExistedInstance(AbstractModel):
|
|
28862
28686
|
@property
|
28863
28687
|
def OsName(self):
|
28864
28688
|
"""操作系统名称。
|
28865
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28866
28689
|
:rtype: str
|
28867
28690
|
"""
|
28868
28691
|
return self._OsName
|
@@ -28874,7 +28697,6 @@ class ExistedInstance(AbstractModel):
|
|
28874
28697
|
@property
|
28875
28698
|
def InstanceType(self):
|
28876
28699
|
"""实例机型。
|
28877
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28878
28700
|
:rtype: str
|
28879
28701
|
"""
|
28880
28702
|
return self._InstanceType
|
@@ -28886,7 +28708,6 @@ class ExistedInstance(AbstractModel):
|
|
28886
28708
|
@property
|
28887
28709
|
def AutoscalingGroupId(self):
|
28888
28710
|
"""伸缩组ID
|
28889
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28890
28711
|
:rtype: str
|
28891
28712
|
"""
|
28892
28713
|
return self._AutoscalingGroupId
|
@@ -28898,7 +28719,6 @@ class ExistedInstance(AbstractModel):
|
|
28898
28719
|
@property
|
28899
28720
|
def InstanceChargeType(self):
|
28900
28721
|
"""实例计费模式。取值范围: PREPAID:表示预付费,即包年包月 POSTPAID_BY_HOUR:表示后付费,即按量计费 CDHPAID:CDH付费,即只对CDH计费,不对CDH上的实例计费。
|
28901
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28902
28722
|
:rtype: str
|
28903
28723
|
"""
|
28904
28724
|
return self._InstanceChargeType
|
@@ -31347,26 +31167,21 @@ class InstanceAdvancedSettings(AbstractModel):
|
|
31347
31167
|
def __init__(self):
|
31348
31168
|
r"""
|
31349
31169
|
:param _DesiredPodNumber: 该节点属于podCIDR大小自定义模式时,可指定节点上运行的pod数量上限
|
31350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31351
31170
|
:type DesiredPodNumber: int
|
31352
31171
|
:param _GPUArgs: GPU驱动相关参数,相关的GPU参数获取:https://cloud.tencent.com/document/api/213/15715
|
31353
31172
|
注意:此字段可能返回 null,表示取不到有效值。
|
31354
31173
|
:type GPUArgs: :class:`tencentcloud.tke.v20180525.models.GPUArgs`
|
31355
31174
|
:param _PreStartUserScript: base64 编码的用户脚本,在初始化节点之前执行,目前只对添加已有节点生效
|
31356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31357
31175
|
:type PreStartUserScript: str
|
31358
31176
|
:param _Taints: 节点污点
|
31359
31177
|
注意:此字段可能返回 null,表示取不到有效值。
|
31360
31178
|
:type Taints: list of Taint
|
31361
31179
|
:param _MountTarget: 数据盘挂载点, 默认不挂载数据盘. 已格式化的 ext3,ext4,xfs 文件系统的数据盘将直接挂载,其他文件系统或未格式化的数据盘将自动格式化为ext4 (tlinux系统格式化成xfs)并挂载,请注意备份数据! 无数据盘或有多块数据盘的云主机此设置不生效。
|
31362
31180
|
注意,注意,多盘场景请使用下方的DataDisks数据结构,设置对应的云盘类型、云盘大小、挂载路径、是否格式化等信息。
|
31363
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31364
31181
|
:type MountTarget: str
|
31365
31182
|
:param _DockerGraphPath: dockerd --graph 指定值, 默认为 /var/lib/docker
|
31366
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31367
31183
|
:type DockerGraphPath: str
|
31368
31184
|
:param _UserScript: base64 编码的用户脚本, 此脚本会在 k8s 组件运行后执行, 需要用户保证脚本的可重入及重试逻辑, 脚本及其生成的日志文件可在节点的 /data/ccs_userscript/ 路径查看, 如果要求节点需要在进行初始化完成后才可加入调度, 可配合 unschedulable 参数使用, 在 userScript 最后初始化完成后, 添加 kubectl uncordon nodename --kubeconfig=/root/.kube/config 命令使节点加入调度
|
31369
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31370
31185
|
:type UserScript: str
|
31371
31186
|
:param _Unschedulable: 设置加入的节点是否参与调度,默认值为0,表示参与调度;非0表示不参与调度, 待节点初始化完成之后, 可执行kubectl uncordon nodename使node加入调度.
|
31372
31187
|
:type Unschedulable: int
|
@@ -31377,7 +31192,6 @@ class InstanceAdvancedSettings(AbstractModel):
|
|
31377
31192
|
注意:此字段可能返回 null,表示取不到有效值。
|
31378
31193
|
:type DataDisks: list of DataDisk
|
31379
31194
|
:param _ExtraArgs: 节点相关的自定义参数信息
|
31380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31381
31195
|
:type ExtraArgs: :class:`tencentcloud.tke.v20180525.models.InstanceExtraArgs`
|
31382
31196
|
"""
|
31383
31197
|
self._DesiredPodNumber = None
|
@@ -31395,7 +31209,6 @@ class InstanceAdvancedSettings(AbstractModel):
|
|
31395
31209
|
@property
|
31396
31210
|
def DesiredPodNumber(self):
|
31397
31211
|
"""该节点属于podCIDR大小自定义模式时,可指定节点上运行的pod数量上限
|
31398
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31399
31212
|
:rtype: int
|
31400
31213
|
"""
|
31401
31214
|
return self._DesiredPodNumber
|
@@ -31419,7 +31232,6 @@ class InstanceAdvancedSettings(AbstractModel):
|
|
31419
31232
|
@property
|
31420
31233
|
def PreStartUserScript(self):
|
31421
31234
|
"""base64 编码的用户脚本,在初始化节点之前执行,目前只对添加已有节点生效
|
31422
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31423
31235
|
:rtype: str
|
31424
31236
|
"""
|
31425
31237
|
return self._PreStartUserScript
|
@@ -31444,7 +31256,6 @@ class InstanceAdvancedSettings(AbstractModel):
|
|
31444
31256
|
def MountTarget(self):
|
31445
31257
|
"""数据盘挂载点, 默认不挂载数据盘. 已格式化的 ext3,ext4,xfs 文件系统的数据盘将直接挂载,其他文件系统或未格式化的数据盘将自动格式化为ext4 (tlinux系统格式化成xfs)并挂载,请注意备份数据! 无数据盘或有多块数据盘的云主机此设置不生效。
|
31446
31258
|
注意,注意,多盘场景请使用下方的DataDisks数据结构,设置对应的云盘类型、云盘大小、挂载路径、是否格式化等信息。
|
31447
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31448
31259
|
:rtype: str
|
31449
31260
|
"""
|
31450
31261
|
return self._MountTarget
|
@@ -31456,7 +31267,6 @@ class InstanceAdvancedSettings(AbstractModel):
|
|
31456
31267
|
@property
|
31457
31268
|
def DockerGraphPath(self):
|
31458
31269
|
"""dockerd --graph 指定值, 默认为 /var/lib/docker
|
31459
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31460
31270
|
:rtype: str
|
31461
31271
|
"""
|
31462
31272
|
return self._DockerGraphPath
|
@@ -31468,7 +31278,6 @@ class InstanceAdvancedSettings(AbstractModel):
|
|
31468
31278
|
@property
|
31469
31279
|
def UserScript(self):
|
31470
31280
|
"""base64 编码的用户脚本, 此脚本会在 k8s 组件运行后执行, 需要用户保证脚本的可重入及重试逻辑, 脚本及其生成的日志文件可在节点的 /data/ccs_userscript/ 路径查看, 如果要求节点需要在进行初始化完成后才可加入调度, 可配合 unschedulable 参数使用, 在 userScript 最后初始化完成后, 添加 kubectl uncordon nodename --kubeconfig=/root/.kube/config 命令使节点加入调度
|
31471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31472
31281
|
:rtype: str
|
31473
31282
|
"""
|
31474
31283
|
return self._UserScript
|
@@ -31515,7 +31324,6 @@ class InstanceAdvancedSettings(AbstractModel):
|
|
31515
31324
|
@property
|
31516
31325
|
def ExtraArgs(self):
|
31517
31326
|
"""节点相关的自定义参数信息
|
31518
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31519
31327
|
:rtype: :class:`tencentcloud.tke.v20180525.models.InstanceExtraArgs`
|
31520
31328
|
"""
|
31521
31329
|
return self._ExtraArgs
|
@@ -33396,7 +33204,6 @@ class LoginSettings(AbstractModel):
|
|
33396
33204
|
注意:此字段可能返回 null,表示取不到有效值。
|
33397
33205
|
:type KeyIds: list of str
|
33398
33206
|
:param _KeepImageLogin: 保持镜像的原始设置。该参数与Password或KeyIds.N不能同时指定。只有使用自定义镜像、共享镜像或外部导入镜像创建实例时才能指定该参数为true。取值范围:<li>true:表示保持镜像的登录设置</li><li>false:表示不保持镜像的登录设置</li>默认取值:false。
|
33399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33400
33207
|
:type KeepImageLogin: str
|
33401
33208
|
"""
|
33402
33209
|
self._Password = None
|
@@ -33429,7 +33236,6 @@ class LoginSettings(AbstractModel):
|
|
33429
33236
|
@property
|
33430
33237
|
def KeepImageLogin(self):
|
33431
33238
|
"""保持镜像的原始设置。该参数与Password或KeyIds.N不能同时指定。只有使用自定义镜像、共享镜像或外部导入镜像创建实例时才能指定该参数为true。取值范围:<li>true:表示保持镜像的登录设置</li><li>false:表示不保持镜像的登录设置</li>默认取值:false。
|
33432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33433
33239
|
:rtype: str
|
33434
33240
|
"""
|
33435
33241
|
return self._KeepImageLogin
|
@@ -33849,25 +33655,18 @@ class ModifyClusterAttributeResponse(AbstractModel):
|
|
33849
33655
|
def __init__(self):
|
33850
33656
|
r"""
|
33851
33657
|
:param _ProjectId: 集群所属项目
|
33852
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33853
33658
|
:type ProjectId: int
|
33854
33659
|
:param _ClusterName: 集群名称
|
33855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33856
33660
|
:type ClusterName: str
|
33857
33661
|
:param _ClusterDesc: 集群描述
|
33858
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33859
33662
|
:type ClusterDesc: str
|
33860
33663
|
:param _ClusterLevel: 集群等级
|
33861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33862
33664
|
:type ClusterLevel: str
|
33863
33665
|
:param _AutoUpgradeClusterLevel: 自动变配集群等级
|
33864
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33865
33666
|
:type AutoUpgradeClusterLevel: :class:`tencentcloud.tke.v20180525.models.AutoUpgradeClusterLevel`
|
33866
33667
|
:param _QGPUShareEnable: 是否开启QGPU共享
|
33867
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33868
33668
|
:type QGPUShareEnable: bool
|
33869
33669
|
:param _ClusterProperty: 集群属性
|
33870
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33871
33670
|
:type ClusterProperty: :class:`tencentcloud.tke.v20180525.models.ClusterProperty`
|
33872
33671
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
33873
33672
|
:type RequestId: str
|
@@ -33884,7 +33683,6 @@ class ModifyClusterAttributeResponse(AbstractModel):
|
|
33884
33683
|
@property
|
33885
33684
|
def ProjectId(self):
|
33886
33685
|
"""集群所属项目
|
33887
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33888
33686
|
:rtype: int
|
33889
33687
|
"""
|
33890
33688
|
return self._ProjectId
|
@@ -33896,7 +33694,6 @@ class ModifyClusterAttributeResponse(AbstractModel):
|
|
33896
33694
|
@property
|
33897
33695
|
def ClusterName(self):
|
33898
33696
|
"""集群名称
|
33899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33900
33697
|
:rtype: str
|
33901
33698
|
"""
|
33902
33699
|
return self._ClusterName
|
@@ -33908,7 +33705,6 @@ class ModifyClusterAttributeResponse(AbstractModel):
|
|
33908
33705
|
@property
|
33909
33706
|
def ClusterDesc(self):
|
33910
33707
|
"""集群描述
|
33911
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33912
33708
|
:rtype: str
|
33913
33709
|
"""
|
33914
33710
|
return self._ClusterDesc
|
@@ -33920,7 +33716,6 @@ class ModifyClusterAttributeResponse(AbstractModel):
|
|
33920
33716
|
@property
|
33921
33717
|
def ClusterLevel(self):
|
33922
33718
|
"""集群等级
|
33923
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33924
33719
|
:rtype: str
|
33925
33720
|
"""
|
33926
33721
|
return self._ClusterLevel
|
@@ -33932,7 +33727,6 @@ class ModifyClusterAttributeResponse(AbstractModel):
|
|
33932
33727
|
@property
|
33933
33728
|
def AutoUpgradeClusterLevel(self):
|
33934
33729
|
"""自动变配集群等级
|
33935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33936
33730
|
:rtype: :class:`tencentcloud.tke.v20180525.models.AutoUpgradeClusterLevel`
|
33937
33731
|
"""
|
33938
33732
|
return self._AutoUpgradeClusterLevel
|
@@ -33944,7 +33738,6 @@ class ModifyClusterAttributeResponse(AbstractModel):
|
|
33944
33738
|
@property
|
33945
33739
|
def QGPUShareEnable(self):
|
33946
33740
|
"""是否开启QGPU共享
|
33947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33948
33741
|
:rtype: bool
|
33949
33742
|
"""
|
33950
33743
|
return self._QGPUShareEnable
|
@@ -33956,7 +33749,6 @@ class ModifyClusterAttributeResponse(AbstractModel):
|
|
33956
33749
|
@property
|
33957
33750
|
def ClusterProperty(self):
|
33958
33751
|
"""集群属性
|
33959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33960
33752
|
:rtype: :class:`tencentcloud.tke.v20180525.models.ClusterProperty`
|
33961
33753
|
"""
|
33962
33754
|
return self._ClusterProperty
|
@@ -36345,40 +36137,30 @@ class NodePool(AbstractModel):
|
|
36345
36137
|
:param _NodeCountSummary: NodeCountSummary 节点列表
|
36346
36138
|
:type NodeCountSummary: :class:`tencentcloud.tke.v20180525.models.NodeCountSummary`
|
36347
36139
|
:param _AutoscalingGroupStatus: 状态信息
|
36348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36349
36140
|
:type AutoscalingGroupStatus: str
|
36350
36141
|
:param _MaxNodesNum: 最大节点数量
|
36351
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36352
36142
|
:type MaxNodesNum: int
|
36353
36143
|
:param _MinNodesNum: 最小节点数量
|
36354
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36355
36144
|
:type MinNodesNum: int
|
36356
36145
|
:param _DesiredNodesNum: 期望的节点数量
|
36357
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36358
36146
|
:type DesiredNodesNum: int
|
36359
36147
|
:param _RuntimeConfig: 运行时描述
|
36360
36148
|
注意:此字段可能返回 null,表示取不到有效值。
|
36361
36149
|
:type RuntimeConfig: :class:`tencentcloud.tke.v20180525.models.RuntimeConfig`
|
36362
36150
|
:param _NodePoolOs: 节点池osName
|
36363
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36364
36151
|
:type NodePoolOs: str
|
36365
36152
|
:param _OsCustomizeType: 容器的镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
|
36366
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36367
36153
|
:type OsCustomizeType: str
|
36368
36154
|
:param _ImageId: 镜像id
|
36369
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36370
36155
|
:type ImageId: str
|
36371
36156
|
:param _DesiredPodNum: 集群属于节点podCIDR大小自定义模式时,节点池需要带上pod数量属性
|
36372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36373
36157
|
:type DesiredPodNum: int
|
36374
36158
|
:param _UserScript: 用户自定义脚本
|
36375
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36376
36159
|
:type UserScript: str
|
36377
36160
|
:param _Tags: 资源标签
|
36378
36161
|
注意:此字段可能返回 null,表示取不到有效值。
|
36379
36162
|
:type Tags: list of Tag
|
36380
36163
|
:param _DeletionProtection: 删除保护开关
|
36381
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36382
36164
|
:type DeletionProtection: bool
|
36383
36165
|
:param _ExtraArgs: 节点配置
|
36384
36166
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -36387,16 +36169,13 @@ class NodePool(AbstractModel):
|
|
36387
36169
|
注意:此字段可能返回 null,表示取不到有效值。
|
36388
36170
|
:type GPUArgs: :class:`tencentcloud.tke.v20180525.models.GPUArgs`
|
36389
36171
|
:param _DockerGraphPath: dockerd --graph 指定值, 默认为 /var/lib/docker
|
36390
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36391
36172
|
:type DockerGraphPath: str
|
36392
36173
|
:param _DataDisks: 多盘数据盘挂载信息:新建节点时请确保购买CVM的参数传递了购买多个数据盘的信息,如CreateClusterInstances API的RunInstancesPara下的DataDisks也需要设置购买多个数据盘, 具体可以参考CreateClusterInstances接口的添加集群节点(多块数据盘)样例;添加已有节点时,请确保填写的分区信息在节点上真实存在
|
36393
36174
|
注意:此字段可能返回 null,表示取不到有效值。
|
36394
36175
|
:type DataDisks: list of DataDisk
|
36395
36176
|
:param _Unschedulable: 是否不可调度
|
36396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36397
36177
|
:type Unschedulable: int
|
36398
36178
|
:param _PreStartUserScript: 用户自定义脚本,在UserScript前执行
|
36399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36400
36179
|
:type PreStartUserScript: str
|
36401
36180
|
"""
|
36402
36181
|
self._NodePoolId = None
|
@@ -36541,7 +36320,6 @@ class NodePool(AbstractModel):
|
|
36541
36320
|
@property
|
36542
36321
|
def AutoscalingGroupStatus(self):
|
36543
36322
|
"""状态信息
|
36544
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36545
36323
|
:rtype: str
|
36546
36324
|
"""
|
36547
36325
|
return self._AutoscalingGroupStatus
|
@@ -36553,7 +36331,6 @@ class NodePool(AbstractModel):
|
|
36553
36331
|
@property
|
36554
36332
|
def MaxNodesNum(self):
|
36555
36333
|
"""最大节点数量
|
36556
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36557
36334
|
:rtype: int
|
36558
36335
|
"""
|
36559
36336
|
return self._MaxNodesNum
|
@@ -36565,7 +36342,6 @@ class NodePool(AbstractModel):
|
|
36565
36342
|
@property
|
36566
36343
|
def MinNodesNum(self):
|
36567
36344
|
"""最小节点数量
|
36568
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36569
36345
|
:rtype: int
|
36570
36346
|
"""
|
36571
36347
|
return self._MinNodesNum
|
@@ -36577,7 +36353,6 @@ class NodePool(AbstractModel):
|
|
36577
36353
|
@property
|
36578
36354
|
def DesiredNodesNum(self):
|
36579
36355
|
"""期望的节点数量
|
36580
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36581
36356
|
:rtype: int
|
36582
36357
|
"""
|
36583
36358
|
return self._DesiredNodesNum
|
@@ -36601,7 +36376,6 @@ class NodePool(AbstractModel):
|
|
36601
36376
|
@property
|
36602
36377
|
def NodePoolOs(self):
|
36603
36378
|
"""节点池osName
|
36604
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36605
36379
|
:rtype: str
|
36606
36380
|
"""
|
36607
36381
|
return self._NodePoolOs
|
@@ -36613,7 +36387,6 @@ class NodePool(AbstractModel):
|
|
36613
36387
|
@property
|
36614
36388
|
def OsCustomizeType(self):
|
36615
36389
|
"""容器的镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
|
36616
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36617
36390
|
:rtype: str
|
36618
36391
|
"""
|
36619
36392
|
return self._OsCustomizeType
|
@@ -36625,7 +36398,6 @@ class NodePool(AbstractModel):
|
|
36625
36398
|
@property
|
36626
36399
|
def ImageId(self):
|
36627
36400
|
"""镜像id
|
36628
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36629
36401
|
:rtype: str
|
36630
36402
|
"""
|
36631
36403
|
return self._ImageId
|
@@ -36637,7 +36409,6 @@ class NodePool(AbstractModel):
|
|
36637
36409
|
@property
|
36638
36410
|
def DesiredPodNum(self):
|
36639
36411
|
"""集群属于节点podCIDR大小自定义模式时,节点池需要带上pod数量属性
|
36640
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36641
36412
|
:rtype: int
|
36642
36413
|
"""
|
36643
36414
|
return self._DesiredPodNum
|
@@ -36649,7 +36420,6 @@ class NodePool(AbstractModel):
|
|
36649
36420
|
@property
|
36650
36421
|
def UserScript(self):
|
36651
36422
|
"""用户自定义脚本
|
36652
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36653
36423
|
:rtype: str
|
36654
36424
|
"""
|
36655
36425
|
return self._UserScript
|
@@ -36673,7 +36443,6 @@ class NodePool(AbstractModel):
|
|
36673
36443
|
@property
|
36674
36444
|
def DeletionProtection(self):
|
36675
36445
|
"""删除保护开关
|
36676
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36677
36446
|
:rtype: bool
|
36678
36447
|
"""
|
36679
36448
|
return self._DeletionProtection
|
@@ -36709,7 +36478,6 @@ class NodePool(AbstractModel):
|
|
36709
36478
|
@property
|
36710
36479
|
def DockerGraphPath(self):
|
36711
36480
|
"""dockerd --graph 指定值, 默认为 /var/lib/docker
|
36712
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36713
36481
|
:rtype: str
|
36714
36482
|
"""
|
36715
36483
|
return self._DockerGraphPath
|
@@ -36733,7 +36501,6 @@ class NodePool(AbstractModel):
|
|
36733
36501
|
@property
|
36734
36502
|
def Unschedulable(self):
|
36735
36503
|
"""是否不可调度
|
36736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36737
36504
|
:rtype: int
|
36738
36505
|
"""
|
36739
36506
|
return self._Unschedulable
|
@@ -36745,7 +36512,6 @@ class NodePool(AbstractModel):
|
|
36745
36512
|
@property
|
36746
36513
|
def PreStartUserScript(self):
|
36747
36514
|
"""用户自定义脚本,在UserScript前执行
|
36748
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36749
36515
|
:rtype: str
|
36750
36516
|
"""
|
36751
36517
|
return self._PreStartUserScript
|
@@ -37503,25 +37269,18 @@ class PendingRelease(AbstractModel):
|
|
37503
37269
|
def __init__(self):
|
37504
37270
|
r"""
|
37505
37271
|
:param _Condition: 应用状态详情
|
37506
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37507
37272
|
:type Condition: str
|
37508
37273
|
:param _CreatedTime: 创建时间
|
37509
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37510
37274
|
:type CreatedTime: str
|
37511
37275
|
:param _ID: 应用ID
|
37512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37513
37276
|
:type ID: str
|
37514
37277
|
:param _Name: 应用名称
|
37515
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37516
37278
|
:type Name: str
|
37517
37279
|
:param _Namespace: 应用命名空间
|
37518
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37519
37280
|
:type Namespace: str
|
37520
37281
|
:param _Status: 应用状态(参考helm的发布状态: unknown, deployed, uninstalled, superseded, failed, uninstalling, pending-install, pending-upgrade 或 pending-rollback)
|
37521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37522
37282
|
:type Status: str
|
37523
37283
|
:param _UpdatedTime: 更新时间
|
37524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37525
37284
|
:type UpdatedTime: str
|
37526
37285
|
"""
|
37527
37286
|
self._Condition = None
|
@@ -37535,7 +37294,6 @@ class PendingRelease(AbstractModel):
|
|
37535
37294
|
@property
|
37536
37295
|
def Condition(self):
|
37537
37296
|
"""应用状态详情
|
37538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37539
37297
|
:rtype: str
|
37540
37298
|
"""
|
37541
37299
|
return self._Condition
|
@@ -37547,7 +37305,6 @@ class PendingRelease(AbstractModel):
|
|
37547
37305
|
@property
|
37548
37306
|
def CreatedTime(self):
|
37549
37307
|
"""创建时间
|
37550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37551
37308
|
:rtype: str
|
37552
37309
|
"""
|
37553
37310
|
return self._CreatedTime
|
@@ -37559,7 +37316,6 @@ class PendingRelease(AbstractModel):
|
|
37559
37316
|
@property
|
37560
37317
|
def ID(self):
|
37561
37318
|
"""应用ID
|
37562
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37563
37319
|
:rtype: str
|
37564
37320
|
"""
|
37565
37321
|
return self._ID
|
@@ -37571,7 +37327,6 @@ class PendingRelease(AbstractModel):
|
|
37571
37327
|
@property
|
37572
37328
|
def Name(self):
|
37573
37329
|
"""应用名称
|
37574
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37575
37330
|
:rtype: str
|
37576
37331
|
"""
|
37577
37332
|
return self._Name
|
@@ -37583,7 +37338,6 @@ class PendingRelease(AbstractModel):
|
|
37583
37338
|
@property
|
37584
37339
|
def Namespace(self):
|
37585
37340
|
"""应用命名空间
|
37586
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37587
37341
|
:rtype: str
|
37588
37342
|
"""
|
37589
37343
|
return self._Namespace
|
@@ -37595,7 +37349,6 @@ class PendingRelease(AbstractModel):
|
|
37595
37349
|
@property
|
37596
37350
|
def Status(self):
|
37597
37351
|
"""应用状态(参考helm的发布状态: unknown, deployed, uninstalled, superseded, failed, uninstalling, pending-install, pending-upgrade 或 pending-rollback)
|
37598
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37599
37352
|
:rtype: str
|
37600
37353
|
"""
|
37601
37354
|
return self._Status
|
@@ -37607,7 +37360,6 @@ class PendingRelease(AbstractModel):
|
|
37607
37360
|
@property
|
37608
37361
|
def UpdatedTime(self):
|
37609
37362
|
"""更新时间
|
37610
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37611
37363
|
:rtype: str
|
37612
37364
|
"""
|
37613
37365
|
return self._UpdatedTime
|
@@ -42119,22 +41871,16 @@ class RegionInstance(AbstractModel):
|
|
42119
41871
|
def __init__(self):
|
42120
41872
|
r"""
|
42121
41873
|
:param _RegionName: 地域名称
|
42122
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42123
41874
|
:type RegionName: str
|
42124
41875
|
:param _RegionId: 地域ID
|
42125
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42126
41876
|
:type RegionId: int
|
42127
41877
|
:param _Status: 地域状态
|
42128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42129
41878
|
:type Status: str
|
42130
41879
|
:param _FeatureGates: 地域特性开关(按照JSON的形式返回所有属性)
|
42131
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42132
41880
|
:type FeatureGates: str
|
42133
41881
|
:param _Alias: 地域简称
|
42134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42135
41882
|
:type Alias: str
|
42136
41883
|
:param _Remark: 地域白名单
|
42137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42138
41884
|
:type Remark: str
|
42139
41885
|
"""
|
42140
41886
|
self._RegionName = None
|
@@ -42147,7 +41893,6 @@ class RegionInstance(AbstractModel):
|
|
42147
41893
|
@property
|
42148
41894
|
def RegionName(self):
|
42149
41895
|
"""地域名称
|
42150
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42151
41896
|
:rtype: str
|
42152
41897
|
"""
|
42153
41898
|
return self._RegionName
|
@@ -42159,7 +41904,6 @@ class RegionInstance(AbstractModel):
|
|
42159
41904
|
@property
|
42160
41905
|
def RegionId(self):
|
42161
41906
|
"""地域ID
|
42162
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42163
41907
|
:rtype: int
|
42164
41908
|
"""
|
42165
41909
|
return self._RegionId
|
@@ -42171,7 +41915,6 @@ class RegionInstance(AbstractModel):
|
|
42171
41915
|
@property
|
42172
41916
|
def Status(self):
|
42173
41917
|
"""地域状态
|
42174
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42175
41918
|
:rtype: str
|
42176
41919
|
"""
|
42177
41920
|
return self._Status
|
@@ -42183,7 +41926,6 @@ class RegionInstance(AbstractModel):
|
|
42183
41926
|
@property
|
42184
41927
|
def FeatureGates(self):
|
42185
41928
|
"""地域特性开关(按照JSON的形式返回所有属性)
|
42186
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42187
41929
|
:rtype: str
|
42188
41930
|
"""
|
42189
41931
|
return self._FeatureGates
|
@@ -42195,7 +41937,6 @@ class RegionInstance(AbstractModel):
|
|
42195
41937
|
@property
|
42196
41938
|
def Alias(self):
|
42197
41939
|
"""地域简称
|
42198
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42199
41940
|
:rtype: str
|
42200
41941
|
"""
|
42201
41942
|
return self._Alias
|
@@ -42207,7 +41948,6 @@ class RegionInstance(AbstractModel):
|
|
42207
41948
|
@property
|
42208
41949
|
def Remark(self):
|
42209
41950
|
"""地域白名单
|
42210
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42211
41951
|
:rtype: str
|
42212
41952
|
"""
|
42213
41953
|
return self._Remark
|
@@ -42246,25 +41986,18 @@ class Release(AbstractModel):
|
|
42246
41986
|
:param _Namespace: 应用命名空间
|
42247
41987
|
:type Namespace: str
|
42248
41988
|
:param _Revision: 应用当前版本
|
42249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42250
41989
|
:type Revision: str
|
42251
41990
|
:param _Status: 应用状态
|
42252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42253
41991
|
:type Status: str
|
42254
41992
|
:param _ChartName: 制品名称
|
42255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42256
41993
|
:type ChartName: str
|
42257
41994
|
:param _ChartVersion: 制品版本
|
42258
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42259
41995
|
:type ChartVersion: str
|
42260
41996
|
:param _AppVersion: 制品应用版本
|
42261
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42262
41997
|
:type AppVersion: str
|
42263
41998
|
:param _UpdatedTime: 更新时间
|
42264
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42265
41999
|
:type UpdatedTime: str
|
42266
42000
|
:param _Description: 应用描述
|
42267
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42268
42001
|
:type Description: str
|
42269
42002
|
"""
|
42270
42003
|
self._Name = None
|
@@ -42302,7 +42035,6 @@ class Release(AbstractModel):
|
|
42302
42035
|
@property
|
42303
42036
|
def Revision(self):
|
42304
42037
|
"""应用当前版本
|
42305
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42306
42038
|
:rtype: str
|
42307
42039
|
"""
|
42308
42040
|
return self._Revision
|
@@ -42314,7 +42046,6 @@ class Release(AbstractModel):
|
|
42314
42046
|
@property
|
42315
42047
|
def Status(self):
|
42316
42048
|
"""应用状态
|
42317
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42318
42049
|
:rtype: str
|
42319
42050
|
"""
|
42320
42051
|
return self._Status
|
@@ -42326,7 +42057,6 @@ class Release(AbstractModel):
|
|
42326
42057
|
@property
|
42327
42058
|
def ChartName(self):
|
42328
42059
|
"""制品名称
|
42329
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42330
42060
|
:rtype: str
|
42331
42061
|
"""
|
42332
42062
|
return self._ChartName
|
@@ -42338,7 +42068,6 @@ class Release(AbstractModel):
|
|
42338
42068
|
@property
|
42339
42069
|
def ChartVersion(self):
|
42340
42070
|
"""制品版本
|
42341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42342
42071
|
:rtype: str
|
42343
42072
|
"""
|
42344
42073
|
return self._ChartVersion
|
@@ -42350,7 +42079,6 @@ class Release(AbstractModel):
|
|
42350
42079
|
@property
|
42351
42080
|
def AppVersion(self):
|
42352
42081
|
"""制品应用版本
|
42353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42354
42082
|
:rtype: str
|
42355
42083
|
"""
|
42356
42084
|
return self._AppVersion
|
@@ -42362,7 +42090,6 @@ class Release(AbstractModel):
|
|
42362
42090
|
@property
|
42363
42091
|
def UpdatedTime(self):
|
42364
42092
|
"""更新时间
|
42365
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42366
42093
|
:rtype: str
|
42367
42094
|
"""
|
42368
42095
|
return self._UpdatedTime
|
@@ -42374,7 +42101,6 @@ class Release(AbstractModel):
|
|
42374
42101
|
@property
|
42375
42102
|
def Description(self):
|
42376
42103
|
"""应用描述
|
42377
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42378
42104
|
:rtype: str
|
42379
42105
|
"""
|
42380
42106
|
return self._Description
|
@@ -42416,52 +42142,36 @@ class ReleaseDetails(AbstractModel):
|
|
42416
42142
|
:param _Namespace: 应用所在命名空间
|
42417
42143
|
:type Namespace: str
|
42418
42144
|
:param _Version: 应用当前版本
|
42419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42420
42145
|
:type Version: int
|
42421
42146
|
:param _Status: 应用状态
|
42422
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42423
42147
|
:type Status: str
|
42424
42148
|
:param _Description: 应用描述
|
42425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42426
42149
|
:type Description: str
|
42427
42150
|
:param _Notes: 应用提示
|
42428
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42429
42151
|
:type Notes: str
|
42430
42152
|
:param _Config: 用户自定义参数
|
42431
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42432
42153
|
:type Config: str
|
42433
42154
|
:param _Manifest: 应用资源详情
|
42434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42435
42155
|
:type Manifest: str
|
42436
42156
|
:param _ChartVersion: 应用制品版本
|
42437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42438
42157
|
:type ChartVersion: str
|
42439
42158
|
:param _ChartName: 应用制品名称
|
42440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42441
42159
|
:type ChartName: str
|
42442
42160
|
:param _ChartDescription: 应用制品描述
|
42443
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42444
42161
|
:type ChartDescription: str
|
42445
42162
|
:param _AppVersion: 应用制品app版本
|
42446
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42447
42163
|
:type AppVersion: str
|
42448
42164
|
:param _FirstDeployedTime: 应用首次部署时间
|
42449
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42450
42165
|
:type FirstDeployedTime: str
|
42451
42166
|
:param _LastDeployedTime: 应用最近部署时间
|
42452
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42453
42167
|
:type LastDeployedTime: str
|
42454
42168
|
:param _ComputedValues: 应用参数
|
42455
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42456
42169
|
:type ComputedValues: str
|
42457
42170
|
:param _ChartFrom: chart 的来源, tke-market, others
|
42458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42459
42171
|
:type ChartFrom: str
|
42460
42172
|
:param _ChartURL: 第三方chart 的安装地址
|
42461
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42462
42173
|
:type ChartURL: str
|
42463
42174
|
:param _Resources: 通过chart 创建的资源
|
42464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42465
42175
|
:type Resources: str
|
42466
42176
|
"""
|
42467
42177
|
self._Name = None
|
@@ -42508,7 +42218,6 @@ class ReleaseDetails(AbstractModel):
|
|
42508
42218
|
@property
|
42509
42219
|
def Version(self):
|
42510
42220
|
"""应用当前版本
|
42511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42512
42221
|
:rtype: int
|
42513
42222
|
"""
|
42514
42223
|
return self._Version
|
@@ -42520,7 +42229,6 @@ class ReleaseDetails(AbstractModel):
|
|
42520
42229
|
@property
|
42521
42230
|
def Status(self):
|
42522
42231
|
"""应用状态
|
42523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42524
42232
|
:rtype: str
|
42525
42233
|
"""
|
42526
42234
|
return self._Status
|
@@ -42532,7 +42240,6 @@ class ReleaseDetails(AbstractModel):
|
|
42532
42240
|
@property
|
42533
42241
|
def Description(self):
|
42534
42242
|
"""应用描述
|
42535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42536
42243
|
:rtype: str
|
42537
42244
|
"""
|
42538
42245
|
return self._Description
|
@@ -42544,7 +42251,6 @@ class ReleaseDetails(AbstractModel):
|
|
42544
42251
|
@property
|
42545
42252
|
def Notes(self):
|
42546
42253
|
"""应用提示
|
42547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42548
42254
|
:rtype: str
|
42549
42255
|
"""
|
42550
42256
|
return self._Notes
|
@@ -42556,7 +42262,6 @@ class ReleaseDetails(AbstractModel):
|
|
42556
42262
|
@property
|
42557
42263
|
def Config(self):
|
42558
42264
|
"""用户自定义参数
|
42559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42560
42265
|
:rtype: str
|
42561
42266
|
"""
|
42562
42267
|
return self._Config
|
@@ -42568,7 +42273,6 @@ class ReleaseDetails(AbstractModel):
|
|
42568
42273
|
@property
|
42569
42274
|
def Manifest(self):
|
42570
42275
|
"""应用资源详情
|
42571
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42572
42276
|
:rtype: str
|
42573
42277
|
"""
|
42574
42278
|
return self._Manifest
|
@@ -42580,7 +42284,6 @@ class ReleaseDetails(AbstractModel):
|
|
42580
42284
|
@property
|
42581
42285
|
def ChartVersion(self):
|
42582
42286
|
"""应用制品版本
|
42583
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42584
42287
|
:rtype: str
|
42585
42288
|
"""
|
42586
42289
|
return self._ChartVersion
|
@@ -42592,7 +42295,6 @@ class ReleaseDetails(AbstractModel):
|
|
42592
42295
|
@property
|
42593
42296
|
def ChartName(self):
|
42594
42297
|
"""应用制品名称
|
42595
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42596
42298
|
:rtype: str
|
42597
42299
|
"""
|
42598
42300
|
return self._ChartName
|
@@ -42604,7 +42306,6 @@ class ReleaseDetails(AbstractModel):
|
|
42604
42306
|
@property
|
42605
42307
|
def ChartDescription(self):
|
42606
42308
|
"""应用制品描述
|
42607
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42608
42309
|
:rtype: str
|
42609
42310
|
"""
|
42610
42311
|
return self._ChartDescription
|
@@ -42616,7 +42317,6 @@ class ReleaseDetails(AbstractModel):
|
|
42616
42317
|
@property
|
42617
42318
|
def AppVersion(self):
|
42618
42319
|
"""应用制品app版本
|
42619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42620
42320
|
:rtype: str
|
42621
42321
|
"""
|
42622
42322
|
return self._AppVersion
|
@@ -42628,7 +42328,6 @@ class ReleaseDetails(AbstractModel):
|
|
42628
42328
|
@property
|
42629
42329
|
def FirstDeployedTime(self):
|
42630
42330
|
"""应用首次部署时间
|
42631
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42632
42331
|
:rtype: str
|
42633
42332
|
"""
|
42634
42333
|
return self._FirstDeployedTime
|
@@ -42640,7 +42339,6 @@ class ReleaseDetails(AbstractModel):
|
|
42640
42339
|
@property
|
42641
42340
|
def LastDeployedTime(self):
|
42642
42341
|
"""应用最近部署时间
|
42643
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42644
42342
|
:rtype: str
|
42645
42343
|
"""
|
42646
42344
|
return self._LastDeployedTime
|
@@ -42652,7 +42350,6 @@ class ReleaseDetails(AbstractModel):
|
|
42652
42350
|
@property
|
42653
42351
|
def ComputedValues(self):
|
42654
42352
|
"""应用参数
|
42655
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42656
42353
|
:rtype: str
|
42657
42354
|
"""
|
42658
42355
|
return self._ComputedValues
|
@@ -42664,7 +42361,6 @@ class ReleaseDetails(AbstractModel):
|
|
42664
42361
|
@property
|
42665
42362
|
def ChartFrom(self):
|
42666
42363
|
"""chart 的来源, tke-market, others
|
42667
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42668
42364
|
:rtype: str
|
42669
42365
|
"""
|
42670
42366
|
return self._ChartFrom
|
@@ -42676,7 +42372,6 @@ class ReleaseDetails(AbstractModel):
|
|
42676
42372
|
@property
|
42677
42373
|
def ChartURL(self):
|
42678
42374
|
"""第三方chart 的安装地址
|
42679
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42680
42375
|
:rtype: str
|
42681
42376
|
"""
|
42682
42377
|
return self._ChartURL
|
@@ -42688,7 +42383,6 @@ class ReleaseDetails(AbstractModel):
|
|
42688
42383
|
@property
|
42689
42384
|
def Resources(self):
|
42690
42385
|
"""通过chart 创建的资源
|
42691
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42692
42386
|
:rtype: str
|
42693
42387
|
"""
|
42694
42388
|
return self._Resources
|
@@ -44091,7 +43785,6 @@ class RollbackClusterReleaseResponse(AbstractModel):
|
|
44091
43785
|
def __init__(self):
|
44092
43786
|
r"""
|
44093
43787
|
:param _Release: 应用详情
|
44094
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44095
43788
|
:type Release: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
44096
43789
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
44097
43790
|
:type RequestId: str
|
@@ -44102,7 +43795,6 @@ class RollbackClusterReleaseResponse(AbstractModel):
|
|
44102
43795
|
@property
|
44103
43796
|
def Release(self):
|
44104
43797
|
"""应用详情
|
44105
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44106
43798
|
:rtype: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
44107
43799
|
"""
|
44108
43800
|
return self._Release
|
@@ -44463,16 +44155,14 @@ class RunMonitorServiceEnabled(AbstractModel):
|
|
44463
44155
|
|
44464
44156
|
def __init__(self):
|
44465
44157
|
r"""
|
44466
|
-
:param _Enabled: 是否开启[云监控](/document/product/248)服务。取值范围:<br><li>true
|
44467
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44158
|
+
:param _Enabled: 是否开启[云监控](/document/product/248)服务。取值范围:<br><li>true:表示开启云监控服务</li><li>false:表示不开启云监控服务</li><br>默认取值:true。
|
44468
44159
|
:type Enabled: bool
|
44469
44160
|
"""
|
44470
44161
|
self._Enabled = None
|
44471
44162
|
|
44472
44163
|
@property
|
44473
44164
|
def Enabled(self):
|
44474
|
-
"""是否开启[云监控](/document/product/248)服务。取值范围:<br><li>true
|
44475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44165
|
+
"""是否开启[云监控](/document/product/248)服务。取值范围:<br><li>true:表示开启云监控服务</li><li>false:表示不开启云监控服务</li><br>默认取值:true。
|
44476
44166
|
:rtype: bool
|
44477
44167
|
"""
|
44478
44168
|
return self._Enabled
|
@@ -45170,7 +44860,6 @@ class SetNodePoolNodeProtectionResponse(AbstractModel):
|
|
45170
44860
|
def __init__(self):
|
45171
44861
|
r"""
|
45172
44862
|
:param _SucceedInstanceIds: 成功设置的节点id
|
45173
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45174
44863
|
:type SucceedInstanceIds: list of str
|
45175
44864
|
:param _FailedInstanceIds: 没有成功设置的节点id
|
45176
44865
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -45185,7 +44874,6 @@ class SetNodePoolNodeProtectionResponse(AbstractModel):
|
|
45185
44874
|
@property
|
45186
44875
|
def SucceedInstanceIds(self):
|
45187
44876
|
"""成功设置的节点id
|
45188
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45189
44877
|
:rtype: list of str
|
45190
44878
|
"""
|
45191
44879
|
return self._SucceedInstanceIds
|
@@ -46468,7 +46156,6 @@ class UninstallClusterReleaseResponse(AbstractModel):
|
|
46468
46156
|
def __init__(self):
|
46469
46157
|
r"""
|
46470
46158
|
:param _Release: 应用详情
|
46471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46472
46159
|
:type Release: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
46473
46160
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
46474
46161
|
:type RequestId: str
|
@@ -46479,7 +46166,6 @@ class UninstallClusterReleaseResponse(AbstractModel):
|
|
46479
46166
|
@property
|
46480
46167
|
def Release(self):
|
46481
46168
|
"""应用详情
|
46482
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46483
46169
|
:rtype: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
46484
46170
|
"""
|
46485
46171
|
return self._Release
|
@@ -46833,7 +46519,6 @@ class UpdateClusterKubeconfigResponse(AbstractModel):
|
|
46833
46519
|
def __init__(self):
|
46834
46520
|
r"""
|
46835
46521
|
:param _UpdatedSubAccounts: 已更新的子账户Uin列表
|
46836
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46837
46522
|
:type UpdatedSubAccounts: list of str
|
46838
46523
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
46839
46524
|
:type RequestId: str
|
@@ -46844,7 +46529,6 @@ class UpdateClusterKubeconfigResponse(AbstractModel):
|
|
46844
46529
|
@property
|
46845
46530
|
def UpdatedSubAccounts(self):
|
46846
46531
|
"""已更新的子账户Uin列表
|
46847
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46848
46532
|
:rtype: list of str
|
46849
46533
|
"""
|
46850
46534
|
return self._UpdatedSubAccounts
|
@@ -48430,7 +48114,6 @@ class UpgradeClusterReleaseResponse(AbstractModel):
|
|
48430
48114
|
def __init__(self):
|
48431
48115
|
r"""
|
48432
48116
|
:param _Release: 应用详情
|
48433
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48434
48117
|
:type Release: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
48435
48118
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
48436
48119
|
:type RequestId: str
|
@@ -48441,7 +48124,6 @@ class UpgradeClusterReleaseResponse(AbstractModel):
|
|
48441
48124
|
@property
|
48442
48125
|
def Release(self):
|
48443
48126
|
"""应用详情
|
48444
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48445
48127
|
:rtype: :class:`tencentcloud.tke.v20180525.models.PendingRelease`
|
48446
48128
|
"""
|
48447
48129
|
return self._Release
|