tencentcloud-sdk-python 3.0.1333__py2.py3-none-any.whl → 3.0.1335__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/acp/v20220105/models.py +0 -32
- tencentcloud/aiart/v20221229/models.py +2 -0
- tencentcloud/antiddos/v20200309/models.py +2 -2
- tencentcloud/apm/v20210622/models.py +63 -55
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +3 -2
- tencentcloud/billing/v20180709/models.py +30 -474
- tencentcloud/cat/v20180409/models.py +2 -2
- tencentcloud/ciam/v20220331/models.py +0 -92
- tencentcloud/cls/v20201016/models.py +0 -2
- tencentcloud/common/abstract_client.py +3 -0
- tencentcloud/controlcenter/v20230110/controlcenter_client.py +92 -0
- tencentcloud/controlcenter/v20230110/errorcodes.py +9 -0
- tencentcloud/controlcenter/v20230110/models.py +947 -3
- tencentcloud/csip/v20221121/models.py +94 -4
- tencentcloud/cvm/v20170312/cvm_client.py +92 -0
- tencentcloud/cvm/v20170312/errorcodes.py +9 -0
- tencentcloud/cvm/v20170312/models.py +1627 -332
- tencentcloud/cynosdb/v20190107/models.py +17 -2
- tencentcloud/dbbrain/v20191016/models.py +0 -6
- tencentcloud/dbbrain/v20210527/models.py +0 -12
- tencentcloud/dlc/v20210125/models.py +32 -0
- tencentcloud/emr/v20190103/models.py +17 -0
- tencentcloud/es/v20180416/models.py +15 -0
- tencentcloud/goosefs/v20220519/models.py +0 -10
- tencentcloud/gwlb/v20240906/models.py +34 -2
- tencentcloud/ims/v20201229/ims_client.py +18 -12
- tencentcloud/iotcloud/v20210408/models.py +15 -15
- tencentcloud/keewidb/v20220308/models.py +0 -78
- tencentcloud/lcic/v20220817/models.py +75 -54
- tencentcloud/live/v20180801/models.py +8 -58
- tencentcloud/lke/v20231130/errorcodes.py +0 -12
- tencentcloud/lke/v20231130/lke_client.py +46 -50
- tencentcloud/lke/v20231130/models.py +385 -284
- tencentcloud/lowcode/v20210108/models.py +182 -2
- tencentcloud/mariadb/v20170312/models.py +10 -10
- tencentcloud/mongodb/v20190725/models.py +10 -4
- tencentcloud/mqtt/v20240516/models.py +238 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +46 -0
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/ocr/v20181119/models.py +32 -28
- tencentcloud/ocr/v20181119/ocr_client.py +1 -1
- tencentcloud/partners/v20180321/models.py +197 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/pts/v20210728/models.py +68 -6
- tencentcloud/redis/v20180412/models.py +0 -66
- tencentcloud/rum/v20210622/models.py +150 -0
- tencentcloud/tag/v20180813/models.py +2 -2
- tencentcloud/tat/v20201028/models.py +494 -180
- tencentcloud/tat/v20201028/tat_client.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +192 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +14 -4
- tencentcloud/tke/v20180525/models.py +0 -312
- tencentcloud/tke/v20220501/models.py +0 -2
- tencentcloud/tms/v20201229/models.py +15 -0
- tencentcloud/tsf/v20180326/models.py +0 -880
- tencentcloud/vdb/v20230616/models.py +0 -12
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +0 -6
- tencentcloud/wedata/v20210820/models.py +173 -0
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/RECORD +66 -66
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/top_level.txt +0 -0
@@ -686,13 +686,10 @@ class Addon(AbstractModel):
|
|
686
686
|
:param _AddonVersion: addon的版本
|
687
687
|
:type AddonVersion: str
|
688
688
|
:param _RawValues: addon的参数,是一个json格式的base64转码后的字符串
|
689
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
690
689
|
:type RawValues: str
|
691
690
|
:param _Phase: addon的状态
|
692
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
693
691
|
:type Phase: str
|
694
692
|
:param _Reason: addon失败的原因
|
695
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
696
693
|
:type Reason: str
|
697
694
|
:param _CreateTime: addon的创建时间
|
698
695
|
:type CreateTime: str
|
@@ -729,7 +726,6 @@ class Addon(AbstractModel):
|
|
729
726
|
@property
|
730
727
|
def RawValues(self):
|
731
728
|
"""addon的参数,是一个json格式的base64转码后的字符串
|
732
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
733
729
|
:rtype: str
|
734
730
|
"""
|
735
731
|
return self._RawValues
|
@@ -741,7 +737,6 @@ class Addon(AbstractModel):
|
|
741
737
|
@property
|
742
738
|
def Phase(self):
|
743
739
|
"""addon的状态
|
744
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
745
740
|
:rtype: str
|
746
741
|
"""
|
747
742
|
return self._Phase
|
@@ -753,7 +748,6 @@ class Addon(AbstractModel):
|
|
753
748
|
@property
|
754
749
|
def Reason(self):
|
755
750
|
"""addon失败的原因
|
756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
757
751
|
:rtype: str
|
758
752
|
"""
|
759
753
|
return self._Reason
|
@@ -852,7 +846,6 @@ class AppChart(AbstractModel):
|
|
852
846
|
:param _Name: chart名称
|
853
847
|
:type Name: str
|
854
848
|
:param _Label: chart的标签
|
855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
856
849
|
:type Label: str
|
857
850
|
:param _LatestVersion: chart的版本
|
858
851
|
:type LatestVersion: str
|
@@ -875,7 +868,6 @@ class AppChart(AbstractModel):
|
|
875
868
|
@property
|
876
869
|
def Label(self):
|
877
870
|
"""chart的标签
|
878
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
879
871
|
:rtype: str
|
880
872
|
"""
|
881
873
|
return self._Label
|
@@ -1090,22 +1082,16 @@ class BackupStorageLocation(AbstractModel):
|
|
1090
1082
|
:param _StorageRegion: 存储仓库所属地域,比如COS广州(ap-guangzhou)
|
1091
1083
|
:type StorageRegion: str
|
1092
1084
|
:param _Provider: 存储服务提供方,默认腾讯云
|
1093
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1094
1085
|
:type Provider: str
|
1095
1086
|
:param _Bucket: 对象存储桶名称,如果是COS必须是tke-backup-前缀开头
|
1096
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1097
1087
|
:type Bucket: str
|
1098
1088
|
:param _Path: 对象存储桶路径
|
1099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1100
1089
|
:type Path: str
|
1101
1090
|
:param _State: 存储仓库状态
|
1102
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1103
1091
|
:type State: str
|
1104
1092
|
:param _Message: 详细状态信息
|
1105
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1106
1093
|
:type Message: str
|
1107
1094
|
:param _LastValidationTime: 最后一次检查时间
|
1108
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1109
1095
|
:type LastValidationTime: str
|
1110
1096
|
"""
|
1111
1097
|
self._Name = None
|
@@ -1142,7 +1128,6 @@ class BackupStorageLocation(AbstractModel):
|
|
1142
1128
|
@property
|
1143
1129
|
def Provider(self):
|
1144
1130
|
"""存储服务提供方,默认腾讯云
|
1145
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1146
1131
|
:rtype: str
|
1147
1132
|
"""
|
1148
1133
|
return self._Provider
|
@@ -1154,7 +1139,6 @@ class BackupStorageLocation(AbstractModel):
|
|
1154
1139
|
@property
|
1155
1140
|
def Bucket(self):
|
1156
1141
|
"""对象存储桶名称,如果是COS必须是tke-backup-前缀开头
|
1157
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1158
1142
|
:rtype: str
|
1159
1143
|
"""
|
1160
1144
|
return self._Bucket
|
@@ -1166,7 +1150,6 @@ class BackupStorageLocation(AbstractModel):
|
|
1166
1150
|
@property
|
1167
1151
|
def Path(self):
|
1168
1152
|
"""对象存储桶路径
|
1169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1170
1153
|
:rtype: str
|
1171
1154
|
"""
|
1172
1155
|
return self._Path
|
@@ -1178,7 +1161,6 @@ class BackupStorageLocation(AbstractModel):
|
|
1178
1161
|
@property
|
1179
1162
|
def State(self):
|
1180
1163
|
"""存储仓库状态
|
1181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1182
1164
|
:rtype: str
|
1183
1165
|
"""
|
1184
1166
|
return self._State
|
@@ -1190,7 +1172,6 @@ class BackupStorageLocation(AbstractModel):
|
|
1190
1172
|
@property
|
1191
1173
|
def Message(self):
|
1192
1174
|
"""详细状态信息
|
1193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1194
1175
|
:rtype: str
|
1195
1176
|
"""
|
1196
1177
|
return self._Message
|
@@ -1202,7 +1183,6 @@ class BackupStorageLocation(AbstractModel):
|
|
1202
1183
|
@property
|
1203
1184
|
def LastValidationTime(self):
|
1204
1185
|
"""最后一次检查时间
|
1205
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1206
1186
|
:rtype: str
|
1207
1187
|
"""
|
1208
1188
|
return self._LastValidationTime
|
@@ -1239,16 +1219,12 @@ class CUDNN(AbstractModel):
|
|
1239
1219
|
def __init__(self):
|
1240
1220
|
r"""
|
1241
1221
|
:param _Version: cuDNN的版本
|
1242
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1243
1222
|
:type Version: str
|
1244
1223
|
:param _Name: cuDNN的名字
|
1245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1246
1224
|
:type Name: str
|
1247
1225
|
:param _DocName: cuDNN的Doc名字
|
1248
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1249
1226
|
:type DocName: str
|
1250
1227
|
:param _DevName: cuDNN的Dev名字
|
1251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1252
1228
|
:type DevName: str
|
1253
1229
|
"""
|
1254
1230
|
self._Version = None
|
@@ -1259,7 +1235,6 @@ class CUDNN(AbstractModel):
|
|
1259
1235
|
@property
|
1260
1236
|
def Version(self):
|
1261
1237
|
"""cuDNN的版本
|
1262
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1263
1238
|
:rtype: str
|
1264
1239
|
"""
|
1265
1240
|
return self._Version
|
@@ -1271,7 +1246,6 @@ class CUDNN(AbstractModel):
|
|
1271
1246
|
@property
|
1272
1247
|
def Name(self):
|
1273
1248
|
"""cuDNN的名字
|
1274
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1275
1249
|
:rtype: str
|
1276
1250
|
"""
|
1277
1251
|
return self._Name
|
@@ -1283,7 +1257,6 @@ class CUDNN(AbstractModel):
|
|
1283
1257
|
@property
|
1284
1258
|
def DocName(self):
|
1285
1259
|
"""cuDNN的Doc名字
|
1286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1287
1260
|
:rtype: str
|
1288
1261
|
"""
|
1289
1262
|
return self._DocName
|
@@ -1295,7 +1268,6 @@ class CUDNN(AbstractModel):
|
|
1295
1268
|
@property
|
1296
1269
|
def DevName(self):
|
1297
1270
|
"""cuDNN的Dev名字
|
1298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1299
1271
|
:rtype: str
|
1300
1272
|
"""
|
1301
1273
|
return self._DevName
|
@@ -2639,10 +2611,8 @@ class ClusterAsGroup(AbstractModel):
|
|
2639
2611
|
:param _Status: 伸缩组状态(开启 enabled 开启中 enabling 关闭 disabled 关闭中 disabling 更新中 updating 删除中 deleting 开启缩容中 scaleDownEnabling 关闭缩容中 scaleDownDisabling)
|
2640
2612
|
:type Status: str
|
2641
2613
|
:param _IsUnschedulable: 节点是否设置成不可调度
|
2642
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2643
2614
|
:type IsUnschedulable: bool
|
2644
2615
|
:param _Labels: 伸缩组的label列表
|
2645
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2646
2616
|
:type Labels: list of Label
|
2647
2617
|
:param _CreatedTime: 创建时间
|
2648
2618
|
:type CreatedTime: str
|
@@ -2678,7 +2648,6 @@ class ClusterAsGroup(AbstractModel):
|
|
2678
2648
|
@property
|
2679
2649
|
def IsUnschedulable(self):
|
2680
2650
|
"""节点是否设置成不可调度
|
2681
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2682
2651
|
:rtype: bool
|
2683
2652
|
"""
|
2684
2653
|
return self._IsUnschedulable
|
@@ -2690,7 +2659,6 @@ class ClusterAsGroup(AbstractModel):
|
|
2690
2659
|
@property
|
2691
2660
|
def Labels(self):
|
2692
2661
|
"""伸缩组的label列表
|
2693
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2694
2662
|
:rtype: list of Label
|
2695
2663
|
"""
|
2696
2664
|
return self._Labels
|
@@ -3727,7 +3695,6 @@ class ClusterLevelAttribute(AbstractModel):
|
|
3727
3695
|
:param _Enable: 是否启用
|
3728
3696
|
:type Enable: bool
|
3729
3697
|
:param _OtherCount: 其他资源数量
|
3730
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3731
3698
|
:type OtherCount: int
|
3732
3699
|
"""
|
3733
3700
|
self._Name = None
|
@@ -3831,7 +3798,6 @@ class ClusterLevelAttribute(AbstractModel):
|
|
3831
3798
|
@property
|
3832
3799
|
def OtherCount(self):
|
3833
3800
|
"""其他资源数量
|
3834
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3835
3801
|
:rtype: int
|
3836
3802
|
"""
|
3837
3803
|
return self._OtherCount
|
@@ -4275,7 +4241,6 @@ class ClusterProperty(AbstractModel):
|
|
4275
4241
|
def __init__(self):
|
4276
4242
|
r"""
|
4277
4243
|
:param _NodeNameType: 节点hostname命名模式
|
4278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4279
4244
|
:type NodeNameType: str
|
4280
4245
|
"""
|
4281
4246
|
self._NodeNameType = None
|
@@ -4283,7 +4248,6 @@ class ClusterProperty(AbstractModel):
|
|
4283
4248
|
@property
|
4284
4249
|
def NodeNameType(self):
|
4285
4250
|
"""节点hostname命名模式
|
4286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4287
4251
|
:rtype: str
|
4288
4252
|
"""
|
4289
4253
|
return self._NodeNameType
|
@@ -4433,16 +4397,12 @@ class ClusterStatus(AbstractModel):
|
|
4433
4397
|
:param _ClusterFailedNodeNum: 集群异常的节点数,-1表示获取节点状态超时,-2表示获取节点状态失败
|
4434
4398
|
:type ClusterFailedNodeNum: int
|
4435
4399
|
:param _ClusterClosedNodeNum: 集群已关机的节点数,-1表示获取节点状态超时,-2表示获取节点状态失败
|
4436
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4437
4400
|
:type ClusterClosedNodeNum: int
|
4438
4401
|
:param _ClusterClosingNodeNum: 集群关机中的节点数,-1表示获取节点状态超时,-2表示获取节点状态失败
|
4439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4440
4402
|
:type ClusterClosingNodeNum: int
|
4441
4403
|
:param _ClusterDeletionProtection: 集群是否开启删除保护
|
4442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4443
4404
|
:type ClusterDeletionProtection: bool
|
4444
4405
|
:param _ClusterAuditEnabled: 集群是否可审计
|
4445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4446
4406
|
:type ClusterAuditEnabled: bool
|
4447
4407
|
"""
|
4448
4408
|
self._ClusterId = None
|
@@ -4537,7 +4497,6 @@ class ClusterStatus(AbstractModel):
|
|
4537
4497
|
@property
|
4538
4498
|
def ClusterClosedNodeNum(self):
|
4539
4499
|
"""集群已关机的节点数,-1表示获取节点状态超时,-2表示获取节点状态失败
|
4540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4541
4500
|
:rtype: int
|
4542
4501
|
"""
|
4543
4502
|
return self._ClusterClosedNodeNum
|
@@ -4549,7 +4508,6 @@ class ClusterStatus(AbstractModel):
|
|
4549
4508
|
@property
|
4550
4509
|
def ClusterClosingNodeNum(self):
|
4551
4510
|
"""集群关机中的节点数,-1表示获取节点状态超时,-2表示获取节点状态失败
|
4552
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4553
4511
|
:rtype: int
|
4554
4512
|
"""
|
4555
4513
|
return self._ClusterClosingNodeNum
|
@@ -4561,7 +4519,6 @@ class ClusterStatus(AbstractModel):
|
|
4561
4519
|
@property
|
4562
4520
|
def ClusterDeletionProtection(self):
|
4563
4521
|
"""集群是否开启删除保护
|
4564
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4565
4522
|
:rtype: bool
|
4566
4523
|
"""
|
4567
4524
|
return self._ClusterDeletionProtection
|
@@ -4573,7 +4530,6 @@ class ClusterStatus(AbstractModel):
|
|
4573
4530
|
@property
|
4574
4531
|
def ClusterAuditEnabled(self):
|
4575
4532
|
"""集群是否可审计
|
4576
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4577
4533
|
:rtype: bool
|
4578
4534
|
"""
|
4579
4535
|
return self._ClusterAuditEnabled
|
@@ -10036,7 +9992,6 @@ class CustomDriver(AbstractModel):
|
|
10036
9992
|
def __init__(self):
|
10037
9993
|
r"""
|
10038
9994
|
:param _Address: 自定义GPU驱动地址链接
|
10039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10040
9995
|
:type Address: str
|
10041
9996
|
"""
|
10042
9997
|
self._Address = None
|
@@ -10044,7 +9999,6 @@ class CustomDriver(AbstractModel):
|
|
10044
9999
|
@property
|
10045
10000
|
def Address(self):
|
10046
10001
|
"""自定义GPU驱动地址链接
|
10047
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10048
10002
|
:rtype: str
|
10049
10003
|
"""
|
10050
10004
|
return self._Address
|
@@ -10206,22 +10160,16 @@ class DataDisk(AbstractModel):
|
|
10206
10160
|
def __init__(self):
|
10207
10161
|
r"""
|
10208
10162
|
:param _DiskType: 云盘类型
|
10209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10210
10163
|
:type DiskType: str
|
10211
10164
|
:param _FileSystem: 文件系统(ext3/ext4/xfs)
|
10212
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10213
10165
|
:type FileSystem: str
|
10214
10166
|
:param _DiskSize: 云盘大小(G)
|
10215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10216
10167
|
:type DiskSize: int
|
10217
10168
|
:param _AutoFormatAndMount: 是否自动化格式盘并挂载
|
10218
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10219
10169
|
:type AutoFormatAndMount: bool
|
10220
10170
|
:param _MountTarget: 挂载目录
|
10221
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10222
10171
|
:type MountTarget: str
|
10223
10172
|
:param _DiskPartition: 挂载设备名或分区名,当且仅当添加已有节点时需要
|
10224
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10225
10173
|
:type DiskPartition: str
|
10226
10174
|
"""
|
10227
10175
|
self._DiskType = None
|
@@ -10234,7 +10182,6 @@ class DataDisk(AbstractModel):
|
|
10234
10182
|
@property
|
10235
10183
|
def DiskType(self):
|
10236
10184
|
"""云盘类型
|
10237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10238
10185
|
:rtype: str
|
10239
10186
|
"""
|
10240
10187
|
return self._DiskType
|
@@ -10246,7 +10193,6 @@ class DataDisk(AbstractModel):
|
|
10246
10193
|
@property
|
10247
10194
|
def FileSystem(self):
|
10248
10195
|
"""文件系统(ext3/ext4/xfs)
|
10249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10250
10196
|
:rtype: str
|
10251
10197
|
"""
|
10252
10198
|
return self._FileSystem
|
@@ -10258,7 +10204,6 @@ class DataDisk(AbstractModel):
|
|
10258
10204
|
@property
|
10259
10205
|
def DiskSize(self):
|
10260
10206
|
"""云盘大小(G)
|
10261
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10262
10207
|
:rtype: int
|
10263
10208
|
"""
|
10264
10209
|
return self._DiskSize
|
@@ -10270,7 +10215,6 @@ class DataDisk(AbstractModel):
|
|
10270
10215
|
@property
|
10271
10216
|
def AutoFormatAndMount(self):
|
10272
10217
|
"""是否自动化格式盘并挂载
|
10273
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10274
10218
|
:rtype: bool
|
10275
10219
|
"""
|
10276
10220
|
return self._AutoFormatAndMount
|
@@ -10282,7 +10226,6 @@ class DataDisk(AbstractModel):
|
|
10282
10226
|
@property
|
10283
10227
|
def MountTarget(self):
|
10284
10228
|
"""挂载目录
|
10285
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10286
10229
|
:rtype: str
|
10287
10230
|
"""
|
10288
10231
|
return self._MountTarget
|
@@ -10294,7 +10237,6 @@ class DataDisk(AbstractModel):
|
|
10294
10237
|
@property
|
10295
10238
|
def DiskPartition(self):
|
10296
10239
|
"""挂载设备名或分区名,当且仅当添加已有节点时需要
|
10297
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10298
10240
|
:rtype: str
|
10299
10241
|
"""
|
10300
10242
|
return self._DiskPartition
|
@@ -13252,10 +13194,8 @@ class DescribeAvailableTKEEdgeVersionResponse(AbstractModel):
|
|
13252
13194
|
:param _Versions: 版本列表
|
13253
13195
|
:type Versions: list of str
|
13254
13196
|
:param _EdgeVersionLatest: 边缘集群最新版本
|
13255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13256
13197
|
:type EdgeVersionLatest: str
|
13257
13198
|
:param _EdgeVersionCurrent: 边缘集群当前版本
|
13258
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13259
13199
|
:type EdgeVersionCurrent: str
|
13260
13200
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13261
13201
|
:type RequestId: str
|
@@ -13279,7 +13219,6 @@ class DescribeAvailableTKEEdgeVersionResponse(AbstractModel):
|
|
13279
13219
|
@property
|
13280
13220
|
def EdgeVersionLatest(self):
|
13281
13221
|
"""边缘集群最新版本
|
13282
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13283
13222
|
:rtype: str
|
13284
13223
|
"""
|
13285
13224
|
return self._EdgeVersionLatest
|
@@ -13291,7 +13230,6 @@ class DescribeAvailableTKEEdgeVersionResponse(AbstractModel):
|
|
13291
13230
|
@property
|
13292
13231
|
def EdgeVersionCurrent(self):
|
13293
13232
|
"""边缘集群当前版本
|
13294
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13295
13233
|
:rtype: str
|
13296
13234
|
"""
|
13297
13235
|
return self._EdgeVersionCurrent
|
@@ -17886,7 +17824,6 @@ class DescribeEdgeAvailableExtraArgsResponse(AbstractModel):
|
|
17886
17824
|
def __init__(self):
|
17887
17825
|
r"""
|
17888
17826
|
:param _ClusterVersion: 集群版本
|
17889
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17890
17827
|
:type ClusterVersion: str
|
17891
17828
|
:param _AvailableExtraArgs: 可用的自定义参数
|
17892
17829
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -17901,7 +17838,6 @@ class DescribeEdgeAvailableExtraArgsResponse(AbstractModel):
|
|
17901
17838
|
@property
|
17902
17839
|
def ClusterVersion(self):
|
17903
17840
|
"""集群版本
|
17904
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17905
17841
|
:rtype: str
|
17906
17842
|
"""
|
17907
17843
|
return self._ClusterVersion
|
@@ -18102,7 +18038,6 @@ class DescribeEdgeClusterExtraArgsResponse(AbstractModel):
|
|
18102
18038
|
def __init__(self):
|
18103
18039
|
r"""
|
18104
18040
|
:param _ClusterExtraArgs: 集群自定义参数
|
18105
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18106
18041
|
:type ClusterExtraArgs: :class:`tencentcloud.tke.v20180525.models.EdgeClusterExtraArgs`
|
18107
18042
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18108
18043
|
:type RequestId: str
|
@@ -18113,7 +18048,6 @@ class DescribeEdgeClusterExtraArgsResponse(AbstractModel):
|
|
18113
18048
|
@property
|
18114
18049
|
def ClusterExtraArgs(self):
|
18115
18050
|
"""集群自定义参数
|
18116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18117
18051
|
:rtype: :class:`tencentcloud.tke.v20180525.models.EdgeClusterExtraArgs`
|
18118
18052
|
"""
|
18119
18053
|
return self._ClusterExtraArgs
|
@@ -18344,19 +18278,14 @@ class DescribeEdgeClusterUpgradeInfoResponse(AbstractModel):
|
|
18344
18278
|
def __init__(self):
|
18345
18279
|
r"""
|
18346
18280
|
:param _ComponentVersion: 可升级的集群组件及其版本
|
18347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18348
18281
|
:type ComponentVersion: str
|
18349
18282
|
:param _EdgeVersionCurrent: 边缘集群当前版本
|
18350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18351
18283
|
:type EdgeVersionCurrent: str
|
18352
18284
|
:param _RegistryPrefix: 边缘组件镜像仓库地址前缀,包含域名和命名空间
|
18353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18354
18285
|
:type RegistryPrefix: str
|
18355
18286
|
:param _ClusterUpgradeStatus: 集群升级状态,可能值:running、updating、failed
|
18356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18357
18287
|
:type ClusterUpgradeStatus: str
|
18358
18288
|
:param _ClusterUpgradeStatusReason: 集群升级中状态或者失败原因
|
18359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18360
18289
|
:type ClusterUpgradeStatusReason: str
|
18361
18290
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18362
18291
|
:type RequestId: str
|
@@ -18371,7 +18300,6 @@ class DescribeEdgeClusterUpgradeInfoResponse(AbstractModel):
|
|
18371
18300
|
@property
|
18372
18301
|
def ComponentVersion(self):
|
18373
18302
|
"""可升级的集群组件及其版本
|
18374
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18375
18303
|
:rtype: str
|
18376
18304
|
"""
|
18377
18305
|
return self._ComponentVersion
|
@@ -18383,7 +18311,6 @@ class DescribeEdgeClusterUpgradeInfoResponse(AbstractModel):
|
|
18383
18311
|
@property
|
18384
18312
|
def EdgeVersionCurrent(self):
|
18385
18313
|
"""边缘集群当前版本
|
18386
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18387
18314
|
:rtype: str
|
18388
18315
|
"""
|
18389
18316
|
return self._EdgeVersionCurrent
|
@@ -18395,7 +18322,6 @@ class DescribeEdgeClusterUpgradeInfoResponse(AbstractModel):
|
|
18395
18322
|
@property
|
18396
18323
|
def RegistryPrefix(self):
|
18397
18324
|
"""边缘组件镜像仓库地址前缀,包含域名和命名空间
|
18398
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18399
18325
|
:rtype: str
|
18400
18326
|
"""
|
18401
18327
|
return self._RegistryPrefix
|
@@ -18407,7 +18333,6 @@ class DescribeEdgeClusterUpgradeInfoResponse(AbstractModel):
|
|
18407
18333
|
@property
|
18408
18334
|
def ClusterUpgradeStatus(self):
|
18409
18335
|
"""集群升级状态,可能值:running、updating、failed
|
18410
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18411
18336
|
:rtype: str
|
18412
18337
|
"""
|
18413
18338
|
return self._ClusterUpgradeStatus
|
@@ -18419,7 +18344,6 @@ class DescribeEdgeClusterUpgradeInfoResponse(AbstractModel):
|
|
18419
18344
|
@property
|
18420
18345
|
def ClusterUpgradeStatusReason(self):
|
18421
18346
|
"""集群升级中状态或者失败原因
|
18422
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18423
18347
|
:rtype: str
|
18424
18348
|
"""
|
18425
18349
|
return self._ClusterUpgradeStatusReason
|
@@ -18493,7 +18417,6 @@ class DescribeEdgeLogSwitchesResponse(AbstractModel):
|
|
18493
18417
|
def __init__(self):
|
18494
18418
|
r"""
|
18495
18419
|
:param _SwitchSet: 集群日志开关集合
|
18496
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18497
18420
|
:type SwitchSet: list of str
|
18498
18421
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18499
18422
|
:type RequestId: str
|
@@ -18504,7 +18427,6 @@ class DescribeEdgeLogSwitchesResponse(AbstractModel):
|
|
18504
18427
|
@property
|
18505
18428
|
def SwitchSet(self):
|
18506
18429
|
"""集群日志开关集合
|
18507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18508
18430
|
:rtype: list of str
|
18509
18431
|
"""
|
18510
18432
|
return self._SwitchSet
|
@@ -19155,33 +19077,24 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19155
19077
|
def __init__(self):
|
19156
19078
|
r"""
|
19157
19079
|
:param _ClusterCIDR: 用于分配集群容器和服务 IP 的 CIDR,不得与 VPC CIDR 冲突,也不得与同 VPC 内其他集群 CIDR 冲突。且网段范围必须在内网网段内,例如:10.1.0.0/14, 192.168.0.1/18,172.16.0.0/16。
|
19158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19159
19080
|
:type ClusterCIDR: str
|
19160
19081
|
:param _NetworkType: 集群网络插件类型,支持:CiliumBGP、CiliumVXLan
|
19161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19162
19082
|
:type NetworkType: str
|
19163
19083
|
:param _SubnetId: 子网ID
|
19164
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19165
19084
|
:type SubnetId: str
|
19166
19085
|
:param _Enabled: 是否开启第三方节点专线连接支持
|
19167
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19168
19086
|
:type Enabled: bool
|
19169
19087
|
:param _AS: 节点所属交换机的BGP AS 号
|
19170
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19171
19088
|
:type AS: str
|
19172
19089
|
:param _SwitchIP: 节点所属交换机的交换机 IP
|
19173
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19174
19090
|
:type SwitchIP: str
|
19175
19091
|
:param _Status: 开启第三方节点池状态
|
19176
19092
|
:type Status: str
|
19177
19093
|
:param _FailedReason: 如果开启失败原因
|
19178
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19179
19094
|
:type FailedReason: str
|
19180
19095
|
:param _Master: 内网访问地址
|
19181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19182
19096
|
:type Master: str
|
19183
19097
|
:param _Proxy: 镜像仓库代理地址
|
19184
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19185
19098
|
:type Proxy: str
|
19186
19099
|
:param _Progress: 用于记录开启第三方节点的过程进行到哪一步了
|
19187
19100
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -19191,7 +19104,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19191
19104
|
:param _PublicConnectUrl: 注册节点公网版公网连接地址
|
19192
19105
|
:type PublicConnectUrl: str
|
19193
19106
|
:param _PublicCustomDomain: 注册节点公网版自定义域名
|
19194
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19195
19107
|
:type PublicCustomDomain: str
|
19196
19108
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19197
19109
|
:type RequestId: str
|
@@ -19215,7 +19127,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19215
19127
|
@property
|
19216
19128
|
def ClusterCIDR(self):
|
19217
19129
|
"""用于分配集群容器和服务 IP 的 CIDR,不得与 VPC CIDR 冲突,也不得与同 VPC 内其他集群 CIDR 冲突。且网段范围必须在内网网段内,例如:10.1.0.0/14, 192.168.0.1/18,172.16.0.0/16。
|
19218
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19219
19130
|
:rtype: str
|
19220
19131
|
"""
|
19221
19132
|
return self._ClusterCIDR
|
@@ -19227,7 +19138,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19227
19138
|
@property
|
19228
19139
|
def NetworkType(self):
|
19229
19140
|
"""集群网络插件类型,支持:CiliumBGP、CiliumVXLan
|
19230
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19231
19141
|
:rtype: str
|
19232
19142
|
"""
|
19233
19143
|
return self._NetworkType
|
@@ -19239,7 +19149,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19239
19149
|
@property
|
19240
19150
|
def SubnetId(self):
|
19241
19151
|
"""子网ID
|
19242
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19243
19152
|
:rtype: str
|
19244
19153
|
"""
|
19245
19154
|
return self._SubnetId
|
@@ -19251,7 +19160,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19251
19160
|
@property
|
19252
19161
|
def Enabled(self):
|
19253
19162
|
"""是否开启第三方节点专线连接支持
|
19254
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19255
19163
|
:rtype: bool
|
19256
19164
|
"""
|
19257
19165
|
return self._Enabled
|
@@ -19263,7 +19171,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19263
19171
|
@property
|
19264
19172
|
def AS(self):
|
19265
19173
|
"""节点所属交换机的BGP AS 号
|
19266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19267
19174
|
:rtype: str
|
19268
19175
|
"""
|
19269
19176
|
return self._AS
|
@@ -19275,7 +19182,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19275
19182
|
@property
|
19276
19183
|
def SwitchIP(self):
|
19277
19184
|
"""节点所属交换机的交换机 IP
|
19278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19279
19185
|
:rtype: str
|
19280
19186
|
"""
|
19281
19187
|
return self._SwitchIP
|
@@ -19298,7 +19204,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19298
19204
|
@property
|
19299
19205
|
def FailedReason(self):
|
19300
19206
|
"""如果开启失败原因
|
19301
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19302
19207
|
:rtype: str
|
19303
19208
|
"""
|
19304
19209
|
return self._FailedReason
|
@@ -19310,7 +19215,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19310
19215
|
@property
|
19311
19216
|
def Master(self):
|
19312
19217
|
"""内网访问地址
|
19313
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19314
19218
|
:rtype: str
|
19315
19219
|
"""
|
19316
19220
|
return self._Master
|
@@ -19322,7 +19226,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19322
19226
|
@property
|
19323
19227
|
def Proxy(self):
|
19324
19228
|
"""镜像仓库代理地址
|
19325
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19326
19229
|
:rtype: str
|
19327
19230
|
"""
|
19328
19231
|
return self._Proxy
|
@@ -19368,7 +19271,6 @@ class DescribeExternalNodeSupportConfigResponse(AbstractModel):
|
|
19368
19271
|
@property
|
19369
19272
|
def PublicCustomDomain(self):
|
19370
19273
|
"""注册节点公网版自定义域名
|
19371
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19372
19274
|
:rtype: str
|
19373
19275
|
"""
|
19374
19276
|
return self._PublicCustomDomain
|
@@ -20166,7 +20068,6 @@ class DescribeOpenPolicyListResponse(AbstractModel):
|
|
20166
20068
|
def __init__(self):
|
20167
20069
|
r"""
|
20168
20070
|
:param _OpenPolicyInfoList: 策略信息列表
|
20169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20170
20071
|
:type OpenPolicyInfoList: list of OpenPolicyInfo
|
20171
20072
|
:param _GatekeeperStatus: 集群内是否安装了gatekeeper addon
|
20172
20073
|
:type GatekeeperStatus: int
|
@@ -20180,7 +20081,6 @@ class DescribeOpenPolicyListResponse(AbstractModel):
|
|
20180
20081
|
@property
|
20181
20082
|
def OpenPolicyInfoList(self):
|
20182
20083
|
"""策略信息列表
|
20183
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20184
20084
|
:rtype: list of OpenPolicyInfo
|
20185
20085
|
"""
|
20186
20086
|
return self._OpenPolicyInfoList
|
@@ -25837,10 +25737,8 @@ class DriverVersion(AbstractModel):
|
|
25837
25737
|
def __init__(self):
|
25838
25738
|
r"""
|
25839
25739
|
:param _Version: GPU驱动或者CUDA的版本
|
25840
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25841
25740
|
:type Version: str
|
25842
25741
|
:param _Name: GPU驱动或者CUDA的名字
|
25843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25844
25742
|
:type Name: str
|
25845
25743
|
"""
|
25846
25744
|
self._Version = None
|
@@ -25849,7 +25747,6 @@ class DriverVersion(AbstractModel):
|
|
25849
25747
|
@property
|
25850
25748
|
def Version(self):
|
25851
25749
|
"""GPU驱动或者CUDA的版本
|
25852
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25853
25750
|
:rtype: str
|
25854
25751
|
"""
|
25855
25752
|
return self._Version
|
@@ -25861,7 +25758,6 @@ class DriverVersion(AbstractModel):
|
|
25861
25758
|
@property
|
25862
25759
|
def Name(self):
|
25863
25760
|
"""GPU驱动或者CUDA的名字
|
25864
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25865
25761
|
:rtype: str
|
25866
25762
|
"""
|
25867
25763
|
return self._Name
|
@@ -26100,19 +25996,14 @@ class EdgeArgsFlag(AbstractModel):
|
|
26100
25996
|
def __init__(self):
|
26101
25997
|
r"""
|
26102
25998
|
:param _Name: 参数名
|
26103
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26104
25999
|
:type Name: str
|
26105
26000
|
:param _Type: 参数类型
|
26106
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26107
26001
|
:type Type: str
|
26108
26002
|
:param _Usage: 参数描述
|
26109
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26110
26003
|
:type Usage: str
|
26111
26004
|
:param _Default: 参数默认值
|
26112
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26113
26005
|
:type Default: str
|
26114
26006
|
:param _Constraint: 参数可选范围(目前包含range和in两种,"[]"代表range,如"[1, 5]"表示参数必须>=1且 <=5, "()"代表in, 如"('aa', 'bb')"表示参数只能为字符串'aa'或者'bb',该参数为空表示不校验)
|
26115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26116
26007
|
:type Constraint: str
|
26117
26008
|
"""
|
26118
26009
|
self._Name = None
|
@@ -26124,7 +26015,6 @@ class EdgeArgsFlag(AbstractModel):
|
|
26124
26015
|
@property
|
26125
26016
|
def Name(self):
|
26126
26017
|
"""参数名
|
26127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26128
26018
|
:rtype: str
|
26129
26019
|
"""
|
26130
26020
|
return self._Name
|
@@ -26136,7 +26026,6 @@ class EdgeArgsFlag(AbstractModel):
|
|
26136
26026
|
@property
|
26137
26027
|
def Type(self):
|
26138
26028
|
"""参数类型
|
26139
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26140
26029
|
:rtype: str
|
26141
26030
|
"""
|
26142
26031
|
return self._Type
|
@@ -26148,7 +26037,6 @@ class EdgeArgsFlag(AbstractModel):
|
|
26148
26037
|
@property
|
26149
26038
|
def Usage(self):
|
26150
26039
|
"""参数描述
|
26151
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26152
26040
|
:rtype: str
|
26153
26041
|
"""
|
26154
26042
|
return self._Usage
|
@@ -26160,7 +26048,6 @@ class EdgeArgsFlag(AbstractModel):
|
|
26160
26048
|
@property
|
26161
26049
|
def Default(self):
|
26162
26050
|
"""参数默认值
|
26163
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26164
26051
|
:rtype: str
|
26165
26052
|
"""
|
26166
26053
|
return self._Default
|
@@ -26172,7 +26059,6 @@ class EdgeArgsFlag(AbstractModel):
|
|
26172
26059
|
@property
|
26173
26060
|
def Constraint(self):
|
26174
26061
|
"""参数可选范围(目前包含range和in两种,"[]"代表range,如"[1, 5]"表示参数必须>=1且 <=5, "()"代表in, 如"('aa', 'bb')"表示参数只能为字符串'aa'或者'bb',该参数为空表示不校验)
|
26175
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26176
26062
|
:rtype: str
|
26177
26063
|
"""
|
26178
26064
|
return self._Constraint
|
@@ -26206,16 +26092,12 @@ class EdgeAvailableExtraArgs(AbstractModel):
|
|
26206
26092
|
def __init__(self):
|
26207
26093
|
r"""
|
26208
26094
|
:param _KubeAPIServer: kube-apiserver可用的自定义参数
|
26209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26210
26095
|
:type KubeAPIServer: list of EdgeArgsFlag
|
26211
26096
|
:param _KubeControllerManager: kube-controller-manager可用的自定义参数
|
26212
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26213
26097
|
:type KubeControllerManager: list of EdgeArgsFlag
|
26214
26098
|
:param _KubeScheduler: kube-scheduler可用的自定义参数
|
26215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26216
26099
|
:type KubeScheduler: list of EdgeArgsFlag
|
26217
26100
|
:param _Kubelet: kubelet可用的自定义参数
|
26218
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26219
26101
|
:type Kubelet: list of EdgeArgsFlag
|
26220
26102
|
"""
|
26221
26103
|
self._KubeAPIServer = None
|
@@ -26226,7 +26108,6 @@ class EdgeAvailableExtraArgs(AbstractModel):
|
|
26226
26108
|
@property
|
26227
26109
|
def KubeAPIServer(self):
|
26228
26110
|
"""kube-apiserver可用的自定义参数
|
26229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26230
26111
|
:rtype: list of EdgeArgsFlag
|
26231
26112
|
"""
|
26232
26113
|
return self._KubeAPIServer
|
@@ -26238,7 +26119,6 @@ class EdgeAvailableExtraArgs(AbstractModel):
|
|
26238
26119
|
@property
|
26239
26120
|
def KubeControllerManager(self):
|
26240
26121
|
"""kube-controller-manager可用的自定义参数
|
26241
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26242
26122
|
:rtype: list of EdgeArgsFlag
|
26243
26123
|
"""
|
26244
26124
|
return self._KubeControllerManager
|
@@ -26250,7 +26130,6 @@ class EdgeAvailableExtraArgs(AbstractModel):
|
|
26250
26130
|
@property
|
26251
26131
|
def KubeScheduler(self):
|
26252
26132
|
"""kube-scheduler可用的自定义参数
|
26253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26254
26133
|
:rtype: list of EdgeArgsFlag
|
26255
26134
|
"""
|
26256
26135
|
return self._KubeScheduler
|
@@ -26262,7 +26141,6 @@ class EdgeAvailableExtraArgs(AbstractModel):
|
|
26262
26141
|
@property
|
26263
26142
|
def Kubelet(self):
|
26264
26143
|
"""kubelet可用的自定义参数
|
26265
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26266
26144
|
:rtype: list of EdgeArgsFlag
|
26267
26145
|
"""
|
26268
26146
|
return self._Kubelet
|
@@ -26335,22 +26213,16 @@ class EdgeCluster(AbstractModel):
|
|
26335
26213
|
:param _EdgeClusterVersion: 边缘集群版本
|
26336
26214
|
:type EdgeClusterVersion: str
|
26337
26215
|
:param _MaxNodePodNum: 节点最大Pod数
|
26338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26339
26216
|
:type MaxNodePodNum: int
|
26340
26217
|
:param _ClusterAdvancedSettings: 集群高级设置
|
26341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26342
26218
|
:type ClusterAdvancedSettings: :class:`tencentcloud.tke.v20180525.models.EdgeClusterAdvancedSettings`
|
26343
26219
|
:param _Level: 边缘容器集群级别
|
26344
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26345
26220
|
:type Level: str
|
26346
26221
|
:param _AutoUpgradeClusterLevel: 是否支持自动提升集群配置
|
26347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26348
26222
|
:type AutoUpgradeClusterLevel: bool
|
26349
26223
|
:param _ChargeType: 集群付费模式,支持POSTPAID_BY_HOUR或者PREPAID
|
26350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26351
26224
|
:type ChargeType: str
|
26352
26225
|
:param _EdgeVersion: 边缘集群组件的版本
|
26353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26354
26226
|
:type EdgeVersion: str
|
26355
26227
|
:param _TagSpecification: 集群绑定的云标签
|
26356
26228
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -26487,7 +26359,6 @@ class EdgeCluster(AbstractModel):
|
|
26487
26359
|
@property
|
26488
26360
|
def MaxNodePodNum(self):
|
26489
26361
|
"""节点最大Pod数
|
26490
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26491
26362
|
:rtype: int
|
26492
26363
|
"""
|
26493
26364
|
return self._MaxNodePodNum
|
@@ -26499,7 +26370,6 @@ class EdgeCluster(AbstractModel):
|
|
26499
26370
|
@property
|
26500
26371
|
def ClusterAdvancedSettings(self):
|
26501
26372
|
"""集群高级设置
|
26502
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26503
26373
|
:rtype: :class:`tencentcloud.tke.v20180525.models.EdgeClusterAdvancedSettings`
|
26504
26374
|
"""
|
26505
26375
|
return self._ClusterAdvancedSettings
|
@@ -26511,7 +26381,6 @@ class EdgeCluster(AbstractModel):
|
|
26511
26381
|
@property
|
26512
26382
|
def Level(self):
|
26513
26383
|
"""边缘容器集群级别
|
26514
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26515
26384
|
:rtype: str
|
26516
26385
|
"""
|
26517
26386
|
return self._Level
|
@@ -26523,7 +26392,6 @@ class EdgeCluster(AbstractModel):
|
|
26523
26392
|
@property
|
26524
26393
|
def AutoUpgradeClusterLevel(self):
|
26525
26394
|
"""是否支持自动提升集群配置
|
26526
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26527
26395
|
:rtype: bool
|
26528
26396
|
"""
|
26529
26397
|
return self._AutoUpgradeClusterLevel
|
@@ -26535,7 +26403,6 @@ class EdgeCluster(AbstractModel):
|
|
26535
26403
|
@property
|
26536
26404
|
def ChargeType(self):
|
26537
26405
|
"""集群付费模式,支持POSTPAID_BY_HOUR或者PREPAID
|
26538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26539
26406
|
:rtype: str
|
26540
26407
|
"""
|
26541
26408
|
return self._ChargeType
|
@@ -26547,7 +26414,6 @@ class EdgeCluster(AbstractModel):
|
|
26547
26414
|
@property
|
26548
26415
|
def EdgeVersion(self):
|
26549
26416
|
"""边缘集群组件的版本
|
26550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26551
26417
|
:rtype: str
|
26552
26418
|
"""
|
26553
26419
|
return self._EdgeVersion
|
@@ -26612,10 +26478,8 @@ class EdgeClusterAdvancedSettings(AbstractModel):
|
|
26612
26478
|
注意:此字段可能返回 null,表示取不到有效值。
|
26613
26479
|
:type ExtraArgs: :class:`tencentcloud.tke.v20180525.models.EdgeClusterExtraArgs`
|
26614
26480
|
:param _Runtime: 运行时类型,支持"docker"和"containerd",默认为docker
|
26615
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26616
26481
|
:type Runtime: str
|
26617
26482
|
:param _ProxyMode: 集群kube-proxy转发模式,支持"iptables"和"ipvs",默认为iptables
|
26618
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26619
26483
|
:type ProxyMode: str
|
26620
26484
|
"""
|
26621
26485
|
self._ExtraArgs = None
|
@@ -26637,7 +26501,6 @@ class EdgeClusterAdvancedSettings(AbstractModel):
|
|
26637
26501
|
@property
|
26638
26502
|
def Runtime(self):
|
26639
26503
|
"""运行时类型,支持"docker"和"containerd",默认为docker
|
26640
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26641
26504
|
:rtype: str
|
26642
26505
|
"""
|
26643
26506
|
return self._Runtime
|
@@ -26649,7 +26512,6 @@ class EdgeClusterAdvancedSettings(AbstractModel):
|
|
26649
26512
|
@property
|
26650
26513
|
def ProxyMode(self):
|
26651
26514
|
"""集群kube-proxy转发模式,支持"iptables"和"ipvs",默认为iptables
|
26652
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26653
26515
|
:rtype: str
|
26654
26516
|
"""
|
26655
26517
|
return self._ProxyMode
|
@@ -26683,13 +26545,10 @@ class EdgeClusterExtraArgs(AbstractModel):
|
|
26683
26545
|
def __init__(self):
|
26684
26546
|
r"""
|
26685
26547
|
:param _KubeAPIServer: kube-apiserver自定义参数,参数格式为["k1=v1", "k1=v2"], 例如["max-requests-inflight=500","feature-gates=PodShareProcessNamespace=true,DynamicKubeletConfig=true"]
|
26686
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26687
26548
|
:type KubeAPIServer: list of str
|
26688
26549
|
:param _KubeControllerManager: kube-controller-manager自定义参数
|
26689
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26690
26550
|
:type KubeControllerManager: list of str
|
26691
26551
|
:param _KubeScheduler: kube-scheduler自定义参数
|
26692
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26693
26552
|
:type KubeScheduler: list of str
|
26694
26553
|
"""
|
26695
26554
|
self._KubeAPIServer = None
|
@@ -26699,7 +26558,6 @@ class EdgeClusterExtraArgs(AbstractModel):
|
|
26699
26558
|
@property
|
26700
26559
|
def KubeAPIServer(self):
|
26701
26560
|
"""kube-apiserver自定义参数,参数格式为["k1=v1", "k1=v2"], 例如["max-requests-inflight=500","feature-gates=PodShareProcessNamespace=true,DynamicKubeletConfig=true"]
|
26702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26703
26561
|
:rtype: list of str
|
26704
26562
|
"""
|
26705
26563
|
return self._KubeAPIServer
|
@@ -26711,7 +26569,6 @@ class EdgeClusterExtraArgs(AbstractModel):
|
|
26711
26569
|
@property
|
26712
26570
|
def KubeControllerManager(self):
|
26713
26571
|
"""kube-controller-manager自定义参数
|
26714
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26715
26572
|
:rtype: list of str
|
26716
26573
|
"""
|
26717
26574
|
return self._KubeControllerManager
|
@@ -26723,7 +26580,6 @@ class EdgeClusterExtraArgs(AbstractModel):
|
|
26723
26580
|
@property
|
26724
26581
|
def KubeScheduler(self):
|
26725
26582
|
"""kube-scheduler自定义参数
|
26726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26727
26583
|
:rtype: list of str
|
26728
26584
|
"""
|
26729
26585
|
return self._KubeScheduler
|
@@ -26755,10 +26611,8 @@ class EdgeClusterInternalLB(AbstractModel):
|
|
26755
26611
|
def __init__(self):
|
26756
26612
|
r"""
|
26757
26613
|
:param _Enabled: 是否开启内网访问LB
|
26758
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26759
26614
|
:type Enabled: bool
|
26760
26615
|
:param _SubnetId: 内网访问LB关联的子网Id
|
26761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26762
26616
|
:type SubnetId: list of str
|
26763
26617
|
"""
|
26764
26618
|
self._Enabled = None
|
@@ -26767,7 +26621,6 @@ class EdgeClusterInternalLB(AbstractModel):
|
|
26767
26621
|
@property
|
26768
26622
|
def Enabled(self):
|
26769
26623
|
"""是否开启内网访问LB
|
26770
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26771
26624
|
:rtype: bool
|
26772
26625
|
"""
|
26773
26626
|
return self._Enabled
|
@@ -26779,7 +26632,6 @@ class EdgeClusterInternalLB(AbstractModel):
|
|
26779
26632
|
@property
|
26780
26633
|
def SubnetId(self):
|
26781
26634
|
"""内网访问LB关联的子网Id
|
26782
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26783
26635
|
:rtype: list of str
|
26784
26636
|
"""
|
26785
26637
|
return self._SubnetId
|
@@ -26810,10 +26662,8 @@ class EdgeClusterPublicLB(AbstractModel):
|
|
26810
26662
|
def __init__(self):
|
26811
26663
|
r"""
|
26812
26664
|
:param _Enabled: 是否开启公网访问LB
|
26813
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26814
26665
|
:type Enabled: bool
|
26815
26666
|
:param _AllowFromCidrs: 允许访问的公网cidr
|
26816
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26817
26667
|
:type AllowFromCidrs: list of str
|
26818
26668
|
"""
|
26819
26669
|
self._Enabled = None
|
@@ -26822,7 +26672,6 @@ class EdgeClusterPublicLB(AbstractModel):
|
|
26822
26672
|
@property
|
26823
26673
|
def Enabled(self):
|
26824
26674
|
"""是否开启公网访问LB
|
26825
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26826
26675
|
:rtype: bool
|
26827
26676
|
"""
|
26828
26677
|
return self._Enabled
|
@@ -26834,7 +26683,6 @@ class EdgeClusterPublicLB(AbstractModel):
|
|
26834
26683
|
@property
|
26835
26684
|
def AllowFromCidrs(self):
|
26836
26685
|
"""允许访问的公网cidr
|
26837
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26838
26686
|
:rtype: list of str
|
26839
26687
|
"""
|
26840
26688
|
return self._AllowFromCidrs
|
@@ -29028,10 +28876,8 @@ class FailedResource(AbstractModel):
|
|
29028
28876
|
def __init__(self):
|
29029
28877
|
r"""
|
29030
28878
|
:param _Resource: 资源六段式
|
29031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29032
28879
|
:type Resource: str
|
29033
28880
|
:param _Error: 执行失败的原因
|
29034
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29035
28881
|
:type Error: str
|
29036
28882
|
"""
|
29037
28883
|
self._Resource = None
|
@@ -29040,7 +28886,6 @@ class FailedResource(AbstractModel):
|
|
29040
28886
|
@property
|
29041
28887
|
def Resource(self):
|
29042
28888
|
"""资源六段式
|
29043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29044
28889
|
:rtype: str
|
29045
28890
|
"""
|
29046
28891
|
return self._Resource
|
@@ -29052,7 +28897,6 @@ class FailedResource(AbstractModel):
|
|
29052
28897
|
@property
|
29053
28898
|
def Error(self):
|
29054
28899
|
"""执行失败的原因
|
29055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29056
28900
|
:rtype: str
|
29057
28901
|
"""
|
29058
28902
|
return self._Error
|
@@ -29472,18 +29316,14 @@ class GPUArgs(AbstractModel):
|
|
29472
29316
|
def __init__(self):
|
29473
29317
|
r"""
|
29474
29318
|
:param _MIGEnable: 是否启用MIG特性
|
29475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29476
29319
|
:type MIGEnable: bool
|
29477
29320
|
:param _Driver: GPU驱动版本信息
|
29478
29321
|
:type Driver: :class:`tencentcloud.tke.v20180525.models.DriverVersion`
|
29479
29322
|
:param _CUDA: CUDA版本信息
|
29480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29481
29323
|
:type CUDA: :class:`tencentcloud.tke.v20180525.models.DriverVersion`
|
29482
29324
|
:param _CUDNN: cuDNN版本信息
|
29483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29484
29325
|
:type CUDNN: :class:`tencentcloud.tke.v20180525.models.CUDNN`
|
29485
29326
|
:param _CustomDriver: 自定义GPU驱动信息
|
29486
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29487
29327
|
:type CustomDriver: :class:`tencentcloud.tke.v20180525.models.CustomDriver`
|
29488
29328
|
"""
|
29489
29329
|
self._MIGEnable = None
|
@@ -29495,7 +29335,6 @@ class GPUArgs(AbstractModel):
|
|
29495
29335
|
@property
|
29496
29336
|
def MIGEnable(self):
|
29497
29337
|
"""是否启用MIG特性
|
29498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29499
29338
|
:rtype: bool
|
29500
29339
|
"""
|
29501
29340
|
return self._MIGEnable
|
@@ -29518,7 +29357,6 @@ class GPUArgs(AbstractModel):
|
|
29518
29357
|
@property
|
29519
29358
|
def CUDA(self):
|
29520
29359
|
"""CUDA版本信息
|
29521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29522
29360
|
:rtype: :class:`tencentcloud.tke.v20180525.models.DriverVersion`
|
29523
29361
|
"""
|
29524
29362
|
return self._CUDA
|
@@ -29530,7 +29368,6 @@ class GPUArgs(AbstractModel):
|
|
29530
29368
|
@property
|
29531
29369
|
def CUDNN(self):
|
29532
29370
|
"""cuDNN版本信息
|
29533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29534
29371
|
:rtype: :class:`tencentcloud.tke.v20180525.models.CUDNN`
|
29535
29372
|
"""
|
29536
29373
|
return self._CUDNN
|
@@ -29542,7 +29379,6 @@ class GPUArgs(AbstractModel):
|
|
29542
29379
|
@property
|
29543
29380
|
def CustomDriver(self):
|
29544
29381
|
"""自定义GPU驱动信息
|
29545
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29546
29382
|
:rtype: :class:`tencentcloud.tke.v20180525.models.CustomDriver`
|
29547
29383
|
"""
|
29548
29384
|
return self._CustomDriver
|
@@ -29857,7 +29693,6 @@ class GetTkeAppChartListResponse(AbstractModel):
|
|
29857
29693
|
def __init__(self):
|
29858
29694
|
r"""
|
29859
29695
|
:param _AppCharts: 所支持的chart列表
|
29860
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29861
29696
|
:type AppCharts: list of AppChart
|
29862
29697
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29863
29698
|
:type RequestId: str
|
@@ -29868,7 +29703,6 @@ class GetTkeAppChartListResponse(AbstractModel):
|
|
29868
29703
|
@property
|
29869
29704
|
def AppCharts(self):
|
29870
29705
|
"""所支持的chart列表
|
29871
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29872
29706
|
:rtype: list of AppChart
|
29873
29707
|
"""
|
29874
29708
|
return self._AppCharts
|
@@ -30532,16 +30366,12 @@ class ImageInstance(AbstractModel):
|
|
30532
30366
|
def __init__(self):
|
30533
30367
|
r"""
|
30534
30368
|
:param _Alias: 镜像别名
|
30535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30536
30369
|
:type Alias: str
|
30537
30370
|
:param _OsName: 操作系统名称
|
30538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30539
30371
|
:type OsName: str
|
30540
30372
|
:param _ImageId: 镜像ID
|
30541
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30542
30373
|
:type ImageId: str
|
30543
30374
|
:param _OsCustomizeType: 容器的镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
|
30544
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30545
30375
|
:type OsCustomizeType: str
|
30546
30376
|
"""
|
30547
30377
|
self._Alias = None
|
@@ -30552,7 +30382,6 @@ class ImageInstance(AbstractModel):
|
|
30552
30382
|
@property
|
30553
30383
|
def Alias(self):
|
30554
30384
|
"""镜像别名
|
30555
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30556
30385
|
:rtype: str
|
30557
30386
|
"""
|
30558
30387
|
return self._Alias
|
@@ -30564,7 +30393,6 @@ class ImageInstance(AbstractModel):
|
|
30564
30393
|
@property
|
30565
30394
|
def OsName(self):
|
30566
30395
|
"""操作系统名称
|
30567
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30568
30396
|
:rtype: str
|
30569
30397
|
"""
|
30570
30398
|
return self._OsName
|
@@ -30576,7 +30404,6 @@ class ImageInstance(AbstractModel):
|
|
30576
30404
|
@property
|
30577
30405
|
def ImageId(self):
|
30578
30406
|
"""镜像ID
|
30579
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30580
30407
|
:rtype: str
|
30581
30408
|
"""
|
30582
30409
|
return self._ImageId
|
@@ -30588,7 +30415,6 @@ class ImageInstance(AbstractModel):
|
|
30588
30415
|
@property
|
30589
30416
|
def OsCustomizeType(self):
|
30590
30417
|
"""容器的镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
|
30591
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30592
30418
|
:rtype: str
|
30593
30419
|
"""
|
30594
30420
|
return self._OsCustomizeType
|
@@ -30992,21 +30818,16 @@ class Instance(AbstractModel):
|
|
30992
30818
|
:param _InstanceState: 实例的状态(running 运行中,initializing 初始化中,failed 异常)
|
30993
30819
|
:type InstanceState: str
|
30994
30820
|
:param _DrainStatus: 实例是否封锁状态
|
30995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30996
30821
|
:type DrainStatus: str
|
30997
30822
|
:param _InstanceAdvancedSettings: 节点配置
|
30998
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30999
30823
|
:type InstanceAdvancedSettings: :class:`tencentcloud.tke.v20180525.models.InstanceAdvancedSettings`
|
31000
30824
|
:param _CreatedTime: 添加时间
|
31001
30825
|
:type CreatedTime: str
|
31002
30826
|
:param _LanIP: 节点内网IP
|
31003
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31004
30827
|
:type LanIP: str
|
31005
30828
|
:param _NodePoolId: 资源池ID
|
31006
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31007
30829
|
:type NodePoolId: str
|
31008
30830
|
:param _AutoscalingGroupId: 自动伸缩组ID
|
31009
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31010
30831
|
:type AutoscalingGroupId: str
|
31011
30832
|
"""
|
31012
30833
|
self._InstanceId = None
|
@@ -31067,7 +30888,6 @@ class Instance(AbstractModel):
|
|
31067
30888
|
@property
|
31068
30889
|
def DrainStatus(self):
|
31069
30890
|
"""实例是否封锁状态
|
31070
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31071
30891
|
:rtype: str
|
31072
30892
|
"""
|
31073
30893
|
return self._DrainStatus
|
@@ -31079,7 +30899,6 @@ class Instance(AbstractModel):
|
|
31079
30899
|
@property
|
31080
30900
|
def InstanceAdvancedSettings(self):
|
31081
30901
|
"""节点配置
|
31082
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31083
30902
|
:rtype: :class:`tencentcloud.tke.v20180525.models.InstanceAdvancedSettings`
|
31084
30903
|
"""
|
31085
30904
|
return self._InstanceAdvancedSettings
|
@@ -31102,7 +30921,6 @@ class Instance(AbstractModel):
|
|
31102
30921
|
@property
|
31103
30922
|
def LanIP(self):
|
31104
30923
|
"""节点内网IP
|
31105
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31106
30924
|
:rtype: str
|
31107
30925
|
"""
|
31108
30926
|
return self._LanIP
|
@@ -31114,7 +30932,6 @@ class Instance(AbstractModel):
|
|
31114
30932
|
@property
|
31115
30933
|
def NodePoolId(self):
|
31116
30934
|
"""资源池ID
|
31117
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31118
30935
|
:rtype: str
|
31119
30936
|
"""
|
31120
30937
|
return self._NodePoolId
|
@@ -31126,7 +30943,6 @@ class Instance(AbstractModel):
|
|
31126
30943
|
@property
|
31127
30944
|
def AutoscalingGroupId(self):
|
31128
30945
|
"""自动伸缩组ID
|
31129
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31130
30946
|
:rtype: str
|
31131
30947
|
"""
|
31132
30948
|
return self._AutoscalingGroupId
|
@@ -31796,10 +31612,8 @@ aborted 已取消
|
|
31796
31612
|
pending 还未开始
|
31797
31613
|
:type LifeState: str
|
31798
31614
|
:param _StartAt: 升级开始时间
|
31799
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31800
31615
|
:type StartAt: str
|
31801
31616
|
:param _EndAt: 升级结束时间
|
31802
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31803
31617
|
:type EndAt: str
|
31804
31618
|
:param _CheckResult: 升级前检查结果
|
31805
31619
|
:type CheckResult: :class:`tencentcloud.tke.v20180525.models.InstanceUpgradePreCheckResult`
|
@@ -31845,7 +31659,6 @@ pending 还未开始
|
|
31845
31659
|
@property
|
31846
31660
|
def StartAt(self):
|
31847
31661
|
"""升级开始时间
|
31848
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31849
31662
|
:rtype: str
|
31850
31663
|
"""
|
31851
31664
|
return self._StartAt
|
@@ -31857,7 +31670,6 @@ pending 还未开始
|
|
31857
31670
|
@property
|
31858
31671
|
def EndAt(self):
|
31859
31672
|
"""升级结束时间
|
31860
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31861
31673
|
:rtype: str
|
31862
31674
|
"""
|
31863
31675
|
return self._EndAt
|
@@ -36058,10 +35870,8 @@ class NodeCountSummary(AbstractModel):
|
|
36058
35870
|
def __init__(self):
|
36059
35871
|
r"""
|
36060
35872
|
:param _ManuallyAdded: 手动管理的节点
|
36061
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36062
35873
|
:type ManuallyAdded: :class:`tencentcloud.tke.v20180525.models.ManuallyAdded`
|
36063
35874
|
:param _AutoscalingAdded: 自动管理的节点
|
36064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36065
35875
|
:type AutoscalingAdded: :class:`tencentcloud.tke.v20180525.models.AutoscalingAdded`
|
36066
35876
|
"""
|
36067
35877
|
self._ManuallyAdded = None
|
@@ -36070,7 +35880,6 @@ class NodeCountSummary(AbstractModel):
|
|
36070
35880
|
@property
|
36071
35881
|
def ManuallyAdded(self):
|
36072
35882
|
"""手动管理的节点
|
36073
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36074
35883
|
:rtype: :class:`tencentcloud.tke.v20180525.models.ManuallyAdded`
|
36075
35884
|
"""
|
36076
35885
|
return self._ManuallyAdded
|
@@ -36082,7 +35891,6 @@ class NodeCountSummary(AbstractModel):
|
|
36082
35891
|
@property
|
36083
35892
|
def AutoscalingAdded(self):
|
36084
35893
|
"""自动管理的节点
|
36085
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36086
35894
|
:rtype: :class:`tencentcloud.tke.v20180525.models.AutoscalingAdded`
|
36087
35895
|
"""
|
36088
35896
|
return self._AutoscalingAdded
|
@@ -36667,16 +36475,12 @@ class NodePoolRuntime(AbstractModel):
|
|
36667
36475
|
def __init__(self):
|
36668
36476
|
r"""
|
36669
36477
|
:param _NodePoolId: 节点池ID
|
36670
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36671
36478
|
:type NodePoolId: str
|
36672
36479
|
:param _RuntimeType: 运行时类型
|
36673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36674
36480
|
:type RuntimeType: str
|
36675
36481
|
:param _RuntimeVersion: 运行时版本
|
36676
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36677
36482
|
:type RuntimeVersion: str
|
36678
36483
|
:param _NodePoolName: 节点池名称
|
36679
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36680
36484
|
:type NodePoolName: str
|
36681
36485
|
"""
|
36682
36486
|
self._NodePoolId = None
|
@@ -36687,7 +36491,6 @@ class NodePoolRuntime(AbstractModel):
|
|
36687
36491
|
@property
|
36688
36492
|
def NodePoolId(self):
|
36689
36493
|
"""节点池ID
|
36690
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36691
36494
|
:rtype: str
|
36692
36495
|
"""
|
36693
36496
|
return self._NodePoolId
|
@@ -36699,7 +36502,6 @@ class NodePoolRuntime(AbstractModel):
|
|
36699
36502
|
@property
|
36700
36503
|
def RuntimeType(self):
|
36701
36504
|
"""运行时类型
|
36702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36703
36505
|
:rtype: str
|
36704
36506
|
"""
|
36705
36507
|
return self._RuntimeType
|
@@ -36711,7 +36513,6 @@ class NodePoolRuntime(AbstractModel):
|
|
36711
36513
|
@property
|
36712
36514
|
def RuntimeVersion(self):
|
36713
36515
|
"""运行时版本
|
36714
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36715
36516
|
:rtype: str
|
36716
36517
|
"""
|
36717
36518
|
return self._RuntimeVersion
|
@@ -36723,7 +36524,6 @@ class NodePoolRuntime(AbstractModel):
|
|
36723
36524
|
@property
|
36724
36525
|
def NodePoolName(self):
|
36725
36526
|
"""节点池名称
|
36726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36727
36527
|
:rtype: str
|
36728
36528
|
"""
|
36729
36529
|
return self._NodePoolName
|
@@ -36900,31 +36700,22 @@ class OpenPolicyInfo(AbstractModel):
|
|
36900
36700
|
def __init__(self):
|
36901
36701
|
r"""
|
36902
36702
|
:param _PolicyCategory: 策略分类:cluster集群策略、node节点策略、namespace命名空间策略、configuration配置相关策略、compute计算资源策略、storage存储资源策略、network网络资源策略
|
36903
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36904
36703
|
:type PolicyCategory: str
|
36905
36704
|
:param _PolicyName: 策略中文名称
|
36906
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36907
36705
|
:type PolicyName: str
|
36908
36706
|
:param _PolicyDesc: 策略描述
|
36909
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36910
36707
|
:type PolicyDesc: str
|
36911
36708
|
:param _EnforcementAction: 策略运行模式:dryrun空跑不生效,deny拦截生效
|
36912
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36913
36709
|
:type EnforcementAction: str
|
36914
36710
|
:param _EventNums: 关联的事件数量(最近7d)
|
36915
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36916
36711
|
:type EventNums: int
|
36917
36712
|
:param _Name: 策略英文名称
|
36918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36919
36713
|
:type Name: str
|
36920
36714
|
:param _Kind: 策略模板类型
|
36921
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36922
36715
|
:type Kind: str
|
36923
36716
|
:param _EnabledStatus: 策略开关状态:open打开,close关闭
|
36924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36925
36717
|
:type EnabledStatus: str
|
36926
36718
|
:param _ConstraintYamlExample: 策略的实例的yaml示例base64编码
|
36927
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36928
36719
|
:type ConstraintYamlExample: str
|
36929
36720
|
:param _OpenConstraintInfoList: 策略关联的实例列表
|
36930
36721
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -36944,7 +36735,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
36944
36735
|
@property
|
36945
36736
|
def PolicyCategory(self):
|
36946
36737
|
"""策略分类:cluster集群策略、node节点策略、namespace命名空间策略、configuration配置相关策略、compute计算资源策略、storage存储资源策略、network网络资源策略
|
36947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36948
36738
|
:rtype: str
|
36949
36739
|
"""
|
36950
36740
|
return self._PolicyCategory
|
@@ -36956,7 +36746,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
36956
36746
|
@property
|
36957
36747
|
def PolicyName(self):
|
36958
36748
|
"""策略中文名称
|
36959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36960
36749
|
:rtype: str
|
36961
36750
|
"""
|
36962
36751
|
return self._PolicyName
|
@@ -36968,7 +36757,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
36968
36757
|
@property
|
36969
36758
|
def PolicyDesc(self):
|
36970
36759
|
"""策略描述
|
36971
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36972
36760
|
:rtype: str
|
36973
36761
|
"""
|
36974
36762
|
return self._PolicyDesc
|
@@ -36980,7 +36768,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
36980
36768
|
@property
|
36981
36769
|
def EnforcementAction(self):
|
36982
36770
|
"""策略运行模式:dryrun空跑不生效,deny拦截生效
|
36983
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36984
36771
|
:rtype: str
|
36985
36772
|
"""
|
36986
36773
|
return self._EnforcementAction
|
@@ -36992,7 +36779,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
36992
36779
|
@property
|
36993
36780
|
def EventNums(self):
|
36994
36781
|
"""关联的事件数量(最近7d)
|
36995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36996
36782
|
:rtype: int
|
36997
36783
|
"""
|
36998
36784
|
return self._EventNums
|
@@ -37004,7 +36790,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
37004
36790
|
@property
|
37005
36791
|
def Name(self):
|
37006
36792
|
"""策略英文名称
|
37007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37008
36793
|
:rtype: str
|
37009
36794
|
"""
|
37010
36795
|
return self._Name
|
@@ -37016,7 +36801,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
37016
36801
|
@property
|
37017
36802
|
def Kind(self):
|
37018
36803
|
"""策略模板类型
|
37019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37020
36804
|
:rtype: str
|
37021
36805
|
"""
|
37022
36806
|
return self._Kind
|
@@ -37028,7 +36812,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
37028
36812
|
@property
|
37029
36813
|
def EnabledStatus(self):
|
37030
36814
|
"""策略开关状态:open打开,close关闭
|
37031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37032
36815
|
:rtype: str
|
37033
36816
|
"""
|
37034
36817
|
return self._EnabledStatus
|
@@ -37040,7 +36823,6 @@ class OpenPolicyInfo(AbstractModel):
|
|
37040
36823
|
@property
|
37041
36824
|
def ConstraintYamlExample(self):
|
37042
36825
|
"""策略的实例的yaml示例base64编码
|
37043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37044
36826
|
:rtype: str
|
37045
36827
|
"""
|
37046
36828
|
return self._ConstraintYamlExample
|
@@ -37197,13 +36979,10 @@ class OptionalRuntimes(AbstractModel):
|
|
37197
36979
|
def __init__(self):
|
37198
36980
|
r"""
|
37199
36981
|
:param _RuntimeType: 运行时类型
|
37200
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37201
36982
|
:type RuntimeType: str
|
37202
36983
|
:param _RuntimeVersions: 运行时版本列表
|
37203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37204
36984
|
:type RuntimeVersions: list of str
|
37205
36985
|
:param _DefaultVersion: 该类型的默认运行时版本
|
37206
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37207
36986
|
:type DefaultVersion: str
|
37208
36987
|
"""
|
37209
36988
|
self._RuntimeType = None
|
@@ -37213,7 +36992,6 @@ class OptionalRuntimes(AbstractModel):
|
|
37213
36992
|
@property
|
37214
36993
|
def RuntimeType(self):
|
37215
36994
|
"""运行时类型
|
37216
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37217
36995
|
:rtype: str
|
37218
36996
|
"""
|
37219
36997
|
return self._RuntimeType
|
@@ -37225,7 +37003,6 @@ class OptionalRuntimes(AbstractModel):
|
|
37225
37003
|
@property
|
37226
37004
|
def RuntimeVersions(self):
|
37227
37005
|
"""运行时版本列表
|
37228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37229
37006
|
:rtype: list of str
|
37230
37007
|
"""
|
37231
37008
|
return self._RuntimeVersions
|
@@ -37237,7 +37014,6 @@ class OptionalRuntimes(AbstractModel):
|
|
37237
37014
|
@property
|
37238
37015
|
def DefaultVersion(self):
|
37239
37016
|
"""该类型的默认运行时版本
|
37240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37241
37017
|
:rtype: str
|
37242
37018
|
"""
|
37243
37019
|
return self._DefaultVersion
|
@@ -37686,16 +37462,12 @@ class PodLimitsByType(AbstractModel):
|
|
37686
37462
|
def __init__(self):
|
37687
37463
|
r"""
|
37688
37464
|
:param _TKERouteENINonStaticIP: TKE共享网卡非固定IP模式可支持的Pod数量
|
37689
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37690
37465
|
:type TKERouteENINonStaticIP: int
|
37691
37466
|
:param _TKERouteENIStaticIP: TKE共享网卡固定IP模式可支持的Pod数量
|
37692
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37693
37467
|
:type TKERouteENIStaticIP: int
|
37694
37468
|
:param _TKEDirectENI: TKE独立网卡模式可支持的Pod数量
|
37695
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37696
37469
|
:type TKEDirectENI: int
|
37697
37470
|
:param _TKESubENI: TKE中继网卡模式可支持的Pod数量
|
37698
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37699
37471
|
:type TKESubENI: int
|
37700
37472
|
"""
|
37701
37473
|
self._TKERouteENINonStaticIP = None
|
@@ -37706,7 +37478,6 @@ class PodLimitsByType(AbstractModel):
|
|
37706
37478
|
@property
|
37707
37479
|
def TKERouteENINonStaticIP(self):
|
37708
37480
|
"""TKE共享网卡非固定IP模式可支持的Pod数量
|
37709
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37710
37481
|
:rtype: int
|
37711
37482
|
"""
|
37712
37483
|
return self._TKERouteENINonStaticIP
|
@@ -37718,7 +37489,6 @@ class PodLimitsByType(AbstractModel):
|
|
37718
37489
|
@property
|
37719
37490
|
def TKERouteENIStaticIP(self):
|
37720
37491
|
"""TKE共享网卡固定IP模式可支持的Pod数量
|
37721
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37722
37492
|
:rtype: int
|
37723
37493
|
"""
|
37724
37494
|
return self._TKERouteENIStaticIP
|
@@ -37730,7 +37500,6 @@ class PodLimitsByType(AbstractModel):
|
|
37730
37500
|
@property
|
37731
37501
|
def TKEDirectENI(self):
|
37732
37502
|
"""TKE独立网卡模式可支持的Pod数量
|
37733
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37734
37503
|
:rtype: int
|
37735
37504
|
"""
|
37736
37505
|
return self._TKEDirectENI
|
@@ -37742,7 +37511,6 @@ class PodLimitsByType(AbstractModel):
|
|
37742
37511
|
@property
|
37743
37512
|
def TKESubENI(self):
|
37744
37513
|
"""TKE中继网卡模式可支持的Pod数量
|
37745
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37746
37514
|
:rtype: int
|
37747
37515
|
"""
|
37748
37516
|
return self._TKESubENI
|
@@ -37775,16 +37543,12 @@ class PodLimitsInstance(AbstractModel):
|
|
37775
37543
|
def __init__(self):
|
37776
37544
|
r"""
|
37777
37545
|
:param _Zone: 机型所在可用区
|
37778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37779
37546
|
:type Zone: str
|
37780
37547
|
:param _InstanceFamily: 机型所属机型族
|
37781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37782
37548
|
:type InstanceFamily: str
|
37783
37549
|
:param _InstanceType: 实例机型名称
|
37784
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37785
37550
|
:type InstanceType: str
|
37786
37551
|
:param _PodLimits: 机型可支持的最大VPC-CNI模式Pod数量信息
|
37787
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37788
37552
|
:type PodLimits: :class:`tencentcloud.tke.v20180525.models.PodLimitsByType`
|
37789
37553
|
"""
|
37790
37554
|
self._Zone = None
|
@@ -37795,7 +37559,6 @@ class PodLimitsInstance(AbstractModel):
|
|
37795
37559
|
@property
|
37796
37560
|
def Zone(self):
|
37797
37561
|
"""机型所在可用区
|
37798
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37799
37562
|
:rtype: str
|
37800
37563
|
"""
|
37801
37564
|
return self._Zone
|
@@ -37807,7 +37570,6 @@ class PodLimitsInstance(AbstractModel):
|
|
37807
37570
|
@property
|
37808
37571
|
def InstanceFamily(self):
|
37809
37572
|
"""机型所属机型族
|
37810
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37811
37573
|
:rtype: str
|
37812
37574
|
"""
|
37813
37575
|
return self._InstanceFamily
|
@@ -37819,7 +37581,6 @@ class PodLimitsInstance(AbstractModel):
|
|
37819
37581
|
@property
|
37820
37582
|
def InstanceType(self):
|
37821
37583
|
"""实例机型名称
|
37822
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37823
37584
|
:rtype: str
|
37824
37585
|
"""
|
37825
37586
|
return self._InstanceType
|
@@ -37831,7 +37592,6 @@ class PodLimitsInstance(AbstractModel):
|
|
37831
37592
|
@property
|
37832
37593
|
def PodLimits(self):
|
37833
37594
|
"""机型可支持的最大VPC-CNI模式Pod数量信息
|
37834
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37835
37595
|
:rtype: :class:`tencentcloud.tke.v20180525.models.PodLimitsByType`
|
37836
37596
|
"""
|
37837
37597
|
return self._PodLimits
|
@@ -42433,22 +42193,16 @@ class ReleaseHistory(AbstractModel):
|
|
42433
42193
|
:param _Namespace: 应用命名空间
|
42434
42194
|
:type Namespace: str
|
42435
42195
|
:param _Revision: 应用版本
|
42436
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42437
42196
|
:type Revision: int
|
42438
42197
|
:param _Status: 应用状态
|
42439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42440
42198
|
:type Status: str
|
42441
42199
|
:param _Chart: 应用制品名称
|
42442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42443
42200
|
:type Chart: str
|
42444
42201
|
:param _AppVersion: 应用制品版本
|
42445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42446
42202
|
:type AppVersion: str
|
42447
42203
|
:param _UpdatedTime: 应用更新时间
|
42448
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42449
42204
|
:type UpdatedTime: str
|
42450
42205
|
:param _Description: 应用描述
|
42451
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42452
42206
|
:type Description: str
|
42453
42207
|
"""
|
42454
42208
|
self._Name = None
|
@@ -42485,7 +42239,6 @@ class ReleaseHistory(AbstractModel):
|
|
42485
42239
|
@property
|
42486
42240
|
def Revision(self):
|
42487
42241
|
"""应用版本
|
42488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42489
42242
|
:rtype: int
|
42490
42243
|
"""
|
42491
42244
|
return self._Revision
|
@@ -42497,7 +42250,6 @@ class ReleaseHistory(AbstractModel):
|
|
42497
42250
|
@property
|
42498
42251
|
def Status(self):
|
42499
42252
|
"""应用状态
|
42500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42501
42253
|
:rtype: str
|
42502
42254
|
"""
|
42503
42255
|
return self._Status
|
@@ -42509,7 +42261,6 @@ class ReleaseHistory(AbstractModel):
|
|
42509
42261
|
@property
|
42510
42262
|
def Chart(self):
|
42511
42263
|
"""应用制品名称
|
42512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42513
42264
|
:rtype: str
|
42514
42265
|
"""
|
42515
42266
|
return self._Chart
|
@@ -42521,7 +42272,6 @@ class ReleaseHistory(AbstractModel):
|
|
42521
42272
|
@property
|
42522
42273
|
def AppVersion(self):
|
42523
42274
|
"""应用制品版本
|
42524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42525
42275
|
:rtype: str
|
42526
42276
|
"""
|
42527
42277
|
return self._AppVersion
|
@@ -42533,7 +42283,6 @@ class ReleaseHistory(AbstractModel):
|
|
42533
42283
|
@property
|
42534
42284
|
def UpdatedTime(self):
|
42535
42285
|
"""应用更新时间
|
42536
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42537
42286
|
:rtype: str
|
42538
42287
|
"""
|
42539
42288
|
return self._UpdatedTime
|
@@ -42545,7 +42294,6 @@ class ReleaseHistory(AbstractModel):
|
|
42545
42294
|
@property
|
42546
42295
|
def Description(self):
|
42547
42296
|
"""应用描述
|
42548
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42549
42297
|
:rtype: str
|
42550
42298
|
"""
|
42551
42299
|
return self._Description
|
@@ -43898,13 +43646,10 @@ class RouteTableConflict(AbstractModel):
|
|
43898
43646
|
:param _RouteTableType: 路由表类型。
|
43899
43647
|
:type RouteTableType: str
|
43900
43648
|
:param _RouteTableCidrBlock: 路由表CIDR。
|
43901
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43902
43649
|
:type RouteTableCidrBlock: str
|
43903
43650
|
:param _RouteTableName: 路由表名称。
|
43904
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43905
43651
|
:type RouteTableName: str
|
43906
43652
|
:param _RouteTableId: 路由表ID。
|
43907
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43908
43653
|
:type RouteTableId: str
|
43909
43654
|
"""
|
43910
43655
|
self._RouteTableType = None
|
@@ -43926,7 +43671,6 @@ class RouteTableConflict(AbstractModel):
|
|
43926
43671
|
@property
|
43927
43672
|
def RouteTableCidrBlock(self):
|
43928
43673
|
"""路由表CIDR。
|
43929
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43930
43674
|
:rtype: str
|
43931
43675
|
"""
|
43932
43676
|
return self._RouteTableCidrBlock
|
@@ -43938,7 +43682,6 @@ class RouteTableConflict(AbstractModel):
|
|
43938
43682
|
@property
|
43939
43683
|
def RouteTableName(self):
|
43940
43684
|
"""路由表名称。
|
43941
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43942
43685
|
:rtype: str
|
43943
43686
|
"""
|
43944
43687
|
return self._RouteTableName
|
@@ -43950,7 +43693,6 @@ class RouteTableConflict(AbstractModel):
|
|
43950
43693
|
@property
|
43951
43694
|
def RouteTableId(self):
|
43952
43695
|
"""路由表ID。
|
43953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43954
43696
|
:rtype: str
|
43955
43697
|
"""
|
43956
43698
|
return self._RouteTableId
|
@@ -44307,10 +44049,8 @@ class RuntimeConfig(AbstractModel):
|
|
44307
44049
|
def __init__(self):
|
44308
44050
|
r"""
|
44309
44051
|
:param _RuntimeType: 运行时类型
|
44310
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44311
44052
|
:type RuntimeType: str
|
44312
44053
|
:param _RuntimeVersion: 运行时版本
|
44313
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44314
44054
|
:type RuntimeVersion: str
|
44315
44055
|
"""
|
44316
44056
|
self._RuntimeType = None
|
@@ -44319,7 +44059,6 @@ class RuntimeConfig(AbstractModel):
|
|
44319
44059
|
@property
|
44320
44060
|
def RuntimeType(self):
|
44321
44061
|
"""运行时类型
|
44322
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44323
44062
|
:rtype: str
|
44324
44063
|
"""
|
44325
44064
|
return self._RuntimeType
|
@@ -44331,7 +44070,6 @@ class RuntimeConfig(AbstractModel):
|
|
44331
44070
|
@property
|
44332
44071
|
def RuntimeVersion(self):
|
44333
44072
|
"""运行时版本
|
44334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44335
44073
|
:rtype: str
|
44336
44074
|
"""
|
44337
44075
|
return self._RuntimeVersion
|
@@ -44922,16 +44660,12 @@ class Step(AbstractModel):
|
|
44922
44660
|
:param _Name: 名称
|
44923
44661
|
:type Name: str
|
44924
44662
|
:param _StartAt: 开始时间
|
44925
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44926
44663
|
:type StartAt: str
|
44927
44664
|
:param _EndAt: 结束时间
|
44928
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44929
44665
|
:type EndAt: str
|
44930
44666
|
:param _Status: 当前状态
|
44931
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44932
44667
|
:type Status: str
|
44933
44668
|
:param _Message: 执行信息
|
44934
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44935
44669
|
:type Message: str
|
44936
44670
|
"""
|
44937
44671
|
self._Name = None
|
@@ -44954,7 +44688,6 @@ class Step(AbstractModel):
|
|
44954
44688
|
@property
|
44955
44689
|
def StartAt(self):
|
44956
44690
|
"""开始时间
|
44957
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44958
44691
|
:rtype: str
|
44959
44692
|
"""
|
44960
44693
|
return self._StartAt
|
@@ -44966,7 +44699,6 @@ class Step(AbstractModel):
|
|
44966
44699
|
@property
|
44967
44700
|
def EndAt(self):
|
44968
44701
|
"""结束时间
|
44969
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44970
44702
|
:rtype: str
|
44971
44703
|
"""
|
44972
44704
|
return self._EndAt
|
@@ -44978,7 +44710,6 @@ class Step(AbstractModel):
|
|
44978
44710
|
@property
|
44979
44711
|
def Status(self):
|
44980
44712
|
"""当前状态
|
44981
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44982
44713
|
:rtype: str
|
44983
44714
|
"""
|
44984
44715
|
return self._Status
|
@@ -44990,7 +44721,6 @@ class Step(AbstractModel):
|
|
44990
44721
|
@property
|
44991
44722
|
def Message(self):
|
44992
44723
|
"""执行信息
|
44993
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
44994
44724
|
:rtype: str
|
44995
44725
|
"""
|
44996
44726
|
return self._Message
|
@@ -45228,16 +44958,12 @@ class Switch(AbstractModel):
|
|
45228
44958
|
:param _ClusterId: 集群ID
|
45229
44959
|
:type ClusterId: str
|
45230
44960
|
:param _Audit: 审计开关的详细信息
|
45231
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45232
44961
|
:type Audit: :class:`tencentcloud.tke.v20180525.models.SwitchInfo`
|
45233
44962
|
:param _Event: 事件开关的详细信息
|
45234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45235
44963
|
:type Event: :class:`tencentcloud.tke.v20180525.models.SwitchInfo`
|
45236
44964
|
:param _Log: 普通日志的详细信息
|
45237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45238
44965
|
:type Log: :class:`tencentcloud.tke.v20180525.models.SwitchInfo`
|
45239
44966
|
:param _MasterLog: master 日志详细信息
|
45240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45241
44967
|
:type MasterLog: :class:`tencentcloud.tke.v20180525.models.SwitchInfo`
|
45242
44968
|
"""
|
45243
44969
|
self._ClusterId = None
|
@@ -45260,7 +44986,6 @@ class Switch(AbstractModel):
|
|
45260
44986
|
@property
|
45261
44987
|
def Audit(self):
|
45262
44988
|
"""审计开关的详细信息
|
45263
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45264
44989
|
:rtype: :class:`tencentcloud.tke.v20180525.models.SwitchInfo`
|
45265
44990
|
"""
|
45266
44991
|
return self._Audit
|
@@ -45272,7 +44997,6 @@ class Switch(AbstractModel):
|
|
45272
44997
|
@property
|
45273
44998
|
def Event(self):
|
45274
44999
|
"""事件开关的详细信息
|
45275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45276
45000
|
:rtype: :class:`tencentcloud.tke.v20180525.models.SwitchInfo`
|
45277
45001
|
"""
|
45278
45002
|
return self._Event
|
@@ -45284,7 +45008,6 @@ class Switch(AbstractModel):
|
|
45284
45008
|
@property
|
45285
45009
|
def Log(self):
|
45286
45010
|
"""普通日志的详细信息
|
45287
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45288
45011
|
:rtype: :class:`tencentcloud.tke.v20180525.models.SwitchInfo`
|
45289
45012
|
"""
|
45290
45013
|
return self._Log
|
@@ -45296,7 +45019,6 @@ class Switch(AbstractModel):
|
|
45296
45019
|
@property
|
45297
45020
|
def MasterLog(self):
|
45298
45021
|
"""master 日志详细信息
|
45299
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45300
45022
|
:rtype: :class:`tencentcloud.tke.v20180525.models.SwitchInfo`
|
45301
45023
|
"""
|
45302
45024
|
return self._MasterLog
|
@@ -45338,22 +45060,16 @@ class SwitchInfo(AbstractModel):
|
|
45338
45060
|
def __init__(self):
|
45339
45061
|
r"""
|
45340
45062
|
:param _Enable: 开启标识符 true代表开启
|
45341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45342
45063
|
:type Enable: bool
|
45343
45064
|
:param _LogsetId: CLS日志集ID
|
45344
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45345
45065
|
:type LogsetId: str
|
45346
45066
|
:param _TopicId: CLS日志主题ID
|
45347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45348
45067
|
:type TopicId: str
|
45349
45068
|
:param _Version: 当前log-agent版本
|
45350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45351
45069
|
:type Version: str
|
45352
45070
|
:param _UpgradeAble: 是否可升级
|
45353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45354
45071
|
:type UpgradeAble: bool
|
45355
45072
|
:param _TopicRegion: CLS日志主题所属region
|
45356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45357
45073
|
:type TopicRegion: str
|
45358
45074
|
"""
|
45359
45075
|
self._Enable = None
|
@@ -45366,7 +45082,6 @@ class SwitchInfo(AbstractModel):
|
|
45366
45082
|
@property
|
45367
45083
|
def Enable(self):
|
45368
45084
|
"""开启标识符 true代表开启
|
45369
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45370
45085
|
:rtype: bool
|
45371
45086
|
"""
|
45372
45087
|
return self._Enable
|
@@ -45378,7 +45093,6 @@ class SwitchInfo(AbstractModel):
|
|
45378
45093
|
@property
|
45379
45094
|
def LogsetId(self):
|
45380
45095
|
"""CLS日志集ID
|
45381
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45382
45096
|
:rtype: str
|
45383
45097
|
"""
|
45384
45098
|
return self._LogsetId
|
@@ -45390,7 +45104,6 @@ class SwitchInfo(AbstractModel):
|
|
45390
45104
|
@property
|
45391
45105
|
def TopicId(self):
|
45392
45106
|
"""CLS日志主题ID
|
45393
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45394
45107
|
:rtype: str
|
45395
45108
|
"""
|
45396
45109
|
return self._TopicId
|
@@ -45402,7 +45115,6 @@ class SwitchInfo(AbstractModel):
|
|
45402
45115
|
@property
|
45403
45116
|
def Version(self):
|
45404
45117
|
"""当前log-agent版本
|
45405
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45406
45118
|
:rtype: str
|
45407
45119
|
"""
|
45408
45120
|
return self._Version
|
@@ -45414,7 +45126,6 @@ class SwitchInfo(AbstractModel):
|
|
45414
45126
|
@property
|
45415
45127
|
def UpgradeAble(self):
|
45416
45128
|
"""是否可升级
|
45417
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45418
45129
|
:rtype: bool
|
45419
45130
|
"""
|
45420
45131
|
return self._UpgradeAble
|
@@ -45426,7 +45137,6 @@ class SwitchInfo(AbstractModel):
|
|
45426
45137
|
@property
|
45427
45138
|
def TopicRegion(self):
|
45428
45139
|
"""CLS日志主题所属region
|
45429
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45430
45140
|
:rtype: str
|
45431
45141
|
"""
|
45432
45142
|
return self._TopicRegion
|
@@ -45680,7 +45390,6 @@ class TagSpecification(AbstractModel):
|
|
45680
45390
|
def __init__(self):
|
45681
45391
|
r"""
|
45682
45392
|
:param _ResourceType: 标签绑定的资源类型,当前支持类型:"cluster"
|
45683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45684
45393
|
:type ResourceType: str
|
45685
45394
|
:param _Tags: 标签对列表
|
45686
45395
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -45692,7 +45401,6 @@ class TagSpecification(AbstractModel):
|
|
45692
45401
|
@property
|
45693
45402
|
def ResourceType(self):
|
45694
45403
|
"""标签绑定的资源类型,当前支持类型:"cluster"
|
45695
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45696
45404
|
:rtype: str
|
45697
45405
|
"""
|
45698
45406
|
return self._ResourceType
|
@@ -45814,13 +45522,10 @@ success: 步骤成功完成
|
|
45814
45522
|
failed: 步骤失败
|
45815
45523
|
:type LifeState: str
|
45816
45524
|
:param _StartAt: 步骤开始时间
|
45817
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45818
45525
|
:type StartAt: str
|
45819
45526
|
:param _EndAt: 步骤结束时间
|
45820
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45821
45527
|
:type EndAt: str
|
45822
45528
|
:param _FailedMsg: 若步骤生命周期为failed,则此字段显示错误信息
|
45823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45824
45529
|
:type FailedMsg: str
|
45825
45530
|
"""
|
45826
45531
|
self._Step = None
|
@@ -45858,7 +45563,6 @@ failed: 步骤失败
|
|
45858
45563
|
@property
|
45859
45564
|
def StartAt(self):
|
45860
45565
|
"""步骤开始时间
|
45861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45862
45566
|
:rtype: str
|
45863
45567
|
"""
|
45864
45568
|
return self._StartAt
|
@@ -45870,7 +45574,6 @@ failed: 步骤失败
|
|
45870
45574
|
@property
|
45871
45575
|
def EndAt(self):
|
45872
45576
|
"""步骤结束时间
|
45873
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45874
45577
|
:rtype: str
|
45875
45578
|
"""
|
45876
45579
|
return self._EndAt
|
@@ -45882,7 +45585,6 @@ failed: 步骤失败
|
|
45882
45585
|
@property
|
45883
45586
|
def FailedMsg(self):
|
45884
45587
|
"""若步骤生命周期为failed,则此字段显示错误信息
|
45885
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45886
45588
|
:rtype: str
|
45887
45589
|
"""
|
45888
45590
|
return self._FailedMsg
|
@@ -46020,10 +45722,8 @@ class UnavailableReason(AbstractModel):
|
|
46020
45722
|
def __init__(self):
|
46021
45723
|
r"""
|
46022
45724
|
:param _InstanceId: 实例ID
|
46023
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46024
45725
|
:type InstanceId: str
|
46025
45726
|
:param _Reason: 原因
|
46026
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46027
45727
|
:type Reason: str
|
46028
45728
|
"""
|
46029
45729
|
self._InstanceId = None
|
@@ -46032,7 +45732,6 @@ class UnavailableReason(AbstractModel):
|
|
46032
45732
|
@property
|
46033
45733
|
def InstanceId(self):
|
46034
45734
|
"""实例ID
|
46035
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46036
45735
|
:rtype: str
|
46037
45736
|
"""
|
46038
45737
|
return self._InstanceId
|
@@ -46044,7 +45743,6 @@ class UnavailableReason(AbstractModel):
|
|
46044
45743
|
@property
|
46045
45744
|
def Reason(self):
|
46046
45745
|
"""原因
|
46047
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46048
45746
|
:rtype: str
|
46049
45747
|
"""
|
46050
45748
|
return self._Reason
|
@@ -47634,7 +47332,6 @@ class UpgradeAbleInstancesItem(AbstractModel):
|
|
47634
47332
|
:param _Version: 节点的当前版本
|
47635
47333
|
:type Version: str
|
47636
47334
|
:param _LatestVersion: 当前版本的最新小版本
|
47637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
47638
47335
|
:type LatestVersion: str
|
47639
47336
|
:param _RuntimeVersion: RuntimeVersion
|
47640
47337
|
:type RuntimeVersion: str
|
@@ -47672,7 +47369,6 @@ class UpgradeAbleInstancesItem(AbstractModel):
|
|
47672
47369
|
@property
|
47673
47370
|
def LatestVersion(self):
|
47674
47371
|
"""当前版本的最新小版本
|
47675
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
47676
47372
|
:rtype: str
|
47677
47373
|
"""
|
47678
47374
|
return self._LatestVersion
|
@@ -48246,13 +47942,10 @@ class VersionInstance(AbstractModel):
|
|
48246
47942
|
def __init__(self):
|
48247
47943
|
r"""
|
48248
47944
|
:param _Name: 版本名称
|
48249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48250
47945
|
:type Name: str
|
48251
47946
|
:param _Version: 版本信息
|
48252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48253
47947
|
:type Version: str
|
48254
47948
|
:param _Remark: Remark
|
48255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48256
47949
|
:type Remark: str
|
48257
47950
|
"""
|
48258
47951
|
self._Name = None
|
@@ -48262,7 +47955,6 @@ class VersionInstance(AbstractModel):
|
|
48262
47955
|
@property
|
48263
47956
|
def Name(self):
|
48264
47957
|
"""版本名称
|
48265
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48266
47958
|
:rtype: str
|
48267
47959
|
"""
|
48268
47960
|
return self._Name
|
@@ -48274,7 +47966,6 @@ class VersionInstance(AbstractModel):
|
|
48274
47966
|
@property
|
48275
47967
|
def Version(self):
|
48276
47968
|
"""版本信息
|
48277
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48278
47969
|
:rtype: str
|
48279
47970
|
"""
|
48280
47971
|
return self._Version
|
@@ -48286,7 +47977,6 @@ class VersionInstance(AbstractModel):
|
|
48286
47977
|
@property
|
48287
47978
|
def Remark(self):
|
48288
47979
|
"""Remark
|
48289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48290
47980
|
:rtype: str
|
48291
47981
|
"""
|
48292
47982
|
return self._Remark
|
@@ -48324,7 +48014,6 @@ class VirtualNode(AbstractModel):
|
|
48324
48014
|
:param _Phase: 虚拟节点状态
|
48325
48015
|
:type Phase: str
|
48326
48016
|
:param _CreatedTime: 创建时间
|
48327
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48328
48017
|
:type CreatedTime: str
|
48329
48018
|
"""
|
48330
48019
|
self._Name = None
|
@@ -48368,7 +48057,6 @@ class VirtualNode(AbstractModel):
|
|
48368
48057
|
@property
|
48369
48058
|
def CreatedTime(self):
|
48370
48059
|
"""创建时间
|
48371
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
48372
48060
|
:rtype: str
|
48373
48061
|
"""
|
48374
48062
|
return self._CreatedTime
|