tencentcloud-sdk-python 3.0.1360__py2.py3-none-any.whl → 3.0.1361__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.
Files changed (37) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/bh/v20230418/bh_client.py +23 -0
  3. tencentcloud/bh/v20230418/models.py +139 -0
  4. tencentcloud/cdb/v20170320/cdb_client.py +1 -1
  5. tencentcloud/cdb/v20170320/models.py +6 -6
  6. tencentcloud/cdwdoris/v20211228/models.py +30 -0
  7. tencentcloud/cdwpg/v20201230/models.py +22 -198
  8. tencentcloud/cvm/v20170312/models.py +20 -10
  9. tencentcloud/cynosdb/v20190107/models.py +45 -0
  10. tencentcloud/dlc/v20210125/models.py +107 -564
  11. tencentcloud/dsgc/v20190723/models.py +30 -0
  12. tencentcloud/emr/v20190103/emr_client.py +23 -0
  13. tencentcloud/emr/v20190103/models.py +214 -0
  14. tencentcloud/ess/v20201111/models.py +256 -0
  15. tencentcloud/essbasic/v20210526/models.py +281 -13
  16. tencentcloud/gaap/v20180529/models.py +0 -166
  17. tencentcloud/ioa/v20220601/ioa_client.py +46 -0
  18. tencentcloud/ioa/v20220601/models.py +358 -0
  19. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
  20. tencentcloud/iotexplorer/v20190423/models.py +600 -0
  21. tencentcloud/kms/v20190118/models.py +71 -0
  22. tencentcloud/lcic/v20220817/models.py +34 -0
  23. tencentcloud/lighthouse/v20200324/lighthouse_client.py +4 -1
  24. tencentcloud/lighthouse/v20200324/models.py +14 -10
  25. tencentcloud/monitor/v20180724/models.py +2 -2
  26. tencentcloud/monitor/v20180724/monitor_client.py +1 -1
  27. tencentcloud/mps/v20190612/models.py +4 -4
  28. tencentcloud/privatedns/v20201028/models.py +6 -6
  29. tencentcloud/tan/v20220420/tan_client.py +3 -1
  30. tencentcloud/trocket/v20230308/models.py +1398 -66
  31. tencentcloud/trocket/v20230308/trocket_client.py +214 -0
  32. tencentcloud/wedata/v20210820/models.py +6 -6
  33. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/METADATA +1 -1
  34. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/RECORD +37 -37
  35. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/LICENSE +0 -0
  36. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/WHEEL +0 -0
  37. {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/top_level.txt +0 -0
@@ -217,13 +217,10 @@ class CBSSpecInfo(AbstractModel):
217
217
  def __init__(self):
218
218
  r"""
219
219
  :param _DiskType: 盘类型
220
- 注意:此字段可能返回 null,表示取不到有效值。
221
220
  :type DiskType: str
222
221
  :param _DiskSize: 大小
223
- 注意:此字段可能返回 null,表示取不到有效值。
224
222
  :type DiskSize: int
225
223
  :param _DiskCount: 个数
226
- 注意:此字段可能返回 null,表示取不到有效值。
227
224
  :type DiskCount: int
228
225
  """
229
226
  self._DiskType = None
@@ -233,7 +230,6 @@ class CBSSpecInfo(AbstractModel):
233
230
  @property
234
231
  def DiskType(self):
235
232
  """盘类型
236
- 注意:此字段可能返回 null,表示取不到有效值。
237
233
  :rtype: str
238
234
  """
239
235
  return self._DiskType
@@ -245,7 +241,6 @@ class CBSSpecInfo(AbstractModel):
245
241
  @property
246
242
  def DiskSize(self):
247
243
  """大小
248
- 注意:此字段可能返回 null,表示取不到有效值。
249
244
  :rtype: int
250
245
  """
251
246
  return self._DiskSize
@@ -257,7 +252,6 @@ class CBSSpecInfo(AbstractModel):
257
252
  @property
258
253
  def DiskCount(self):
259
254
  """个数
260
- 注意:此字段可能返回 null,表示取不到有效值。
261
255
  :rtype: int
262
256
  """
263
257
  return self._DiskCount
@@ -372,19 +366,14 @@ class ChargeProperties(AbstractModel):
372
366
  def __init__(self):
373
367
  r"""
374
368
  :param _RenewFlag: 1-需要自动续期
375
- 注意:此字段可能返回 null,表示取不到有效值。
376
369
  :type RenewFlag: int
377
370
  :param _TimeSpan: 订单时间范围
378
- 注意:此字段可能返回 null,表示取不到有效值。
379
371
  :type TimeSpan: int
380
372
  :param _TimeUnit: 时间单位,一般为h和m
381
- 注意:此字段可能返回 null,表示取不到有效值。
382
373
  :type TimeUnit: str
383
374
  :param _PayMode: 计费类型0-按量计费,1-包年包月
384
- 注意:此字段可能返回 null,表示取不到有效值。
385
375
  :type PayMode: int
386
376
  :param _ChargeType: PREPAID、POSTPAID_BY_HOUR
387
- 注意:此字段可能返回 null,表示取不到有效值。
388
377
  :type ChargeType: str
389
378
  """
390
379
  self._RenewFlag = None
@@ -396,7 +385,6 @@ class ChargeProperties(AbstractModel):
396
385
  @property
397
386
  def RenewFlag(self):
398
387
  """1-需要自动续期
399
- 注意:此字段可能返回 null,表示取不到有效值。
400
388
  :rtype: int
401
389
  """
402
390
  return self._RenewFlag
@@ -408,7 +396,6 @@ class ChargeProperties(AbstractModel):
408
396
  @property
409
397
  def TimeSpan(self):
410
398
  """订单时间范围
411
- 注意:此字段可能返回 null,表示取不到有效值。
412
399
  :rtype: int
413
400
  """
414
401
  return self._TimeSpan
@@ -420,7 +407,6 @@ class ChargeProperties(AbstractModel):
420
407
  @property
421
408
  def TimeUnit(self):
422
409
  """时间单位,一般为h和m
423
- 注意:此字段可能返回 null,表示取不到有效值。
424
410
  :rtype: str
425
411
  """
426
412
  return self._TimeUnit
@@ -432,7 +418,6 @@ class ChargeProperties(AbstractModel):
432
418
  @property
433
419
  def PayMode(self):
434
420
  """计费类型0-按量计费,1-包年包月
435
- 注意:此字段可能返回 null,表示取不到有效值。
436
421
  :rtype: int
437
422
  """
438
423
  return self._PayMode
@@ -444,7 +429,6 @@ class ChargeProperties(AbstractModel):
444
429
  @property
445
430
  def ChargeType(self):
446
431
  """PREPAID、POSTPAID_BY_HOUR
447
- 注意:此字段可能返回 null,表示取不到有效值。
448
432
  :rtype: str
449
433
  """
450
434
  return self._ChargeType
@@ -719,10 +703,12 @@ class CreateInstanceByApiRequest(AbstractModel):
719
703
  :type AdminPassword: str
720
704
  :param _Resources: 资源信息
721
705
  :type Resources: list of ResourceSpecNew
722
- :param _Tags: 标签列表
706
+ :param _Tags: 废弃,用TagItems
723
707
  :type Tags: :class:`tencentcloud.cdwpg.v20201230.models.Tag`
724
708
  :param _ProductVersion: 版本
725
709
  :type ProductVersion: str
710
+ :param _TagItems: 标签列表
711
+ :type TagItems: list of Tag
726
712
  """
727
713
  self._InstanceName = None
728
714
  self._Zone = None
@@ -733,6 +719,7 @@ class CreateInstanceByApiRequest(AbstractModel):
733
719
  self._Resources = None
734
720
  self._Tags = None
735
721
  self._ProductVersion = None
722
+ self._TagItems = None
736
723
 
737
724
  @property
738
725
  def InstanceName(self):
@@ -813,7 +800,7 @@ class CreateInstanceByApiRequest(AbstractModel):
813
800
 
814
801
  @property
815
802
  def Tags(self):
816
- """标签列表
803
+ """废弃,用TagItems
817
804
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.Tag`
818
805
  """
819
806
  return self._Tags
@@ -833,6 +820,17 @@ class CreateInstanceByApiRequest(AbstractModel):
833
820
  def ProductVersion(self, ProductVersion):
834
821
  self._ProductVersion = ProductVersion
835
822
 
823
+ @property
824
+ def TagItems(self):
825
+ """标签列表
826
+ :rtype: list of Tag
827
+ """
828
+ return self._TagItems
829
+
830
+ @TagItems.setter
831
+ def TagItems(self, TagItems):
832
+ self._TagItems = TagItems
833
+
836
834
 
837
835
  def _deserialize(self, params):
838
836
  self._InstanceName = params.get("InstanceName")
@@ -853,6 +851,12 @@ class CreateInstanceByApiRequest(AbstractModel):
853
851
  self._Tags = Tag()
854
852
  self._Tags._deserialize(params.get("Tags"))
855
853
  self._ProductVersion = params.get("ProductVersion")
854
+ if params.get("TagItems") is not None:
855
+ self._TagItems = []
856
+ for item in params.get("TagItems"):
857
+ obj = Tag()
858
+ obj._deserialize(item)
859
+ self._TagItems.append(obj)
856
860
  memeber_set = set(params.keys())
857
861
  for name, value in vars(self).items():
858
862
  property_name = name[1:]
@@ -1012,10 +1016,8 @@ class DescribeAccountsResponse(AbstractModel):
1012
1016
  def __init__(self):
1013
1017
  r"""
1014
1018
  :param _TotalCount: 实例总数
1015
- 注意:此字段可能返回 null,表示取不到有效值。
1016
1019
  :type TotalCount: int
1017
1020
  :param _Accounts: 账号数组
1018
- 注意:此字段可能返回 null,表示取不到有效值。
1019
1021
  :type Accounts: list of AccountInfo
1020
1022
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1021
1023
  :type RequestId: str
@@ -1027,7 +1029,6 @@ class DescribeAccountsResponse(AbstractModel):
1027
1029
  @property
1028
1030
  def TotalCount(self):
1029
1031
  """实例总数
1030
- 注意:此字段可能返回 null,表示取不到有效值。
1031
1032
  :rtype: int
1032
1033
  """
1033
1034
  return self._TotalCount
@@ -1039,7 +1040,6 @@ class DescribeAccountsResponse(AbstractModel):
1039
1040
  @property
1040
1041
  def Accounts(self):
1041
1042
  """账号数组
1042
- 注意:此字段可能返回 null,表示取不到有效值。
1043
1043
  :rtype: list of AccountInfo
1044
1044
  """
1045
1045
  return self._Accounts
@@ -2008,7 +2008,6 @@ class DescribeInstanceStateResponse(AbstractModel):
2008
2008
  注意:此字段可能返回 null,表示取不到有效值。
2009
2009
  :type ProcessName: str
2010
2010
  :param _BackupStatus: 集群备份任务开启状态
2011
- 注意:此字段可能返回 null,表示取不到有效值。
2012
2011
  :type BackupStatus: int
2013
2012
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2014
2013
  :type RequestId: str
@@ -2109,7 +2108,6 @@ class DescribeInstanceStateResponse(AbstractModel):
2109
2108
  @property
2110
2109
  def BackupStatus(self):
2111
2110
  """集群备份任务开启状态
2112
- 注意:此字段可能返回 null,表示取不到有效值。
2113
2111
  :rtype: int
2114
2112
  """
2115
2113
  return self._BackupStatus
@@ -2251,7 +2249,6 @@ class DescribeInstancesResponse(AbstractModel):
2251
2249
  def __init__(self):
2252
2250
  r"""
2253
2251
  :param _TotalCount: 实例总数
2254
- 注意:此字段可能返回 null,表示取不到有效值。
2255
2252
  :type TotalCount: int
2256
2253
  :param _InstancesList: 实例数组
2257
2254
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2270,7 +2267,6 @@ class DescribeInstancesResponse(AbstractModel):
2270
2267
  @property
2271
2268
  def TotalCount(self):
2272
2269
  """实例总数
2273
- 注意:此字段可能返回 null,表示取不到有效值。
2274
2270
  :rtype: int
2275
2271
  """
2276
2272
  return self._TotalCount
@@ -2431,7 +2427,6 @@ class DescribeSimpleInstancesResponse(AbstractModel):
2431
2427
  def __init__(self):
2432
2428
  r"""
2433
2429
  :param _TotalCount: 集群列表总数
2434
- 注意:此字段可能返回 null,表示取不到有效值。
2435
2430
  :type TotalCount: int
2436
2431
  :param _InstancesList: 集群列表详情
2437
2432
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2450,7 +2445,6 @@ class DescribeSimpleInstancesResponse(AbstractModel):
2450
2445
  @property
2451
2446
  def TotalCount(self):
2452
2447
  """集群列表总数
2453
- 注意:此字段可能返回 null,表示取不到有效值。
2454
2448
  :rtype: int
2455
2449
  """
2456
2450
  return self._TotalCount
@@ -2898,10 +2892,8 @@ class DescribeUserHbaConfigResponse(AbstractModel):
2898
2892
  def __init__(self):
2899
2893
  r"""
2900
2894
  :param _TotalCount: 实例总数
2901
- 注意:此字段可能返回 null,表示取不到有效值。
2902
2895
  :type TotalCount: int
2903
2896
  :param _HbaConfigs: hba数组
2904
- 注意:此字段可能返回 null,表示取不到有效值。
2905
2897
  :type HbaConfigs: list of HbaConfig
2906
2898
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2907
2899
  :type RequestId: str
@@ -2913,7 +2905,6 @@ class DescribeUserHbaConfigResponse(AbstractModel):
2913
2905
  @property
2914
2906
  def TotalCount(self):
2915
2907
  """实例总数
2916
- 注意:此字段可能返回 null,表示取不到有效值。
2917
2908
  :rtype: int
2918
2909
  """
2919
2910
  return self._TotalCount
@@ -2925,7 +2916,6 @@ class DescribeUserHbaConfigResponse(AbstractModel):
2925
2916
  @property
2926
2917
  def HbaConfigs(self):
2927
2918
  """hba数组
2928
- 注意:此字段可能返回 null,表示取不到有效值。
2929
2919
  :rtype: list of HbaConfig
2930
2920
  """
2931
2921
  return self._HbaConfigs
@@ -3059,22 +3049,16 @@ class DiskSpecPlus(AbstractModel):
3059
3049
  def __init__(self):
3060
3050
  r"""
3061
3051
  :param _DiskCount: 磁盘个数
3062
- 注意:此字段可能返回 null,表示取不到有效值。
3063
3052
  :type DiskCount: int
3064
3053
  :param _MaxDiskSize: 磁盘最大值
3065
- 注意:此字段可能返回 null,表示取不到有效值。
3066
3054
  :type MaxDiskSize: int
3067
3055
  :param _MinDiskSize: 磁盘最小值
3068
- 注意:此字段可能返回 null,表示取不到有效值。
3069
3056
  :type MinDiskSize: int
3070
3057
  :param _DiskType: 磁盘类型
3071
- 注意:此字段可能返回 null,表示取不到有效值。
3072
3058
  :type DiskType: str
3073
3059
  :param _DiskDesc: 磁盘类型详情
3074
- 注意:此字段可能返回 null,表示取不到有效值。
3075
3060
  :type DiskDesc: str
3076
3061
  :param _CvmClass: 机型类型
3077
- 注意:此字段可能返回 null,表示取不到有效值。
3078
3062
  :type CvmClass: str
3079
3063
  """
3080
3064
  self._DiskCount = None
@@ -3087,7 +3071,6 @@ class DiskSpecPlus(AbstractModel):
3087
3071
  @property
3088
3072
  def DiskCount(self):
3089
3073
  """磁盘个数
3090
- 注意:此字段可能返回 null,表示取不到有效值。
3091
3074
  :rtype: int
3092
3075
  """
3093
3076
  return self._DiskCount
@@ -3099,7 +3082,6 @@ class DiskSpecPlus(AbstractModel):
3099
3082
  @property
3100
3083
  def MaxDiskSize(self):
3101
3084
  """磁盘最大值
3102
- 注意:此字段可能返回 null,表示取不到有效值。
3103
3085
  :rtype: int
3104
3086
  """
3105
3087
  return self._MaxDiskSize
@@ -3111,7 +3093,6 @@ class DiskSpecPlus(AbstractModel):
3111
3093
  @property
3112
3094
  def MinDiskSize(self):
3113
3095
  """磁盘最小值
3114
- 注意:此字段可能返回 null,表示取不到有效值。
3115
3096
  :rtype: int
3116
3097
  """
3117
3098
  return self._MinDiskSize
@@ -3123,7 +3104,6 @@ class DiskSpecPlus(AbstractModel):
3123
3104
  @property
3124
3105
  def DiskType(self):
3125
3106
  """磁盘类型
3126
- 注意:此字段可能返回 null,表示取不到有效值。
3127
3107
  :rtype: str
3128
3108
  """
3129
3109
  return self._DiskType
@@ -3135,7 +3115,6 @@ class DiskSpecPlus(AbstractModel):
3135
3115
  @property
3136
3116
  def DiskDesc(self):
3137
3117
  """磁盘类型详情
3138
- 注意:此字段可能返回 null,表示取不到有效值。
3139
3118
  :rtype: str
3140
3119
  """
3141
3120
  return self._DiskDesc
@@ -3147,7 +3126,6 @@ class DiskSpecPlus(AbstractModel):
3147
3126
  @property
3148
3127
  def CvmClass(self):
3149
3128
  """机型类型
3150
- 注意:此字段可能返回 null,表示取不到有效值。
3151
3129
  :rtype: str
3152
3130
  """
3153
3131
  return self._CvmClass
@@ -3182,16 +3160,12 @@ class ErrorLogDetail(AbstractModel):
3182
3160
  def __init__(self):
3183
3161
  r"""
3184
3162
  :param _UserName: 用户名称
3185
- 注意:此字段可能返回 null,表示取不到有效值。
3186
3163
  :type UserName: str
3187
3164
  :param _Database: 数据库
3188
- 注意:此字段可能返回 null,表示取不到有效值。
3189
3165
  :type Database: str
3190
3166
  :param _ErrorTime: 报错时间
3191
- 注意:此字段可能返回 null,表示取不到有效值。
3192
3167
  :type ErrorTime: str
3193
3168
  :param _ErrorMessage: 报错信息
3194
- 注意:此字段可能返回 null,表示取不到有效值。
3195
3169
  :type ErrorMessage: str
3196
3170
  """
3197
3171
  self._UserName = None
@@ -3202,7 +3176,6 @@ class ErrorLogDetail(AbstractModel):
3202
3176
  @property
3203
3177
  def UserName(self):
3204
3178
  """用户名称
3205
- 注意:此字段可能返回 null,表示取不到有效值。
3206
3179
  :rtype: str
3207
3180
  """
3208
3181
  return self._UserName
@@ -3214,7 +3187,6 @@ class ErrorLogDetail(AbstractModel):
3214
3187
  @property
3215
3188
  def Database(self):
3216
3189
  """数据库
3217
- 注意:此字段可能返回 null,表示取不到有效值。
3218
3190
  :rtype: str
3219
3191
  """
3220
3192
  return self._Database
@@ -3226,7 +3198,6 @@ class ErrorLogDetail(AbstractModel):
3226
3198
  @property
3227
3199
  def ErrorTime(self):
3228
3200
  """报错时间
3229
- 注意:此字段可能返回 null,表示取不到有效值。
3230
3201
  :rtype: str
3231
3202
  """
3232
3203
  return self._ErrorTime
@@ -3238,7 +3209,6 @@ class ErrorLogDetail(AbstractModel):
3238
3209
  @property
3239
3210
  def ErrorMessage(self):
3240
3211
  """报错信息
3241
- 注意:此字段可能返回 null,表示取不到有效值。
3242
3212
  :rtype: str
3243
3213
  """
3244
3214
  return self._ErrorMessage
@@ -3384,13 +3354,10 @@ class InstanceInfo(AbstractModel):
3384
3354
  def __init__(self):
3385
3355
  r"""
3386
3356
  :param _ID: ID值
3387
- 注意:此字段可能返回 null,表示取不到有效值。
3388
3357
  :type ID: int
3389
3358
  :param _InstanceType: 内核版本类型
3390
- 注意:此字段可能返回 null,表示取不到有效值。
3391
3359
  :type InstanceType: str
3392
3360
  :param _InstanceName: 集群名字
3393
- 注意:此字段可能返回 null,表示取不到有效值。
3394
3361
  :type InstanceName: str
3395
3362
  :param _Status: 集群状态
3396
3363
  注意:此字段可能返回 null,表示取不到有效值。
@@ -3405,13 +3372,10 @@ class InstanceInfo(AbstractModel):
3405
3372
  注意:此字段可能返回 null,表示取不到有效值。
3406
3373
  :type InstanceID: str
3407
3374
  :param _CreateTime: 创建时间
3408
- 注意:此字段可能返回 null,表示取不到有效值。
3409
3375
  :type CreateTime: str
3410
3376
  :param _Region: 地域
3411
- 注意:此字段可能返回 null,表示取不到有效值。
3412
3377
  :type Region: str
3413
3378
  :param _Zone: 地区
3414
- 注意:此字段可能返回 null,表示取不到有效值。
3415
3379
  :type Zone: str
3416
3380
  :param _RegionDesc: 地域详情
3417
3381
  注意:此字段可能返回 null,表示取不到有效值。
@@ -3423,16 +3387,12 @@ class InstanceInfo(AbstractModel):
3423
3387
  注意:此字段可能返回 null,表示取不到有效值。
3424
3388
  :type Tags: list of Tag
3425
3389
  :param _Version: 内核版本
3426
- 注意:此字段可能返回 null,表示取不到有效值。
3427
3390
  :type Version: str
3428
3391
  :param _Charset: 字符集
3429
- 注意:此字段可能返回 null,表示取不到有效值。
3430
3392
  :type Charset: str
3431
3393
  :param _CNNodes: CN节点列表
3432
- 注意:此字段可能返回 null,表示取不到有效值。
3433
3394
  :type CNNodes: list of InstanceNodeGroup
3434
3395
  :param _DNNodes: DN节点列表
3435
- 注意:此字段可能返回 null,表示取不到有效值。
3436
3396
  :type DNNodes: list of InstanceNodeGroup
3437
3397
  :param _RegionId: 地域id
3438
3398
  注意:此字段可能返回 null,表示取不到有效值。
@@ -3441,25 +3401,18 @@ class InstanceInfo(AbstractModel):
3441
3401
  注意:此字段可能返回 null,表示取不到有效值。
3442
3402
  :type ZoneId: int
3443
3403
  :param _VpcId: 私有网络
3444
- 注意:此字段可能返回 null,表示取不到有效值。
3445
3404
  :type VpcId: str
3446
3405
  :param _SubnetId: 子网
3447
- 注意:此字段可能返回 null,表示取不到有效值。
3448
3406
  :type SubnetId: str
3449
3407
  :param _ExpireTime: 过期时间
3450
- 注意:此字段可能返回 null,表示取不到有效值。
3451
3408
  :type ExpireTime: str
3452
3409
  :param _PayMode: 计费方式
3453
- 注意:此字段可能返回 null,表示取不到有效值。
3454
3410
  :type PayMode: str
3455
3411
  :param _RenewFlag: 自动续费
3456
- 注意:此字段可能返回 null,表示取不到有效值。
3457
3412
  :type RenewFlag: bool
3458
3413
  :param _InstanceId: 集群id
3459
- 注意:此字段可能返回 null,表示取不到有效值。
3460
3414
  :type InstanceId: str
3461
3415
  :param _AccessDetails: 访问信息
3462
- 注意:此字段可能返回 null,表示取不到有效值。
3463
3416
  :type AccessDetails: list of AccessInfo
3464
3417
  """
3465
3418
  self._ID = None
@@ -3492,7 +3445,6 @@ class InstanceInfo(AbstractModel):
3492
3445
  @property
3493
3446
  def ID(self):
3494
3447
  """ID值
3495
- 注意:此字段可能返回 null,表示取不到有效值。
3496
3448
  :rtype: int
3497
3449
  """
3498
3450
  return self._ID
@@ -3504,7 +3456,6 @@ class InstanceInfo(AbstractModel):
3504
3456
  @property
3505
3457
  def InstanceType(self):
3506
3458
  """内核版本类型
3507
- 注意:此字段可能返回 null,表示取不到有效值。
3508
3459
  :rtype: str
3509
3460
  """
3510
3461
  return self._InstanceType
@@ -3516,7 +3467,6 @@ class InstanceInfo(AbstractModel):
3516
3467
  @property
3517
3468
  def InstanceName(self):
3518
3469
  """集群名字
3519
- 注意:此字段可能返回 null,表示取不到有效值。
3520
3470
  :rtype: str
3521
3471
  """
3522
3472
  return self._InstanceName
@@ -3576,7 +3526,6 @@ class InstanceInfo(AbstractModel):
3576
3526
  @property
3577
3527
  def CreateTime(self):
3578
3528
  """创建时间
3579
- 注意:此字段可能返回 null,表示取不到有效值。
3580
3529
  :rtype: str
3581
3530
  """
3582
3531
  return self._CreateTime
@@ -3588,7 +3537,6 @@ class InstanceInfo(AbstractModel):
3588
3537
  @property
3589
3538
  def Region(self):
3590
3539
  """地域
3591
- 注意:此字段可能返回 null,表示取不到有效值。
3592
3540
  :rtype: str
3593
3541
  """
3594
3542
  return self._Region
@@ -3600,7 +3548,6 @@ class InstanceInfo(AbstractModel):
3600
3548
  @property
3601
3549
  def Zone(self):
3602
3550
  """地区
3603
- 注意:此字段可能返回 null,表示取不到有效值。
3604
3551
  :rtype: str
3605
3552
  """
3606
3553
  return self._Zone
@@ -3648,7 +3595,6 @@ class InstanceInfo(AbstractModel):
3648
3595
  @property
3649
3596
  def Version(self):
3650
3597
  """内核版本
3651
- 注意:此字段可能返回 null,表示取不到有效值。
3652
3598
  :rtype: str
3653
3599
  """
3654
3600
  return self._Version
@@ -3660,7 +3606,6 @@ class InstanceInfo(AbstractModel):
3660
3606
  @property
3661
3607
  def Charset(self):
3662
3608
  """字符集
3663
- 注意:此字段可能返回 null,表示取不到有效值。
3664
3609
  :rtype: str
3665
3610
  """
3666
3611
  return self._Charset
@@ -3672,7 +3617,6 @@ class InstanceInfo(AbstractModel):
3672
3617
  @property
3673
3618
  def CNNodes(self):
3674
3619
  """CN节点列表
3675
- 注意:此字段可能返回 null,表示取不到有效值。
3676
3620
  :rtype: list of InstanceNodeGroup
3677
3621
  """
3678
3622
  return self._CNNodes
@@ -3684,7 +3628,6 @@ class InstanceInfo(AbstractModel):
3684
3628
  @property
3685
3629
  def DNNodes(self):
3686
3630
  """DN节点列表
3687
- 注意:此字段可能返回 null,表示取不到有效值。
3688
3631
  :rtype: list of InstanceNodeGroup
3689
3632
  """
3690
3633
  return self._DNNodes
@@ -3720,7 +3663,6 @@ class InstanceInfo(AbstractModel):
3720
3663
  @property
3721
3664
  def VpcId(self):
3722
3665
  """私有网络
3723
- 注意:此字段可能返回 null,表示取不到有效值。
3724
3666
  :rtype: str
3725
3667
  """
3726
3668
  return self._VpcId
@@ -3732,7 +3674,6 @@ class InstanceInfo(AbstractModel):
3732
3674
  @property
3733
3675
  def SubnetId(self):
3734
3676
  """子网
3735
- 注意:此字段可能返回 null,表示取不到有效值。
3736
3677
  :rtype: str
3737
3678
  """
3738
3679
  return self._SubnetId
@@ -3744,7 +3685,6 @@ class InstanceInfo(AbstractModel):
3744
3685
  @property
3745
3686
  def ExpireTime(self):
3746
3687
  """过期时间
3747
- 注意:此字段可能返回 null,表示取不到有效值。
3748
3688
  :rtype: str
3749
3689
  """
3750
3690
  return self._ExpireTime
@@ -3756,7 +3696,6 @@ class InstanceInfo(AbstractModel):
3756
3696
  @property
3757
3697
  def PayMode(self):
3758
3698
  """计费方式
3759
- 注意:此字段可能返回 null,表示取不到有效值。
3760
3699
  :rtype: str
3761
3700
  """
3762
3701
  return self._PayMode
@@ -3768,7 +3707,6 @@ class InstanceInfo(AbstractModel):
3768
3707
  @property
3769
3708
  def RenewFlag(self):
3770
3709
  """自动续费
3771
- 注意:此字段可能返回 null,表示取不到有效值。
3772
3710
  :rtype: bool
3773
3711
  """
3774
3712
  return self._RenewFlag
@@ -3780,7 +3718,6 @@ class InstanceInfo(AbstractModel):
3780
3718
  @property
3781
3719
  def InstanceId(self):
3782
3720
  """集群id
3783
- 注意:此字段可能返回 null,表示取不到有效值。
3784
3721
  :rtype: str
3785
3722
  """
3786
3723
  return self._InstanceId
@@ -3792,7 +3729,6 @@ class InstanceInfo(AbstractModel):
3792
3729
  @property
3793
3730
  def AccessDetails(self):
3794
3731
  """访问信息
3795
- 注意:此字段可能返回 null,表示取不到有效值。
3796
3732
  :rtype: list of AccessInfo
3797
3733
  """
3798
3734
  return self._AccessDetails
@@ -3935,13 +3871,10 @@ class InstanceNodeGroup(AbstractModel):
3935
3871
  def __init__(self):
3936
3872
  r"""
3937
3873
  :param _SpecName: 机型
3938
- 注意:此字段可能返回 null,表示取不到有效值。
3939
3874
  :type SpecName: str
3940
3875
  :param _DataDisk: 磁盘信息
3941
- 注意:此字段可能返回 null,表示取不到有效值。
3942
3876
  :type DataDisk: :class:`tencentcloud.cdwpg.v20201230.models.DiskSpecPlus`
3943
3877
  :param _CvmCount: 机器个数
3944
- 注意:此字段可能返回 null,表示取不到有效值。
3945
3878
  :type CvmCount: int
3946
3879
  """
3947
3880
  self._SpecName = None
@@ -3951,7 +3884,6 @@ class InstanceNodeGroup(AbstractModel):
3951
3884
  @property
3952
3885
  def SpecName(self):
3953
3886
  """机型
3954
- 注意:此字段可能返回 null,表示取不到有效值。
3955
3887
  :rtype: str
3956
3888
  """
3957
3889
  return self._SpecName
@@ -3963,7 +3895,6 @@ class InstanceNodeGroup(AbstractModel):
3963
3895
  @property
3964
3896
  def DataDisk(self):
3965
3897
  """磁盘信息
3966
- 注意:此字段可能返回 null,表示取不到有效值。
3967
3898
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.DiskSpecPlus`
3968
3899
  """
3969
3900
  return self._DataDisk
@@ -3975,7 +3906,6 @@ class InstanceNodeGroup(AbstractModel):
3975
3906
  @property
3976
3907
  def CvmCount(self):
3977
3908
  """机器个数
3978
- 注意:此字段可能返回 null,表示取不到有效值。
3979
3909
  :rtype: int
3980
3910
  """
3981
3911
  return self._CvmCount
@@ -4011,16 +3941,12 @@ class InstanceOperation(AbstractModel):
4011
3941
  :param _Id: 操作名称,例如“create_instance"、“scaleout_instance”等
4012
3942
  :type Id: int
4013
3943
  :param _InstanceId: 集群ID
4014
- 注意:此字段可能返回 null,表示取不到有效值。
4015
3944
  :type InstanceId: str
4016
3945
  :param _Action: 操作名称描述,例如“创建”,“修改集群名称”等
4017
- 注意:此字段可能返回 null,表示取不到有效值。
4018
3946
  :type Action: str
4019
3947
  :param _Status: 状态
4020
- 注意:此字段可能返回 null,表示取不到有效值。
4021
3948
  :type Status: int
4022
3949
  :param _StartTime: 操作开始时间
4023
- 注意:此字段可能返回 null,表示取不到有效值。
4024
3950
  :type StartTime: str
4025
3951
  :param _EndTime: 操作结束时间
4026
3952
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4059,7 +3985,6 @@ class InstanceOperation(AbstractModel):
4059
3985
  @property
4060
3986
  def InstanceId(self):
4061
3987
  """集群ID
4062
- 注意:此字段可能返回 null,表示取不到有效值。
4063
3988
  :rtype: str
4064
3989
  """
4065
3990
  return self._InstanceId
@@ -4071,7 +3996,6 @@ class InstanceOperation(AbstractModel):
4071
3996
  @property
4072
3997
  def Action(self):
4073
3998
  """操作名称描述,例如“创建”,“修改集群名称”等
4074
- 注意:此字段可能返回 null,表示取不到有效值。
4075
3999
  :rtype: str
4076
4000
  """
4077
4001
  return self._Action
@@ -4083,7 +4007,6 @@ class InstanceOperation(AbstractModel):
4083
4007
  @property
4084
4008
  def Status(self):
4085
4009
  """状态
4086
- 注意:此字段可能返回 null,表示取不到有效值。
4087
4010
  :rtype: int
4088
4011
  """
4089
4012
  return self._Status
@@ -4095,7 +4018,6 @@ class InstanceOperation(AbstractModel):
4095
4018
  @property
4096
4019
  def StartTime(self):
4097
4020
  """操作开始时间
4098
- 注意:此字段可能返回 null,表示取不到有效值。
4099
4021
  :rtype: str
4100
4022
  """
4101
4023
  return self._StartTime
@@ -4181,19 +4103,14 @@ class InstanceSimpleInfoNew(AbstractModel):
4181
4103
  def __init__(self):
4182
4104
  r"""
4183
4105
  :param _ID: ID
4184
- 注意:此字段可能返回 null,表示取不到有效值。
4185
4106
  :type ID: int
4186
4107
  :param _InstanceId: 集群Id
4187
- 注意:此字段可能返回 null,表示取不到有效值。
4188
4108
  :type InstanceId: str
4189
4109
  :param _InstanceName: 集群名字
4190
- 注意:此字段可能返回 null,表示取不到有效值。
4191
4110
  :type InstanceName: str
4192
4111
  :param _Version: 内核版本
4193
- 注意:此字段可能返回 null,表示取不到有效值。
4194
4112
  :type Version: str
4195
4113
  :param _Region: 地域
4196
- 注意:此字段可能返回 null,表示取不到有效值。
4197
4114
  :type Region: str
4198
4115
  :param _RegionId: 地域Id
4199
4116
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4202,7 +4119,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4202
4119
  注意:此字段可能返回 null,表示取不到有效值。
4203
4120
  :type RegionDesc: str
4204
4121
  :param _Zone: 地区
4205
- 注意:此字段可能返回 null,表示取不到有效值。
4206
4122
  :type Zone: str
4207
4123
  :param _ZoneId: 地区id
4208
4124
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4211,25 +4127,19 @@ class InstanceSimpleInfoNew(AbstractModel):
4211
4127
  注意:此字段可能返回 null,表示取不到有效值。
4212
4128
  :type ZoneDesc: str
4213
4129
  :param _VpcId: 私有网络
4214
- 注意:此字段可能返回 null,表示取不到有效值。
4215
4130
  :type VpcId: str
4216
4131
  :param _SubnetId: 子网
4217
- 注意:此字段可能返回 null,表示取不到有效值。
4218
4132
  :type SubnetId: str
4219
4133
  :param _CreateTime: 开始时间
4220
- 注意:此字段可能返回 null,表示取不到有效值。
4221
4134
  :type CreateTime: str
4222
4135
  :param _ExpireTime: 过期时间
4223
- 注意:此字段可能返回 null,表示取不到有效值。
4224
4136
  :type ExpireTime: str
4225
4137
  :param _AccessInfo: 访问地址
4226
4138
  注意:此字段可能返回 null,表示取不到有效值。
4227
4139
  :type AccessInfo: str
4228
4140
  :param _PayMode: 计费方式
4229
- 注意:此字段可能返回 null,表示取不到有效值。
4230
4141
  :type PayMode: str
4231
4142
  :param _RenewFlag: 自动续费
4232
- 注意:此字段可能返回 null,表示取不到有效值。
4233
4143
  :type RenewFlag: bool
4234
4144
  """
4235
4145
  self._ID = None
@@ -4253,7 +4163,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4253
4163
  @property
4254
4164
  def ID(self):
4255
4165
  """ID
4256
- 注意:此字段可能返回 null,表示取不到有效值。
4257
4166
  :rtype: int
4258
4167
  """
4259
4168
  return self._ID
@@ -4265,7 +4174,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4265
4174
  @property
4266
4175
  def InstanceId(self):
4267
4176
  """集群Id
4268
- 注意:此字段可能返回 null,表示取不到有效值。
4269
4177
  :rtype: str
4270
4178
  """
4271
4179
  return self._InstanceId
@@ -4277,7 +4185,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4277
4185
  @property
4278
4186
  def InstanceName(self):
4279
4187
  """集群名字
4280
- 注意:此字段可能返回 null,表示取不到有效值。
4281
4188
  :rtype: str
4282
4189
  """
4283
4190
  return self._InstanceName
@@ -4289,7 +4196,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4289
4196
  @property
4290
4197
  def Version(self):
4291
4198
  """内核版本
4292
- 注意:此字段可能返回 null,表示取不到有效值。
4293
4199
  :rtype: str
4294
4200
  """
4295
4201
  return self._Version
@@ -4301,7 +4207,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4301
4207
  @property
4302
4208
  def Region(self):
4303
4209
  """地域
4304
- 注意:此字段可能返回 null,表示取不到有效值。
4305
4210
  :rtype: str
4306
4211
  """
4307
4212
  return self._Region
@@ -4337,7 +4242,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4337
4242
  @property
4338
4243
  def Zone(self):
4339
4244
  """地区
4340
- 注意:此字段可能返回 null,表示取不到有效值。
4341
4245
  :rtype: str
4342
4246
  """
4343
4247
  return self._Zone
@@ -4373,7 +4277,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4373
4277
  @property
4374
4278
  def VpcId(self):
4375
4279
  """私有网络
4376
- 注意:此字段可能返回 null,表示取不到有效值。
4377
4280
  :rtype: str
4378
4281
  """
4379
4282
  return self._VpcId
@@ -4385,7 +4288,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4385
4288
  @property
4386
4289
  def SubnetId(self):
4387
4290
  """子网
4388
- 注意:此字段可能返回 null,表示取不到有效值。
4389
4291
  :rtype: str
4390
4292
  """
4391
4293
  return self._SubnetId
@@ -4397,7 +4299,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4397
4299
  @property
4398
4300
  def CreateTime(self):
4399
4301
  """开始时间
4400
- 注意:此字段可能返回 null,表示取不到有效值。
4401
4302
  :rtype: str
4402
4303
  """
4403
4304
  return self._CreateTime
@@ -4409,7 +4310,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4409
4310
  @property
4410
4311
  def ExpireTime(self):
4411
4312
  """过期时间
4412
- 注意:此字段可能返回 null,表示取不到有效值。
4413
4313
  :rtype: str
4414
4314
  """
4415
4315
  return self._ExpireTime
@@ -4433,7 +4333,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4433
4333
  @property
4434
4334
  def PayMode(self):
4435
4335
  """计费方式
4436
- 注意:此字段可能返回 null,表示取不到有效值。
4437
4336
  :rtype: str
4438
4337
  """
4439
4338
  return self._PayMode
@@ -4445,7 +4344,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4445
4344
  @property
4446
4345
  def RenewFlag(self):
4447
4346
  """自动续费
4448
- 注意:此字段可能返回 null,表示取不到有效值。
4449
4347
  :rtype: bool
4450
4348
  """
4451
4349
  return self._RenewFlag
@@ -4491,7 +4389,6 @@ class InstanceStateInfo(AbstractModel):
4491
4389
  def __init__(self):
4492
4390
  r"""
4493
4391
  :param _InstanceState: 集群状态,例如:Serving
4494
- 注意:此字段可能返回 null,表示取不到有效值。
4495
4392
  :type InstanceState: str
4496
4393
  :param _FlowCreateTime: 集群操作创建时间
4497
4394
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4535,7 +4432,6 @@ class InstanceStateInfo(AbstractModel):
4535
4432
  @property
4536
4433
  def InstanceState(self):
4537
4434
  """集群状态,例如:Serving
4538
- 注意:此字段可能返回 null,表示取不到有效值。
4539
4435
  :rtype: str
4540
4436
  """
4541
4437
  return self._InstanceState
@@ -4916,7 +4812,6 @@ class ModifyUserHbaResponse(AbstractModel):
4916
4812
  def __init__(self):
4917
4813
  r"""
4918
4814
  :param _TaskId: 任务id
4919
- 注意:此字段可能返回 null,表示取不到有效值。
4920
4815
  :type TaskId: int
4921
4816
  :param _ErrorMsg: 错误信息
4922
4817
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4931,7 +4826,6 @@ class ModifyUserHbaResponse(AbstractModel):
4931
4826
  @property
4932
4827
  def TaskId(self):
4933
4828
  """任务id
4934
- 注意:此字段可能返回 null,表示取不到有效值。
4935
4829
  :rtype: int
4936
4830
  """
4937
4831
  return self._TaskId
@@ -5344,16 +5238,12 @@ class ParamDetail(AbstractModel):
5344
5238
  def __init__(self):
5345
5239
  r"""
5346
5240
  :param _ParamName: 参数名
5347
- 注意:此字段可能返回 null,表示取不到有效值。
5348
5241
  :type ParamName: str
5349
5242
  :param _DefaultValue: 默认值
5350
- 注意:此字段可能返回 null,表示取不到有效值。
5351
5243
  :type DefaultValue: str
5352
5244
  :param _NeedRestart: 是否需要重启
5353
- 注意:此字段可能返回 null,表示取不到有效值。
5354
5245
  :type NeedRestart: bool
5355
5246
  :param _RunningValue: 当前运行值
5356
- 注意:此字段可能返回 null,表示取不到有效值。
5357
5247
  :type RunningValue: str
5358
5248
  :param _ValueRange: 取值范围
5359
5249
  :type ValueRange: :class:`tencentcloud.cdwpg.v20201230.models.ValueRange`
@@ -5379,7 +5269,6 @@ class ParamDetail(AbstractModel):
5379
5269
  @property
5380
5270
  def ParamName(self):
5381
5271
  """参数名
5382
- 注意:此字段可能返回 null,表示取不到有效值。
5383
5272
  :rtype: str
5384
5273
  """
5385
5274
  return self._ParamName
@@ -5391,7 +5280,6 @@ class ParamDetail(AbstractModel):
5391
5280
  @property
5392
5281
  def DefaultValue(self):
5393
5282
  """默认值
5394
- 注意:此字段可能返回 null,表示取不到有效值。
5395
5283
  :rtype: str
5396
5284
  """
5397
5285
  return self._DefaultValue
@@ -5403,7 +5291,6 @@ class ParamDetail(AbstractModel):
5403
5291
  @property
5404
5292
  def NeedRestart(self):
5405
5293
  """是否需要重启
5406
- 注意:此字段可能返回 null,表示取不到有效值。
5407
5294
  :rtype: bool
5408
5295
  """
5409
5296
  return self._NeedRestart
@@ -5415,7 +5302,6 @@ class ParamDetail(AbstractModel):
5415
5302
  @property
5416
5303
  def RunningValue(self):
5417
5304
  """当前运行值
5418
- 注意:此字段可能返回 null,表示取不到有效值。
5419
5305
  :rtype: str
5420
5306
  """
5421
5307
  return self._RunningValue
@@ -5501,16 +5387,12 @@ class ParamItem(AbstractModel):
5501
5387
  def __init__(self):
5502
5388
  r"""
5503
5389
  :param _NodeType: 节点类型, cn/dn
5504
- 注意:此字段可能返回 null,表示取不到有效值。
5505
5390
  :type NodeType: str
5506
5391
  :param _NodeName: 节点名
5507
- 注意:此字段可能返回 null,表示取不到有效值。
5508
5392
  :type NodeName: str
5509
5393
  :param _TotalCount: 参数个数
5510
- 注意:此字段可能返回 null,表示取不到有效值。
5511
5394
  :type TotalCount: int
5512
5395
  :param _Details: 参数信息
5513
- 注意:此字段可能返回 null,表示取不到有效值。
5514
5396
  :type Details: list of ParamDetail
5515
5397
  """
5516
5398
  self._NodeType = None
@@ -5521,7 +5403,6 @@ class ParamItem(AbstractModel):
5521
5403
  @property
5522
5404
  def NodeType(self):
5523
5405
  """节点类型, cn/dn
5524
- 注意:此字段可能返回 null,表示取不到有效值。
5525
5406
  :rtype: str
5526
5407
  """
5527
5408
  return self._NodeType
@@ -5533,7 +5414,6 @@ class ParamItem(AbstractModel):
5533
5414
  @property
5534
5415
  def NodeName(self):
5535
5416
  """节点名
5536
- 注意:此字段可能返回 null,表示取不到有效值。
5537
5417
  :rtype: str
5538
5418
  """
5539
5419
  return self._NodeName
@@ -5545,7 +5425,6 @@ class ParamItem(AbstractModel):
5545
5425
  @property
5546
5426
  def TotalCount(self):
5547
5427
  """参数个数
5548
- 注意:此字段可能返回 null,表示取不到有效值。
5549
5428
  :rtype: int
5550
5429
  """
5551
5430
  return self._TotalCount
@@ -5557,7 +5436,6 @@ class ParamItem(AbstractModel):
5557
5436
  @property
5558
5437
  def Details(self):
5559
5438
  """参数信息
5560
- 注意:此字段可能返回 null,表示取不到有效值。
5561
5439
  :rtype: list of ParamDetail
5562
5440
  """
5563
5441
  return self._Details
@@ -5595,10 +5473,8 @@ class Range(AbstractModel):
5595
5473
  def __init__(self):
5596
5474
  r"""
5597
5475
  :param _Min: 最小值
5598
- 注意:此字段可能返回 null,表示取不到有效值。
5599
5476
  :type Min: str
5600
5477
  :param _Max: 最大值
5601
- 注意:此字段可能返回 null,表示取不到有效值。
5602
5478
  :type Max: str
5603
5479
  """
5604
5480
  self._Min = None
@@ -5607,7 +5483,6 @@ class Range(AbstractModel):
5607
5483
  @property
5608
5484
  def Min(self):
5609
5485
  """最小值
5610
- 注意:此字段可能返回 null,表示取不到有效值。
5611
5486
  :rtype: str
5612
5487
  """
5613
5488
  return self._Min
@@ -5619,7 +5494,6 @@ class Range(AbstractModel):
5619
5494
  @property
5620
5495
  def Max(self):
5621
5496
  """最大值
5622
- 注意:此字段可能返回 null,表示取不到有效值。
5623
5497
  :rtype: str
5624
5498
  """
5625
5499
  return self._Max
@@ -5761,16 +5635,12 @@ class ResourceInfo(AbstractModel):
5761
5635
  def __init__(self):
5762
5636
  r"""
5763
5637
  :param _SpecName: 资源名称
5764
- 注意:此字段可能返回 null,表示取不到有效值。
5765
5638
  :type SpecName: str
5766
5639
  :param _Count: 资源数
5767
- 注意:此字段可能返回 null,表示取不到有效值。
5768
5640
  :type Count: int
5769
5641
  :param _DiskSpec: 磁盘信息
5770
- 注意:此字段可能返回 null,表示取不到有效值。
5771
5642
  :type DiskSpec: :class:`tencentcloud.cdwpg.v20201230.models.CBSSpecInfo`
5772
5643
  :param _Type: 节点类型,cn 或dn
5773
- 注意:此字段可能返回 null,表示取不到有效值。
5774
5644
  :type Type: str
5775
5645
  """
5776
5646
  self._SpecName = None
@@ -5781,7 +5651,6 @@ class ResourceInfo(AbstractModel):
5781
5651
  @property
5782
5652
  def SpecName(self):
5783
5653
  """资源名称
5784
- 注意:此字段可能返回 null,表示取不到有效值。
5785
5654
  :rtype: str
5786
5655
  """
5787
5656
  return self._SpecName
@@ -5793,7 +5662,6 @@ class ResourceInfo(AbstractModel):
5793
5662
  @property
5794
5663
  def Count(self):
5795
5664
  """资源数
5796
- 注意:此字段可能返回 null,表示取不到有效值。
5797
5665
  :rtype: int
5798
5666
  """
5799
5667
  return self._Count
@@ -5805,7 +5673,6 @@ class ResourceInfo(AbstractModel):
5805
5673
  @property
5806
5674
  def DiskSpec(self):
5807
5675
  """磁盘信息
5808
- 注意:此字段可能返回 null,表示取不到有效值。
5809
5676
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.CBSSpecInfo`
5810
5677
  """
5811
5678
  return self._DiskSpec
@@ -5817,7 +5684,6 @@ class ResourceInfo(AbstractModel):
5817
5684
  @property
5818
5685
  def Type(self):
5819
5686
  """节点类型,cn 或dn
5820
- 注意:此字段可能返回 null,表示取不到有效值。
5821
5687
  :rtype: str
5822
5688
  """
5823
5689
  return self._Type
@@ -6392,52 +6258,38 @@ class SimpleInstanceInfo(AbstractModel):
6392
6258
  def __init__(self):
6393
6259
  r"""
6394
6260
  :param _ID: ID
6395
- 注意:此字段可能返回 null,表示取不到有效值。
6396
6261
  :type ID: int
6397
6262
  :param _InstanceId: 集群Id
6398
- 注意:此字段可能返回 null,表示取不到有效值。
6399
6263
  :type InstanceId: str
6400
6264
  :param _InstanceName: 集群名字
6401
- 注意:此字段可能返回 null,表示取不到有效值。
6402
6265
  :type InstanceName: str
6403
6266
  :param _Version: 内核版本
6404
- 注意:此字段可能返回 null,表示取不到有效值。
6405
6267
  :type Version: str
6406
6268
  :param _Region: 地域
6407
- 注意:此字段可能返回 null,表示取不到有效值。
6408
6269
  :type Region: str
6409
6270
  :param _Zone: 地区
6410
- 注意:此字段可能返回 null,表示取不到有效值。
6411
6271
  :type Zone: str
6412
6272
  :param _UserVPCID: 私有网络
6413
- 注意:此字段可能返回 null,表示取不到有效值。
6414
6273
  :type UserVPCID: str
6415
6274
  :param _UserSubnetID: 子网
6416
- 注意:此字段可能返回 null,表示取不到有效值。
6417
6275
  :type UserSubnetID: str
6418
6276
  :param _CreateTime: 开始时间
6419
- 注意:此字段可能返回 null,表示取不到有效值。
6420
6277
  :type CreateTime: str
6421
6278
  :param _ExpireTime: 到期时间
6422
- 注意:此字段可能返回 null,表示取不到有效值。
6423
6279
  :type ExpireTime: str
6424
6280
  :param _AccessInfo: 访问地址
6425
6281
  注意:此字段可能返回 null,表示取不到有效值。
6426
6282
  :type AccessInfo: str
6427
6283
  :param _RenewFlag: 自动续费开关,0为不自动续费,1为自动续费
6428
- 注意:此字段可能返回 null,表示取不到有效值。
6429
6284
  :type RenewFlag: int
6430
6285
  :param _ChargeProperties: 计费方式
6431
- 注意:此字段可能返回 null,表示取不到有效值。
6432
6286
  :type ChargeProperties: :class:`tencentcloud.cdwpg.v20201230.models.ChargeProperties`
6433
6287
  :param _Resources: 资源集合
6434
- 注意:此字段可能返回 null,表示取不到有效值。
6435
6288
  :type Resources: list of ResourceInfo
6436
6289
  :param _Tags: 标签列表
6437
6290
  注意:此字段可能返回 null,表示取不到有效值。
6438
6291
  :type Tags: list of Tag
6439
6292
  :param _Status: 集群状态
6440
- 注意:此字段可能返回 null,表示取不到有效值。
6441
6293
  :type Status: int
6442
6294
  """
6443
6295
  self._ID = None
@@ -6460,7 +6312,6 @@ class SimpleInstanceInfo(AbstractModel):
6460
6312
  @property
6461
6313
  def ID(self):
6462
6314
  """ID
6463
- 注意:此字段可能返回 null,表示取不到有效值。
6464
6315
  :rtype: int
6465
6316
  """
6466
6317
  return self._ID
@@ -6472,7 +6323,6 @@ class SimpleInstanceInfo(AbstractModel):
6472
6323
  @property
6473
6324
  def InstanceId(self):
6474
6325
  """集群Id
6475
- 注意:此字段可能返回 null,表示取不到有效值。
6476
6326
  :rtype: str
6477
6327
  """
6478
6328
  return self._InstanceId
@@ -6484,7 +6334,6 @@ class SimpleInstanceInfo(AbstractModel):
6484
6334
  @property
6485
6335
  def InstanceName(self):
6486
6336
  """集群名字
6487
- 注意:此字段可能返回 null,表示取不到有效值。
6488
6337
  :rtype: str
6489
6338
  """
6490
6339
  return self._InstanceName
@@ -6496,7 +6345,6 @@ class SimpleInstanceInfo(AbstractModel):
6496
6345
  @property
6497
6346
  def Version(self):
6498
6347
  """内核版本
6499
- 注意:此字段可能返回 null,表示取不到有效值。
6500
6348
  :rtype: str
6501
6349
  """
6502
6350
  return self._Version
@@ -6508,7 +6356,6 @@ class SimpleInstanceInfo(AbstractModel):
6508
6356
  @property
6509
6357
  def Region(self):
6510
6358
  """地域
6511
- 注意:此字段可能返回 null,表示取不到有效值。
6512
6359
  :rtype: str
6513
6360
  """
6514
6361
  return self._Region
@@ -6520,7 +6367,6 @@ class SimpleInstanceInfo(AbstractModel):
6520
6367
  @property
6521
6368
  def Zone(self):
6522
6369
  """地区
6523
- 注意:此字段可能返回 null,表示取不到有效值。
6524
6370
  :rtype: str
6525
6371
  """
6526
6372
  return self._Zone
@@ -6532,7 +6378,6 @@ class SimpleInstanceInfo(AbstractModel):
6532
6378
  @property
6533
6379
  def UserVPCID(self):
6534
6380
  """私有网络
6535
- 注意:此字段可能返回 null,表示取不到有效值。
6536
6381
  :rtype: str
6537
6382
  """
6538
6383
  return self._UserVPCID
@@ -6544,7 +6389,6 @@ class SimpleInstanceInfo(AbstractModel):
6544
6389
  @property
6545
6390
  def UserSubnetID(self):
6546
6391
  """子网
6547
- 注意:此字段可能返回 null,表示取不到有效值。
6548
6392
  :rtype: str
6549
6393
  """
6550
6394
  return self._UserSubnetID
@@ -6556,7 +6400,6 @@ class SimpleInstanceInfo(AbstractModel):
6556
6400
  @property
6557
6401
  def CreateTime(self):
6558
6402
  """开始时间
6559
- 注意:此字段可能返回 null,表示取不到有效值。
6560
6403
  :rtype: str
6561
6404
  """
6562
6405
  return self._CreateTime
@@ -6568,7 +6411,6 @@ class SimpleInstanceInfo(AbstractModel):
6568
6411
  @property
6569
6412
  def ExpireTime(self):
6570
6413
  """到期时间
6571
- 注意:此字段可能返回 null,表示取不到有效值。
6572
6414
  :rtype: str
6573
6415
  """
6574
6416
  return self._ExpireTime
@@ -6592,7 +6434,6 @@ class SimpleInstanceInfo(AbstractModel):
6592
6434
  @property
6593
6435
  def RenewFlag(self):
6594
6436
  """自动续费开关,0为不自动续费,1为自动续费
6595
- 注意:此字段可能返回 null,表示取不到有效值。
6596
6437
  :rtype: int
6597
6438
  """
6598
6439
  return self._RenewFlag
@@ -6604,7 +6445,6 @@ class SimpleInstanceInfo(AbstractModel):
6604
6445
  @property
6605
6446
  def ChargeProperties(self):
6606
6447
  """计费方式
6607
- 注意:此字段可能返回 null,表示取不到有效值。
6608
6448
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.ChargeProperties`
6609
6449
  """
6610
6450
  return self._ChargeProperties
@@ -6616,7 +6456,6 @@ class SimpleInstanceInfo(AbstractModel):
6616
6456
  @property
6617
6457
  def Resources(self):
6618
6458
  """资源集合
6619
- 注意:此字段可能返回 null,表示取不到有效值。
6620
6459
  :rtype: list of ResourceInfo
6621
6460
  """
6622
6461
  return self._Resources
@@ -6640,7 +6479,6 @@ class SimpleInstanceInfo(AbstractModel):
6640
6479
  @property
6641
6480
  def Status(self):
6642
6481
  """集群状态
6643
- 注意:此字段可能返回 null,表示取不到有效值。
6644
6482
  :rtype: int
6645
6483
  """
6646
6484
  return self._Status
@@ -6928,22 +6766,17 @@ class UpgradeItem(AbstractModel):
6928
6766
  def __init__(self):
6929
6767
  r"""
6930
6768
  :param _TaskName: 任务名称
6931
- 注意:此字段可能返回 null,表示取不到有效值。
6932
6769
  :type TaskName: str
6933
6770
  :param _SourceVersion: 原有内核版本
6934
- 注意:此字段可能返回 null,表示取不到有效值。
6935
6771
  :type SourceVersion: str
6936
6772
  :param _TargetVersion: 目标内核版本
6937
- 注意:此字段可能返回 null,表示取不到有效值。
6938
6773
  :type TargetVersion: str
6939
6774
  :param _CreateTime: 任务创建时间
6940
- 注意:此字段可能返回 null,表示取不到有效值。
6941
6775
  :type CreateTime: str
6942
6776
  :param _EndTime: 任务结束时间
6943
6777
  注意:此字段可能返回 null,表示取不到有效值。
6944
6778
  :type EndTime: str
6945
6779
  :param _Status: 任务完成状态
6946
- 注意:此字段可能返回 null,表示取不到有效值。
6947
6780
  :type Status: str
6948
6781
  :param _OperateUin: 操作者
6949
6782
  注意:此字段可能返回 null,表示取不到有效值。
@@ -6960,7 +6793,6 @@ class UpgradeItem(AbstractModel):
6960
6793
  @property
6961
6794
  def TaskName(self):
6962
6795
  """任务名称
6963
- 注意:此字段可能返回 null,表示取不到有效值。
6964
6796
  :rtype: str
6965
6797
  """
6966
6798
  return self._TaskName
@@ -6972,7 +6804,6 @@ class UpgradeItem(AbstractModel):
6972
6804
  @property
6973
6805
  def SourceVersion(self):
6974
6806
  """原有内核版本
6975
- 注意:此字段可能返回 null,表示取不到有效值。
6976
6807
  :rtype: str
6977
6808
  """
6978
6809
  return self._SourceVersion
@@ -6984,7 +6815,6 @@ class UpgradeItem(AbstractModel):
6984
6815
  @property
6985
6816
  def TargetVersion(self):
6986
6817
  """目标内核版本
6987
- 注意:此字段可能返回 null,表示取不到有效值。
6988
6818
  :rtype: str
6989
6819
  """
6990
6820
  return self._TargetVersion
@@ -6996,7 +6826,6 @@ class UpgradeItem(AbstractModel):
6996
6826
  @property
6997
6827
  def CreateTime(self):
6998
6828
  """任务创建时间
6999
- 注意:此字段可能返回 null,表示取不到有效值。
7000
6829
  :rtype: str
7001
6830
  """
7002
6831
  return self._CreateTime
@@ -7020,7 +6849,6 @@ class UpgradeItem(AbstractModel):
7020
6849
  @property
7021
6850
  def Status(self):
7022
6851
  """任务完成状态
7023
- 注意:此字段可能返回 null,表示取不到有效值。
7024
6852
  :rtype: str
7025
6853
  """
7026
6854
  return self._Status
@@ -7068,10 +6896,8 @@ class ValueRange(AbstractModel):
7068
6896
  def __init__(self):
7069
6897
  r"""
7070
6898
  :param _Type: 参数类型,可以为 enum,string,section; 其中enum表示枚举,类似: utf8,latin1,gbk; string表示返回的参数值是字符串; section表示返回的参数值是一个取值范围,类似:[4-8]
7071
- 注意:此字段可能返回 null,表示取不到有效值。
7072
6899
  :type Type: str
7073
6900
  :param _Range: type 取section的时候,返回的参数值
7074
- 注意:此字段可能返回 null,表示取不到有效值。
7075
6901
  :type Range: :class:`tencentcloud.cdwpg.v20201230.models.Range`
7076
6902
  :param _Enum: type 取enum的时候,返回参数值
7077
6903
  注意:此字段可能返回 null,表示取不到有效值。
@@ -7088,7 +6914,6 @@ class ValueRange(AbstractModel):
7088
6914
  @property
7089
6915
  def Type(self):
7090
6916
  """参数类型,可以为 enum,string,section; 其中enum表示枚举,类似: utf8,latin1,gbk; string表示返回的参数值是字符串; section表示返回的参数值是一个取值范围,类似:[4-8]
7091
- 注意:此字段可能返回 null,表示取不到有效值。
7092
6917
  :rtype: str
7093
6918
  """
7094
6919
  return self._Type
@@ -7100,7 +6925,6 @@ class ValueRange(AbstractModel):
7100
6925
  @property
7101
6926
  def Range(self):
7102
6927
  """type 取section的时候,返回的参数值
7103
- 注意:此字段可能返回 null,表示取不到有效值。
7104
6928
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.Range`
7105
6929
  """
7106
6930
  return self._Range