tencentcloud-sdk-python 3.0.1359__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 (55) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +14 -44
  3. tencentcloud/bh/v20230418/bh_client.py +115 -0
  4. tencentcloud/bh/v20230418/models.py +1064 -131
  5. tencentcloud/cbs/v20170312/models.py +2 -2
  6. tencentcloud/cdb/v20170320/cdb_client.py +1 -1
  7. tencentcloud/cdb/v20170320/models.py +6 -6
  8. tencentcloud/cdwdoris/v20211228/models.py +30 -0
  9. tencentcloud/cdwpg/v20201230/models.py +22 -206
  10. tencentcloud/ckafka/v20190819/ckafka_client.py +46 -0
  11. tencentcloud/ckafka/v20190819/models.py +367 -0
  12. tencentcloud/cvm/v20170312/cvm_client.py +10 -7
  13. tencentcloud/cvm/v20170312/errorcodes.py +3 -0
  14. tencentcloud/cvm/v20170312/models.py +186 -174
  15. tencentcloud/cynosdb/v20190107/models.py +105 -0
  16. tencentcloud/dlc/v20210125/models.py +107 -564
  17. tencentcloud/dsgc/v20190723/models.py +30 -0
  18. tencentcloud/emr/v20190103/emr_client.py +23 -0
  19. tencentcloud/emr/v20190103/models.py +214 -0
  20. tencentcloud/ess/v20201111/models.py +256 -0
  21. tencentcloud/essbasic/v20210526/models.py +281 -13
  22. tencentcloud/gaap/v20180529/models.py +0 -166
  23. tencentcloud/gs/v20191118/errorcodes.py +24 -0
  24. tencentcloud/gs/v20191118/gs_client.py +138 -0
  25. tencentcloud/gs/v20191118/models.py +683 -21
  26. tencentcloud/gwlb/v20240906/gwlb_client.py +5 -7
  27. tencentcloud/gwlb/v20240906/models.py +72 -54
  28. tencentcloud/ioa/v20220601/ioa_client.py +46 -0
  29. tencentcloud/ioa/v20220601/models.py +358 -0
  30. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
  31. tencentcloud/iotexplorer/v20190423/models.py +600 -0
  32. tencentcloud/kms/v20190118/models.py +71 -0
  33. tencentcloud/lcic/v20220817/models.py +34 -0
  34. tencentcloud/lighthouse/v20200324/lighthouse_client.py +4 -1
  35. tencentcloud/lighthouse/v20200324/models.py +14 -10
  36. tencentcloud/monitor/v20180724/models.py +2 -2
  37. tencentcloud/monitor/v20180724/monitor_client.py +1 -1
  38. tencentcloud/mps/v20190612/models.py +12 -10
  39. tencentcloud/privatedns/v20201028/models.py +36 -6
  40. tencentcloud/tan/v20220420/tan_client.py +3 -1
  41. tencentcloud/tcb/v20180608/models.py +60 -0
  42. tencentcloud/tione/v20211111/errorcodes.py +3 -0
  43. tencentcloud/tione/v20211111/models.py +53 -0
  44. tencentcloud/trocket/v20230308/models.py +1398 -66
  45. tencentcloud/trocket/v20230308/trocket_client.py +214 -0
  46. tencentcloud/vclm/v20240523/models.py +2 -2
  47. tencentcloud/vpc/v20170312/models.py +263 -81
  48. tencentcloud/vpc/v20170312/vpc_client.py +25 -2
  49. tencentcloud/wedata/v20210820/models.py +2691 -4
  50. tencentcloud/wedata/v20210820/wedata_client.py +69 -0
  51. {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/METADATA +1 -1
  52. {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/RECORD +55 -55
  53. {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/LICENSE +0 -0
  54. {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/WHEEL +0 -0
  55. {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/top_level.txt +0 -0
@@ -26,10 +26,8 @@ class AccessInfo(AbstractModel):
26
26
  def __init__(self):
27
27
  r"""
28
28
  :param _Address: 地址
29
- 注意:此字段可能返回 null,表示取不到有效值。
30
29
  :type Address: str
31
30
  :param _Protocol: 协议
32
- 注意:此字段可能返回 null,表示取不到有效值。
33
31
  :type Protocol: str
34
32
  """
35
33
  self._Address = None
@@ -38,7 +36,6 @@ class AccessInfo(AbstractModel):
38
36
  @property
39
37
  def Address(self):
40
38
  """地址
41
- 注意:此字段可能返回 null,表示取不到有效值。
42
39
  :rtype: str
43
40
  """
44
41
  return self._Address
@@ -50,7 +47,6 @@ class AccessInfo(AbstractModel):
50
47
  @property
51
48
  def Protocol(self):
52
49
  """协议
53
- 注意:此字段可能返回 null,表示取不到有效值。
54
50
  :rtype: str
55
51
  """
56
52
  return self._Protocol
@@ -221,13 +217,10 @@ class CBSSpecInfo(AbstractModel):
221
217
  def __init__(self):
222
218
  r"""
223
219
  :param _DiskType: 盘类型
224
- 注意:此字段可能返回 null,表示取不到有效值。
225
220
  :type DiskType: str
226
221
  :param _DiskSize: 大小
227
- 注意:此字段可能返回 null,表示取不到有效值。
228
222
  :type DiskSize: int
229
223
  :param _DiskCount: 个数
230
- 注意:此字段可能返回 null,表示取不到有效值。
231
224
  :type DiskCount: int
232
225
  """
233
226
  self._DiskType = None
@@ -237,7 +230,6 @@ class CBSSpecInfo(AbstractModel):
237
230
  @property
238
231
  def DiskType(self):
239
232
  """盘类型
240
- 注意:此字段可能返回 null,表示取不到有效值。
241
233
  :rtype: str
242
234
  """
243
235
  return self._DiskType
@@ -249,7 +241,6 @@ class CBSSpecInfo(AbstractModel):
249
241
  @property
250
242
  def DiskSize(self):
251
243
  """大小
252
- 注意:此字段可能返回 null,表示取不到有效值。
253
244
  :rtype: int
254
245
  """
255
246
  return self._DiskSize
@@ -261,7 +252,6 @@ class CBSSpecInfo(AbstractModel):
261
252
  @property
262
253
  def DiskCount(self):
263
254
  """个数
264
- 注意:此字段可能返回 null,表示取不到有效值。
265
255
  :rtype: int
266
256
  """
267
257
  return self._DiskCount
@@ -376,19 +366,14 @@ class ChargeProperties(AbstractModel):
376
366
  def __init__(self):
377
367
  r"""
378
368
  :param _RenewFlag: 1-需要自动续期
379
- 注意:此字段可能返回 null,表示取不到有效值。
380
369
  :type RenewFlag: int
381
370
  :param _TimeSpan: 订单时间范围
382
- 注意:此字段可能返回 null,表示取不到有效值。
383
371
  :type TimeSpan: int
384
372
  :param _TimeUnit: 时间单位,一般为h和m
385
- 注意:此字段可能返回 null,表示取不到有效值。
386
373
  :type TimeUnit: str
387
374
  :param _PayMode: 计费类型0-按量计费,1-包年包月
388
- 注意:此字段可能返回 null,表示取不到有效值。
389
375
  :type PayMode: int
390
376
  :param _ChargeType: PREPAID、POSTPAID_BY_HOUR
391
- 注意:此字段可能返回 null,表示取不到有效值。
392
377
  :type ChargeType: str
393
378
  """
394
379
  self._RenewFlag = None
@@ -400,7 +385,6 @@ class ChargeProperties(AbstractModel):
400
385
  @property
401
386
  def RenewFlag(self):
402
387
  """1-需要自动续期
403
- 注意:此字段可能返回 null,表示取不到有效值。
404
388
  :rtype: int
405
389
  """
406
390
  return self._RenewFlag
@@ -412,7 +396,6 @@ class ChargeProperties(AbstractModel):
412
396
  @property
413
397
  def TimeSpan(self):
414
398
  """订单时间范围
415
- 注意:此字段可能返回 null,表示取不到有效值。
416
399
  :rtype: int
417
400
  """
418
401
  return self._TimeSpan
@@ -424,7 +407,6 @@ class ChargeProperties(AbstractModel):
424
407
  @property
425
408
  def TimeUnit(self):
426
409
  """时间单位,一般为h和m
427
- 注意:此字段可能返回 null,表示取不到有效值。
428
410
  :rtype: str
429
411
  """
430
412
  return self._TimeUnit
@@ -436,7 +418,6 @@ class ChargeProperties(AbstractModel):
436
418
  @property
437
419
  def PayMode(self):
438
420
  """计费类型0-按量计费,1-包年包月
439
- 注意:此字段可能返回 null,表示取不到有效值。
440
421
  :rtype: int
441
422
  """
442
423
  return self._PayMode
@@ -448,7 +429,6 @@ class ChargeProperties(AbstractModel):
448
429
  @property
449
430
  def ChargeType(self):
450
431
  """PREPAID、POSTPAID_BY_HOUR
451
- 注意:此字段可能返回 null,表示取不到有效值。
452
432
  :rtype: str
453
433
  """
454
434
  return self._ChargeType
@@ -723,10 +703,12 @@ class CreateInstanceByApiRequest(AbstractModel):
723
703
  :type AdminPassword: str
724
704
  :param _Resources: 资源信息
725
705
  :type Resources: list of ResourceSpecNew
726
- :param _Tags: 标签列表
706
+ :param _Tags: 废弃,用TagItems
727
707
  :type Tags: :class:`tencentcloud.cdwpg.v20201230.models.Tag`
728
708
  :param _ProductVersion: 版本
729
709
  :type ProductVersion: str
710
+ :param _TagItems: 标签列表
711
+ :type TagItems: list of Tag
730
712
  """
731
713
  self._InstanceName = None
732
714
  self._Zone = None
@@ -737,6 +719,7 @@ class CreateInstanceByApiRequest(AbstractModel):
737
719
  self._Resources = None
738
720
  self._Tags = None
739
721
  self._ProductVersion = None
722
+ self._TagItems = None
740
723
 
741
724
  @property
742
725
  def InstanceName(self):
@@ -817,7 +800,7 @@ class CreateInstanceByApiRequest(AbstractModel):
817
800
 
818
801
  @property
819
802
  def Tags(self):
820
- """标签列表
803
+ """废弃,用TagItems
821
804
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.Tag`
822
805
  """
823
806
  return self._Tags
@@ -837,6 +820,17 @@ class CreateInstanceByApiRequest(AbstractModel):
837
820
  def ProductVersion(self, ProductVersion):
838
821
  self._ProductVersion = ProductVersion
839
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
+
840
834
 
841
835
  def _deserialize(self, params):
842
836
  self._InstanceName = params.get("InstanceName")
@@ -857,6 +851,12 @@ class CreateInstanceByApiRequest(AbstractModel):
857
851
  self._Tags = Tag()
858
852
  self._Tags._deserialize(params.get("Tags"))
859
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)
860
860
  memeber_set = set(params.keys())
861
861
  for name, value in vars(self).items():
862
862
  property_name = name[1:]
@@ -875,10 +875,8 @@ class CreateInstanceByApiResponse(AbstractModel):
875
875
  def __init__(self):
876
876
  r"""
877
877
  :param _FlowId: 流程ID
878
- 注意:此字段可能返回 null,表示取不到有效值。
879
878
  :type FlowId: str
880
879
  :param _InstanceId: 实例ID
881
- 注意:此字段可能返回 null,表示取不到有效值。
882
880
  :type InstanceId: str
883
881
  :param _ErrorMsg: 错误信息
884
882
  注意:此字段可能返回 null,表示取不到有效值。
@@ -894,7 +892,6 @@ class CreateInstanceByApiResponse(AbstractModel):
894
892
  @property
895
893
  def FlowId(self):
896
894
  """流程ID
897
- 注意:此字段可能返回 null,表示取不到有效值。
898
895
  :rtype: str
899
896
  """
900
897
  return self._FlowId
@@ -906,7 +903,6 @@ class CreateInstanceByApiResponse(AbstractModel):
906
903
  @property
907
904
  def InstanceId(self):
908
905
  """实例ID
909
- 注意:此字段可能返回 null,表示取不到有效值。
910
906
  :rtype: str
911
907
  """
912
908
  return self._InstanceId
@@ -1020,10 +1016,8 @@ class DescribeAccountsResponse(AbstractModel):
1020
1016
  def __init__(self):
1021
1017
  r"""
1022
1018
  :param _TotalCount: 实例总数
1023
- 注意:此字段可能返回 null,表示取不到有效值。
1024
1019
  :type TotalCount: int
1025
1020
  :param _Accounts: 账号数组
1026
- 注意:此字段可能返回 null,表示取不到有效值。
1027
1021
  :type Accounts: list of AccountInfo
1028
1022
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1029
1023
  :type RequestId: str
@@ -1035,7 +1029,6 @@ class DescribeAccountsResponse(AbstractModel):
1035
1029
  @property
1036
1030
  def TotalCount(self):
1037
1031
  """实例总数
1038
- 注意:此字段可能返回 null,表示取不到有效值。
1039
1032
  :rtype: int
1040
1033
  """
1041
1034
  return self._TotalCount
@@ -1047,7 +1040,6 @@ class DescribeAccountsResponse(AbstractModel):
1047
1040
  @property
1048
1041
  def Accounts(self):
1049
1042
  """账号数组
1050
- 注意:此字段可能返回 null,表示取不到有效值。
1051
1043
  :rtype: list of AccountInfo
1052
1044
  """
1053
1045
  return self._Accounts
@@ -2016,7 +2008,6 @@ class DescribeInstanceStateResponse(AbstractModel):
2016
2008
  注意:此字段可能返回 null,表示取不到有效值。
2017
2009
  :type ProcessName: str
2018
2010
  :param _BackupStatus: 集群备份任务开启状态
2019
- 注意:此字段可能返回 null,表示取不到有效值。
2020
2011
  :type BackupStatus: int
2021
2012
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2022
2013
  :type RequestId: str
@@ -2117,7 +2108,6 @@ class DescribeInstanceStateResponse(AbstractModel):
2117
2108
  @property
2118
2109
  def BackupStatus(self):
2119
2110
  """集群备份任务开启状态
2120
- 注意:此字段可能返回 null,表示取不到有效值。
2121
2111
  :rtype: int
2122
2112
  """
2123
2113
  return self._BackupStatus
@@ -2259,7 +2249,6 @@ class DescribeInstancesResponse(AbstractModel):
2259
2249
  def __init__(self):
2260
2250
  r"""
2261
2251
  :param _TotalCount: 实例总数
2262
- 注意:此字段可能返回 null,表示取不到有效值。
2263
2252
  :type TotalCount: int
2264
2253
  :param _InstancesList: 实例数组
2265
2254
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2278,7 +2267,6 @@ class DescribeInstancesResponse(AbstractModel):
2278
2267
  @property
2279
2268
  def TotalCount(self):
2280
2269
  """实例总数
2281
- 注意:此字段可能返回 null,表示取不到有效值。
2282
2270
  :rtype: int
2283
2271
  """
2284
2272
  return self._TotalCount
@@ -2439,7 +2427,6 @@ class DescribeSimpleInstancesResponse(AbstractModel):
2439
2427
  def __init__(self):
2440
2428
  r"""
2441
2429
  :param _TotalCount: 集群列表总数
2442
- 注意:此字段可能返回 null,表示取不到有效值。
2443
2430
  :type TotalCount: int
2444
2431
  :param _InstancesList: 集群列表详情
2445
2432
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2458,7 +2445,6 @@ class DescribeSimpleInstancesResponse(AbstractModel):
2458
2445
  @property
2459
2446
  def TotalCount(self):
2460
2447
  """集群列表总数
2461
- 注意:此字段可能返回 null,表示取不到有效值。
2462
2448
  :rtype: int
2463
2449
  """
2464
2450
  return self._TotalCount
@@ -2906,10 +2892,8 @@ class DescribeUserHbaConfigResponse(AbstractModel):
2906
2892
  def __init__(self):
2907
2893
  r"""
2908
2894
  :param _TotalCount: 实例总数
2909
- 注意:此字段可能返回 null,表示取不到有效值。
2910
2895
  :type TotalCount: int
2911
2896
  :param _HbaConfigs: hba数组
2912
- 注意:此字段可能返回 null,表示取不到有效值。
2913
2897
  :type HbaConfigs: list of HbaConfig
2914
2898
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2915
2899
  :type RequestId: str
@@ -2921,7 +2905,6 @@ class DescribeUserHbaConfigResponse(AbstractModel):
2921
2905
  @property
2922
2906
  def TotalCount(self):
2923
2907
  """实例总数
2924
- 注意:此字段可能返回 null,表示取不到有效值。
2925
2908
  :rtype: int
2926
2909
  """
2927
2910
  return self._TotalCount
@@ -2933,7 +2916,6 @@ class DescribeUserHbaConfigResponse(AbstractModel):
2933
2916
  @property
2934
2917
  def HbaConfigs(self):
2935
2918
  """hba数组
2936
- 注意:此字段可能返回 null,表示取不到有效值。
2937
2919
  :rtype: list of HbaConfig
2938
2920
  """
2939
2921
  return self._HbaConfigs
@@ -3067,22 +3049,16 @@ class DiskSpecPlus(AbstractModel):
3067
3049
  def __init__(self):
3068
3050
  r"""
3069
3051
  :param _DiskCount: 磁盘个数
3070
- 注意:此字段可能返回 null,表示取不到有效值。
3071
3052
  :type DiskCount: int
3072
3053
  :param _MaxDiskSize: 磁盘最大值
3073
- 注意:此字段可能返回 null,表示取不到有效值。
3074
3054
  :type MaxDiskSize: int
3075
3055
  :param _MinDiskSize: 磁盘最小值
3076
- 注意:此字段可能返回 null,表示取不到有效值。
3077
3056
  :type MinDiskSize: int
3078
3057
  :param _DiskType: 磁盘类型
3079
- 注意:此字段可能返回 null,表示取不到有效值。
3080
3058
  :type DiskType: str
3081
3059
  :param _DiskDesc: 磁盘类型详情
3082
- 注意:此字段可能返回 null,表示取不到有效值。
3083
3060
  :type DiskDesc: str
3084
3061
  :param _CvmClass: 机型类型
3085
- 注意:此字段可能返回 null,表示取不到有效值。
3086
3062
  :type CvmClass: str
3087
3063
  """
3088
3064
  self._DiskCount = None
@@ -3095,7 +3071,6 @@ class DiskSpecPlus(AbstractModel):
3095
3071
  @property
3096
3072
  def DiskCount(self):
3097
3073
  """磁盘个数
3098
- 注意:此字段可能返回 null,表示取不到有效值。
3099
3074
  :rtype: int
3100
3075
  """
3101
3076
  return self._DiskCount
@@ -3107,7 +3082,6 @@ class DiskSpecPlus(AbstractModel):
3107
3082
  @property
3108
3083
  def MaxDiskSize(self):
3109
3084
  """磁盘最大值
3110
- 注意:此字段可能返回 null,表示取不到有效值。
3111
3085
  :rtype: int
3112
3086
  """
3113
3087
  return self._MaxDiskSize
@@ -3119,7 +3093,6 @@ class DiskSpecPlus(AbstractModel):
3119
3093
  @property
3120
3094
  def MinDiskSize(self):
3121
3095
  """磁盘最小值
3122
- 注意:此字段可能返回 null,表示取不到有效值。
3123
3096
  :rtype: int
3124
3097
  """
3125
3098
  return self._MinDiskSize
@@ -3131,7 +3104,6 @@ class DiskSpecPlus(AbstractModel):
3131
3104
  @property
3132
3105
  def DiskType(self):
3133
3106
  """磁盘类型
3134
- 注意:此字段可能返回 null,表示取不到有效值。
3135
3107
  :rtype: str
3136
3108
  """
3137
3109
  return self._DiskType
@@ -3143,7 +3115,6 @@ class DiskSpecPlus(AbstractModel):
3143
3115
  @property
3144
3116
  def DiskDesc(self):
3145
3117
  """磁盘类型详情
3146
- 注意:此字段可能返回 null,表示取不到有效值。
3147
3118
  :rtype: str
3148
3119
  """
3149
3120
  return self._DiskDesc
@@ -3155,7 +3126,6 @@ class DiskSpecPlus(AbstractModel):
3155
3126
  @property
3156
3127
  def CvmClass(self):
3157
3128
  """机型类型
3158
- 注意:此字段可能返回 null,表示取不到有效值。
3159
3129
  :rtype: str
3160
3130
  """
3161
3131
  return self._CvmClass
@@ -3190,16 +3160,12 @@ class ErrorLogDetail(AbstractModel):
3190
3160
  def __init__(self):
3191
3161
  r"""
3192
3162
  :param _UserName: 用户名称
3193
- 注意:此字段可能返回 null,表示取不到有效值。
3194
3163
  :type UserName: str
3195
3164
  :param _Database: 数据库
3196
- 注意:此字段可能返回 null,表示取不到有效值。
3197
3165
  :type Database: str
3198
3166
  :param _ErrorTime: 报错时间
3199
- 注意:此字段可能返回 null,表示取不到有效值。
3200
3167
  :type ErrorTime: str
3201
3168
  :param _ErrorMessage: 报错信息
3202
- 注意:此字段可能返回 null,表示取不到有效值。
3203
3169
  :type ErrorMessage: str
3204
3170
  """
3205
3171
  self._UserName = None
@@ -3210,7 +3176,6 @@ class ErrorLogDetail(AbstractModel):
3210
3176
  @property
3211
3177
  def UserName(self):
3212
3178
  """用户名称
3213
- 注意:此字段可能返回 null,表示取不到有效值。
3214
3179
  :rtype: str
3215
3180
  """
3216
3181
  return self._UserName
@@ -3222,7 +3187,6 @@ class ErrorLogDetail(AbstractModel):
3222
3187
  @property
3223
3188
  def Database(self):
3224
3189
  """数据库
3225
- 注意:此字段可能返回 null,表示取不到有效值。
3226
3190
  :rtype: str
3227
3191
  """
3228
3192
  return self._Database
@@ -3234,7 +3198,6 @@ class ErrorLogDetail(AbstractModel):
3234
3198
  @property
3235
3199
  def ErrorTime(self):
3236
3200
  """报错时间
3237
- 注意:此字段可能返回 null,表示取不到有效值。
3238
3201
  :rtype: str
3239
3202
  """
3240
3203
  return self._ErrorTime
@@ -3246,7 +3209,6 @@ class ErrorLogDetail(AbstractModel):
3246
3209
  @property
3247
3210
  def ErrorMessage(self):
3248
3211
  """报错信息
3249
- 注意:此字段可能返回 null,表示取不到有效值。
3250
3212
  :rtype: str
3251
3213
  """
3252
3214
  return self._ErrorMessage
@@ -3392,13 +3354,10 @@ class InstanceInfo(AbstractModel):
3392
3354
  def __init__(self):
3393
3355
  r"""
3394
3356
  :param _ID: ID值
3395
- 注意:此字段可能返回 null,表示取不到有效值。
3396
3357
  :type ID: int
3397
3358
  :param _InstanceType: 内核版本类型
3398
- 注意:此字段可能返回 null,表示取不到有效值。
3399
3359
  :type InstanceType: str
3400
3360
  :param _InstanceName: 集群名字
3401
- 注意:此字段可能返回 null,表示取不到有效值。
3402
3361
  :type InstanceName: str
3403
3362
  :param _Status: 集群状态
3404
3363
  注意:此字段可能返回 null,表示取不到有效值。
@@ -3413,13 +3372,10 @@ class InstanceInfo(AbstractModel):
3413
3372
  注意:此字段可能返回 null,表示取不到有效值。
3414
3373
  :type InstanceID: str
3415
3374
  :param _CreateTime: 创建时间
3416
- 注意:此字段可能返回 null,表示取不到有效值。
3417
3375
  :type CreateTime: str
3418
3376
  :param _Region: 地域
3419
- 注意:此字段可能返回 null,表示取不到有效值。
3420
3377
  :type Region: str
3421
3378
  :param _Zone: 地区
3422
- 注意:此字段可能返回 null,表示取不到有效值。
3423
3379
  :type Zone: str
3424
3380
  :param _RegionDesc: 地域详情
3425
3381
  注意:此字段可能返回 null,表示取不到有效值。
@@ -3431,16 +3387,12 @@ class InstanceInfo(AbstractModel):
3431
3387
  注意:此字段可能返回 null,表示取不到有效值。
3432
3388
  :type Tags: list of Tag
3433
3389
  :param _Version: 内核版本
3434
- 注意:此字段可能返回 null,表示取不到有效值。
3435
3390
  :type Version: str
3436
3391
  :param _Charset: 字符集
3437
- 注意:此字段可能返回 null,表示取不到有效值。
3438
3392
  :type Charset: str
3439
3393
  :param _CNNodes: CN节点列表
3440
- 注意:此字段可能返回 null,表示取不到有效值。
3441
3394
  :type CNNodes: list of InstanceNodeGroup
3442
3395
  :param _DNNodes: DN节点列表
3443
- 注意:此字段可能返回 null,表示取不到有效值。
3444
3396
  :type DNNodes: list of InstanceNodeGroup
3445
3397
  :param _RegionId: 地域id
3446
3398
  注意:此字段可能返回 null,表示取不到有效值。
@@ -3449,25 +3401,18 @@ class InstanceInfo(AbstractModel):
3449
3401
  注意:此字段可能返回 null,表示取不到有效值。
3450
3402
  :type ZoneId: int
3451
3403
  :param _VpcId: 私有网络
3452
- 注意:此字段可能返回 null,表示取不到有效值。
3453
3404
  :type VpcId: str
3454
3405
  :param _SubnetId: 子网
3455
- 注意:此字段可能返回 null,表示取不到有效值。
3456
3406
  :type SubnetId: str
3457
3407
  :param _ExpireTime: 过期时间
3458
- 注意:此字段可能返回 null,表示取不到有效值。
3459
3408
  :type ExpireTime: str
3460
3409
  :param _PayMode: 计费方式
3461
- 注意:此字段可能返回 null,表示取不到有效值。
3462
3410
  :type PayMode: str
3463
3411
  :param _RenewFlag: 自动续费
3464
- 注意:此字段可能返回 null,表示取不到有效值。
3465
3412
  :type RenewFlag: bool
3466
3413
  :param _InstanceId: 集群id
3467
- 注意:此字段可能返回 null,表示取不到有效值。
3468
3414
  :type InstanceId: str
3469
3415
  :param _AccessDetails: 访问信息
3470
- 注意:此字段可能返回 null,表示取不到有效值。
3471
3416
  :type AccessDetails: list of AccessInfo
3472
3417
  """
3473
3418
  self._ID = None
@@ -3500,7 +3445,6 @@ class InstanceInfo(AbstractModel):
3500
3445
  @property
3501
3446
  def ID(self):
3502
3447
  """ID值
3503
- 注意:此字段可能返回 null,表示取不到有效值。
3504
3448
  :rtype: int
3505
3449
  """
3506
3450
  return self._ID
@@ -3512,7 +3456,6 @@ class InstanceInfo(AbstractModel):
3512
3456
  @property
3513
3457
  def InstanceType(self):
3514
3458
  """内核版本类型
3515
- 注意:此字段可能返回 null,表示取不到有效值。
3516
3459
  :rtype: str
3517
3460
  """
3518
3461
  return self._InstanceType
@@ -3524,7 +3467,6 @@ class InstanceInfo(AbstractModel):
3524
3467
  @property
3525
3468
  def InstanceName(self):
3526
3469
  """集群名字
3527
- 注意:此字段可能返回 null,表示取不到有效值。
3528
3470
  :rtype: str
3529
3471
  """
3530
3472
  return self._InstanceName
@@ -3584,7 +3526,6 @@ class InstanceInfo(AbstractModel):
3584
3526
  @property
3585
3527
  def CreateTime(self):
3586
3528
  """创建时间
3587
- 注意:此字段可能返回 null,表示取不到有效值。
3588
3529
  :rtype: str
3589
3530
  """
3590
3531
  return self._CreateTime
@@ -3596,7 +3537,6 @@ class InstanceInfo(AbstractModel):
3596
3537
  @property
3597
3538
  def Region(self):
3598
3539
  """地域
3599
- 注意:此字段可能返回 null,表示取不到有效值。
3600
3540
  :rtype: str
3601
3541
  """
3602
3542
  return self._Region
@@ -3608,7 +3548,6 @@ class InstanceInfo(AbstractModel):
3608
3548
  @property
3609
3549
  def Zone(self):
3610
3550
  """地区
3611
- 注意:此字段可能返回 null,表示取不到有效值。
3612
3551
  :rtype: str
3613
3552
  """
3614
3553
  return self._Zone
@@ -3656,7 +3595,6 @@ class InstanceInfo(AbstractModel):
3656
3595
  @property
3657
3596
  def Version(self):
3658
3597
  """内核版本
3659
- 注意:此字段可能返回 null,表示取不到有效值。
3660
3598
  :rtype: str
3661
3599
  """
3662
3600
  return self._Version
@@ -3668,7 +3606,6 @@ class InstanceInfo(AbstractModel):
3668
3606
  @property
3669
3607
  def Charset(self):
3670
3608
  """字符集
3671
- 注意:此字段可能返回 null,表示取不到有效值。
3672
3609
  :rtype: str
3673
3610
  """
3674
3611
  return self._Charset
@@ -3680,7 +3617,6 @@ class InstanceInfo(AbstractModel):
3680
3617
  @property
3681
3618
  def CNNodes(self):
3682
3619
  """CN节点列表
3683
- 注意:此字段可能返回 null,表示取不到有效值。
3684
3620
  :rtype: list of InstanceNodeGroup
3685
3621
  """
3686
3622
  return self._CNNodes
@@ -3692,7 +3628,6 @@ class InstanceInfo(AbstractModel):
3692
3628
  @property
3693
3629
  def DNNodes(self):
3694
3630
  """DN节点列表
3695
- 注意:此字段可能返回 null,表示取不到有效值。
3696
3631
  :rtype: list of InstanceNodeGroup
3697
3632
  """
3698
3633
  return self._DNNodes
@@ -3728,7 +3663,6 @@ class InstanceInfo(AbstractModel):
3728
3663
  @property
3729
3664
  def VpcId(self):
3730
3665
  """私有网络
3731
- 注意:此字段可能返回 null,表示取不到有效值。
3732
3666
  :rtype: str
3733
3667
  """
3734
3668
  return self._VpcId
@@ -3740,7 +3674,6 @@ class InstanceInfo(AbstractModel):
3740
3674
  @property
3741
3675
  def SubnetId(self):
3742
3676
  """子网
3743
- 注意:此字段可能返回 null,表示取不到有效值。
3744
3677
  :rtype: str
3745
3678
  """
3746
3679
  return self._SubnetId
@@ -3752,7 +3685,6 @@ class InstanceInfo(AbstractModel):
3752
3685
  @property
3753
3686
  def ExpireTime(self):
3754
3687
  """过期时间
3755
- 注意:此字段可能返回 null,表示取不到有效值。
3756
3688
  :rtype: str
3757
3689
  """
3758
3690
  return self._ExpireTime
@@ -3764,7 +3696,6 @@ class InstanceInfo(AbstractModel):
3764
3696
  @property
3765
3697
  def PayMode(self):
3766
3698
  """计费方式
3767
- 注意:此字段可能返回 null,表示取不到有效值。
3768
3699
  :rtype: str
3769
3700
  """
3770
3701
  return self._PayMode
@@ -3776,7 +3707,6 @@ class InstanceInfo(AbstractModel):
3776
3707
  @property
3777
3708
  def RenewFlag(self):
3778
3709
  """自动续费
3779
- 注意:此字段可能返回 null,表示取不到有效值。
3780
3710
  :rtype: bool
3781
3711
  """
3782
3712
  return self._RenewFlag
@@ -3788,7 +3718,6 @@ class InstanceInfo(AbstractModel):
3788
3718
  @property
3789
3719
  def InstanceId(self):
3790
3720
  """集群id
3791
- 注意:此字段可能返回 null,表示取不到有效值。
3792
3721
  :rtype: str
3793
3722
  """
3794
3723
  return self._InstanceId
@@ -3800,7 +3729,6 @@ class InstanceInfo(AbstractModel):
3800
3729
  @property
3801
3730
  def AccessDetails(self):
3802
3731
  """访问信息
3803
- 注意:此字段可能返回 null,表示取不到有效值。
3804
3732
  :rtype: list of AccessInfo
3805
3733
  """
3806
3734
  return self._AccessDetails
@@ -3943,13 +3871,10 @@ class InstanceNodeGroup(AbstractModel):
3943
3871
  def __init__(self):
3944
3872
  r"""
3945
3873
  :param _SpecName: 机型
3946
- 注意:此字段可能返回 null,表示取不到有效值。
3947
3874
  :type SpecName: str
3948
3875
  :param _DataDisk: 磁盘信息
3949
- 注意:此字段可能返回 null,表示取不到有效值。
3950
3876
  :type DataDisk: :class:`tencentcloud.cdwpg.v20201230.models.DiskSpecPlus`
3951
3877
  :param _CvmCount: 机器个数
3952
- 注意:此字段可能返回 null,表示取不到有效值。
3953
3878
  :type CvmCount: int
3954
3879
  """
3955
3880
  self._SpecName = None
@@ -3959,7 +3884,6 @@ class InstanceNodeGroup(AbstractModel):
3959
3884
  @property
3960
3885
  def SpecName(self):
3961
3886
  """机型
3962
- 注意:此字段可能返回 null,表示取不到有效值。
3963
3887
  :rtype: str
3964
3888
  """
3965
3889
  return self._SpecName
@@ -3971,7 +3895,6 @@ class InstanceNodeGroup(AbstractModel):
3971
3895
  @property
3972
3896
  def DataDisk(self):
3973
3897
  """磁盘信息
3974
- 注意:此字段可能返回 null,表示取不到有效值。
3975
3898
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.DiskSpecPlus`
3976
3899
  """
3977
3900
  return self._DataDisk
@@ -3983,7 +3906,6 @@ class InstanceNodeGroup(AbstractModel):
3983
3906
  @property
3984
3907
  def CvmCount(self):
3985
3908
  """机器个数
3986
- 注意:此字段可能返回 null,表示取不到有效值。
3987
3909
  :rtype: int
3988
3910
  """
3989
3911
  return self._CvmCount
@@ -4019,16 +3941,12 @@ class InstanceOperation(AbstractModel):
4019
3941
  :param _Id: 操作名称,例如“create_instance"、“scaleout_instance”等
4020
3942
  :type Id: int
4021
3943
  :param _InstanceId: 集群ID
4022
- 注意:此字段可能返回 null,表示取不到有效值。
4023
3944
  :type InstanceId: str
4024
3945
  :param _Action: 操作名称描述,例如“创建”,“修改集群名称”等
4025
- 注意:此字段可能返回 null,表示取不到有效值。
4026
3946
  :type Action: str
4027
3947
  :param _Status: 状态
4028
- 注意:此字段可能返回 null,表示取不到有效值。
4029
3948
  :type Status: int
4030
3949
  :param _StartTime: 操作开始时间
4031
- 注意:此字段可能返回 null,表示取不到有效值。
4032
3950
  :type StartTime: str
4033
3951
  :param _EndTime: 操作结束时间
4034
3952
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4067,7 +3985,6 @@ class InstanceOperation(AbstractModel):
4067
3985
  @property
4068
3986
  def InstanceId(self):
4069
3987
  """集群ID
4070
- 注意:此字段可能返回 null,表示取不到有效值。
4071
3988
  :rtype: str
4072
3989
  """
4073
3990
  return self._InstanceId
@@ -4079,7 +3996,6 @@ class InstanceOperation(AbstractModel):
4079
3996
  @property
4080
3997
  def Action(self):
4081
3998
  """操作名称描述,例如“创建”,“修改集群名称”等
4082
- 注意:此字段可能返回 null,表示取不到有效值。
4083
3999
  :rtype: str
4084
4000
  """
4085
4001
  return self._Action
@@ -4091,7 +4007,6 @@ class InstanceOperation(AbstractModel):
4091
4007
  @property
4092
4008
  def Status(self):
4093
4009
  """状态
4094
- 注意:此字段可能返回 null,表示取不到有效值。
4095
4010
  :rtype: int
4096
4011
  """
4097
4012
  return self._Status
@@ -4103,7 +4018,6 @@ class InstanceOperation(AbstractModel):
4103
4018
  @property
4104
4019
  def StartTime(self):
4105
4020
  """操作开始时间
4106
- 注意:此字段可能返回 null,表示取不到有效值。
4107
4021
  :rtype: str
4108
4022
  """
4109
4023
  return self._StartTime
@@ -4189,19 +4103,14 @@ class InstanceSimpleInfoNew(AbstractModel):
4189
4103
  def __init__(self):
4190
4104
  r"""
4191
4105
  :param _ID: ID
4192
- 注意:此字段可能返回 null,表示取不到有效值。
4193
4106
  :type ID: int
4194
4107
  :param _InstanceId: 集群Id
4195
- 注意:此字段可能返回 null,表示取不到有效值。
4196
4108
  :type InstanceId: str
4197
4109
  :param _InstanceName: 集群名字
4198
- 注意:此字段可能返回 null,表示取不到有效值。
4199
4110
  :type InstanceName: str
4200
4111
  :param _Version: 内核版本
4201
- 注意:此字段可能返回 null,表示取不到有效值。
4202
4112
  :type Version: str
4203
4113
  :param _Region: 地域
4204
- 注意:此字段可能返回 null,表示取不到有效值。
4205
4114
  :type Region: str
4206
4115
  :param _RegionId: 地域Id
4207
4116
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4210,7 +4119,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4210
4119
  注意:此字段可能返回 null,表示取不到有效值。
4211
4120
  :type RegionDesc: str
4212
4121
  :param _Zone: 地区
4213
- 注意:此字段可能返回 null,表示取不到有效值。
4214
4122
  :type Zone: str
4215
4123
  :param _ZoneId: 地区id
4216
4124
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4219,25 +4127,19 @@ class InstanceSimpleInfoNew(AbstractModel):
4219
4127
  注意:此字段可能返回 null,表示取不到有效值。
4220
4128
  :type ZoneDesc: str
4221
4129
  :param _VpcId: 私有网络
4222
- 注意:此字段可能返回 null,表示取不到有效值。
4223
4130
  :type VpcId: str
4224
4131
  :param _SubnetId: 子网
4225
- 注意:此字段可能返回 null,表示取不到有效值。
4226
4132
  :type SubnetId: str
4227
4133
  :param _CreateTime: 开始时间
4228
- 注意:此字段可能返回 null,表示取不到有效值。
4229
4134
  :type CreateTime: str
4230
4135
  :param _ExpireTime: 过期时间
4231
- 注意:此字段可能返回 null,表示取不到有效值。
4232
4136
  :type ExpireTime: str
4233
4137
  :param _AccessInfo: 访问地址
4234
4138
  注意:此字段可能返回 null,表示取不到有效值。
4235
4139
  :type AccessInfo: str
4236
4140
  :param _PayMode: 计费方式
4237
- 注意:此字段可能返回 null,表示取不到有效值。
4238
4141
  :type PayMode: str
4239
4142
  :param _RenewFlag: 自动续费
4240
- 注意:此字段可能返回 null,表示取不到有效值。
4241
4143
  :type RenewFlag: bool
4242
4144
  """
4243
4145
  self._ID = None
@@ -4261,7 +4163,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4261
4163
  @property
4262
4164
  def ID(self):
4263
4165
  """ID
4264
- 注意:此字段可能返回 null,表示取不到有效值。
4265
4166
  :rtype: int
4266
4167
  """
4267
4168
  return self._ID
@@ -4273,7 +4174,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4273
4174
  @property
4274
4175
  def InstanceId(self):
4275
4176
  """集群Id
4276
- 注意:此字段可能返回 null,表示取不到有效值。
4277
4177
  :rtype: str
4278
4178
  """
4279
4179
  return self._InstanceId
@@ -4285,7 +4185,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4285
4185
  @property
4286
4186
  def InstanceName(self):
4287
4187
  """集群名字
4288
- 注意:此字段可能返回 null,表示取不到有效值。
4289
4188
  :rtype: str
4290
4189
  """
4291
4190
  return self._InstanceName
@@ -4297,7 +4196,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4297
4196
  @property
4298
4197
  def Version(self):
4299
4198
  """内核版本
4300
- 注意:此字段可能返回 null,表示取不到有效值。
4301
4199
  :rtype: str
4302
4200
  """
4303
4201
  return self._Version
@@ -4309,7 +4207,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4309
4207
  @property
4310
4208
  def Region(self):
4311
4209
  """地域
4312
- 注意:此字段可能返回 null,表示取不到有效值。
4313
4210
  :rtype: str
4314
4211
  """
4315
4212
  return self._Region
@@ -4345,7 +4242,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4345
4242
  @property
4346
4243
  def Zone(self):
4347
4244
  """地区
4348
- 注意:此字段可能返回 null,表示取不到有效值。
4349
4245
  :rtype: str
4350
4246
  """
4351
4247
  return self._Zone
@@ -4381,7 +4277,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4381
4277
  @property
4382
4278
  def VpcId(self):
4383
4279
  """私有网络
4384
- 注意:此字段可能返回 null,表示取不到有效值。
4385
4280
  :rtype: str
4386
4281
  """
4387
4282
  return self._VpcId
@@ -4393,7 +4288,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4393
4288
  @property
4394
4289
  def SubnetId(self):
4395
4290
  """子网
4396
- 注意:此字段可能返回 null,表示取不到有效值。
4397
4291
  :rtype: str
4398
4292
  """
4399
4293
  return self._SubnetId
@@ -4405,7 +4299,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4405
4299
  @property
4406
4300
  def CreateTime(self):
4407
4301
  """开始时间
4408
- 注意:此字段可能返回 null,表示取不到有效值。
4409
4302
  :rtype: str
4410
4303
  """
4411
4304
  return self._CreateTime
@@ -4417,7 +4310,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4417
4310
  @property
4418
4311
  def ExpireTime(self):
4419
4312
  """过期时间
4420
- 注意:此字段可能返回 null,表示取不到有效值。
4421
4313
  :rtype: str
4422
4314
  """
4423
4315
  return self._ExpireTime
@@ -4441,7 +4333,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4441
4333
  @property
4442
4334
  def PayMode(self):
4443
4335
  """计费方式
4444
- 注意:此字段可能返回 null,表示取不到有效值。
4445
4336
  :rtype: str
4446
4337
  """
4447
4338
  return self._PayMode
@@ -4453,7 +4344,6 @@ class InstanceSimpleInfoNew(AbstractModel):
4453
4344
  @property
4454
4345
  def RenewFlag(self):
4455
4346
  """自动续费
4456
- 注意:此字段可能返回 null,表示取不到有效值。
4457
4347
  :rtype: bool
4458
4348
  """
4459
4349
  return self._RenewFlag
@@ -4499,7 +4389,6 @@ class InstanceStateInfo(AbstractModel):
4499
4389
  def __init__(self):
4500
4390
  r"""
4501
4391
  :param _InstanceState: 集群状态,例如:Serving
4502
- 注意:此字段可能返回 null,表示取不到有效值。
4503
4392
  :type InstanceState: str
4504
4393
  :param _FlowCreateTime: 集群操作创建时间
4505
4394
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4543,7 +4432,6 @@ class InstanceStateInfo(AbstractModel):
4543
4432
  @property
4544
4433
  def InstanceState(self):
4545
4434
  """集群状态,例如:Serving
4546
- 注意:此字段可能返回 null,表示取不到有效值。
4547
4435
  :rtype: str
4548
4436
  """
4549
4437
  return self._InstanceState
@@ -4924,7 +4812,6 @@ class ModifyUserHbaResponse(AbstractModel):
4924
4812
  def __init__(self):
4925
4813
  r"""
4926
4814
  :param _TaskId: 任务id
4927
- 注意:此字段可能返回 null,表示取不到有效值。
4928
4815
  :type TaskId: int
4929
4816
  :param _ErrorMsg: 错误信息
4930
4817
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4939,7 +4826,6 @@ class ModifyUserHbaResponse(AbstractModel):
4939
4826
  @property
4940
4827
  def TaskId(self):
4941
4828
  """任务id
4942
- 注意:此字段可能返回 null,表示取不到有效值。
4943
4829
  :rtype: int
4944
4830
  """
4945
4831
  return self._TaskId
@@ -5352,16 +5238,12 @@ class ParamDetail(AbstractModel):
5352
5238
  def __init__(self):
5353
5239
  r"""
5354
5240
  :param _ParamName: 参数名
5355
- 注意:此字段可能返回 null,表示取不到有效值。
5356
5241
  :type ParamName: str
5357
5242
  :param _DefaultValue: 默认值
5358
- 注意:此字段可能返回 null,表示取不到有效值。
5359
5243
  :type DefaultValue: str
5360
5244
  :param _NeedRestart: 是否需要重启
5361
- 注意:此字段可能返回 null,表示取不到有效值。
5362
5245
  :type NeedRestart: bool
5363
5246
  :param _RunningValue: 当前运行值
5364
- 注意:此字段可能返回 null,表示取不到有效值。
5365
5247
  :type RunningValue: str
5366
5248
  :param _ValueRange: 取值范围
5367
5249
  :type ValueRange: :class:`tencentcloud.cdwpg.v20201230.models.ValueRange`
@@ -5387,7 +5269,6 @@ class ParamDetail(AbstractModel):
5387
5269
  @property
5388
5270
  def ParamName(self):
5389
5271
  """参数名
5390
- 注意:此字段可能返回 null,表示取不到有效值。
5391
5272
  :rtype: str
5392
5273
  """
5393
5274
  return self._ParamName
@@ -5399,7 +5280,6 @@ class ParamDetail(AbstractModel):
5399
5280
  @property
5400
5281
  def DefaultValue(self):
5401
5282
  """默认值
5402
- 注意:此字段可能返回 null,表示取不到有效值。
5403
5283
  :rtype: str
5404
5284
  """
5405
5285
  return self._DefaultValue
@@ -5411,7 +5291,6 @@ class ParamDetail(AbstractModel):
5411
5291
  @property
5412
5292
  def NeedRestart(self):
5413
5293
  """是否需要重启
5414
- 注意:此字段可能返回 null,表示取不到有效值。
5415
5294
  :rtype: bool
5416
5295
  """
5417
5296
  return self._NeedRestart
@@ -5423,7 +5302,6 @@ class ParamDetail(AbstractModel):
5423
5302
  @property
5424
5303
  def RunningValue(self):
5425
5304
  """当前运行值
5426
- 注意:此字段可能返回 null,表示取不到有效值。
5427
5305
  :rtype: str
5428
5306
  """
5429
5307
  return self._RunningValue
@@ -5509,16 +5387,12 @@ class ParamItem(AbstractModel):
5509
5387
  def __init__(self):
5510
5388
  r"""
5511
5389
  :param _NodeType: 节点类型, cn/dn
5512
- 注意:此字段可能返回 null,表示取不到有效值。
5513
5390
  :type NodeType: str
5514
5391
  :param _NodeName: 节点名
5515
- 注意:此字段可能返回 null,表示取不到有效值。
5516
5392
  :type NodeName: str
5517
5393
  :param _TotalCount: 参数个数
5518
- 注意:此字段可能返回 null,表示取不到有效值。
5519
5394
  :type TotalCount: int
5520
5395
  :param _Details: 参数信息
5521
- 注意:此字段可能返回 null,表示取不到有效值。
5522
5396
  :type Details: list of ParamDetail
5523
5397
  """
5524
5398
  self._NodeType = None
@@ -5529,7 +5403,6 @@ class ParamItem(AbstractModel):
5529
5403
  @property
5530
5404
  def NodeType(self):
5531
5405
  """节点类型, cn/dn
5532
- 注意:此字段可能返回 null,表示取不到有效值。
5533
5406
  :rtype: str
5534
5407
  """
5535
5408
  return self._NodeType
@@ -5541,7 +5414,6 @@ class ParamItem(AbstractModel):
5541
5414
  @property
5542
5415
  def NodeName(self):
5543
5416
  """节点名
5544
- 注意:此字段可能返回 null,表示取不到有效值。
5545
5417
  :rtype: str
5546
5418
  """
5547
5419
  return self._NodeName
@@ -5553,7 +5425,6 @@ class ParamItem(AbstractModel):
5553
5425
  @property
5554
5426
  def TotalCount(self):
5555
5427
  """参数个数
5556
- 注意:此字段可能返回 null,表示取不到有效值。
5557
5428
  :rtype: int
5558
5429
  """
5559
5430
  return self._TotalCount
@@ -5565,7 +5436,6 @@ class ParamItem(AbstractModel):
5565
5436
  @property
5566
5437
  def Details(self):
5567
5438
  """参数信息
5568
- 注意:此字段可能返回 null,表示取不到有效值。
5569
5439
  :rtype: list of ParamDetail
5570
5440
  """
5571
5441
  return self._Details
@@ -5603,10 +5473,8 @@ class Range(AbstractModel):
5603
5473
  def __init__(self):
5604
5474
  r"""
5605
5475
  :param _Min: 最小值
5606
- 注意:此字段可能返回 null,表示取不到有效值。
5607
5476
  :type Min: str
5608
5477
  :param _Max: 最大值
5609
- 注意:此字段可能返回 null,表示取不到有效值。
5610
5478
  :type Max: str
5611
5479
  """
5612
5480
  self._Min = None
@@ -5615,7 +5483,6 @@ class Range(AbstractModel):
5615
5483
  @property
5616
5484
  def Min(self):
5617
5485
  """最小值
5618
- 注意:此字段可能返回 null,表示取不到有效值。
5619
5486
  :rtype: str
5620
5487
  """
5621
5488
  return self._Min
@@ -5627,7 +5494,6 @@ class Range(AbstractModel):
5627
5494
  @property
5628
5495
  def Max(self):
5629
5496
  """最大值
5630
- 注意:此字段可能返回 null,表示取不到有效值。
5631
5497
  :rtype: str
5632
5498
  """
5633
5499
  return self._Max
@@ -5769,16 +5635,12 @@ class ResourceInfo(AbstractModel):
5769
5635
  def __init__(self):
5770
5636
  r"""
5771
5637
  :param _SpecName: 资源名称
5772
- 注意:此字段可能返回 null,表示取不到有效值。
5773
5638
  :type SpecName: str
5774
5639
  :param _Count: 资源数
5775
- 注意:此字段可能返回 null,表示取不到有效值。
5776
5640
  :type Count: int
5777
5641
  :param _DiskSpec: 磁盘信息
5778
- 注意:此字段可能返回 null,表示取不到有效值。
5779
5642
  :type DiskSpec: :class:`tencentcloud.cdwpg.v20201230.models.CBSSpecInfo`
5780
5643
  :param _Type: 节点类型,cn 或dn
5781
- 注意:此字段可能返回 null,表示取不到有效值。
5782
5644
  :type Type: str
5783
5645
  """
5784
5646
  self._SpecName = None
@@ -5789,7 +5651,6 @@ class ResourceInfo(AbstractModel):
5789
5651
  @property
5790
5652
  def SpecName(self):
5791
5653
  """资源名称
5792
- 注意:此字段可能返回 null,表示取不到有效值。
5793
5654
  :rtype: str
5794
5655
  """
5795
5656
  return self._SpecName
@@ -5801,7 +5662,6 @@ class ResourceInfo(AbstractModel):
5801
5662
  @property
5802
5663
  def Count(self):
5803
5664
  """资源数
5804
- 注意:此字段可能返回 null,表示取不到有效值。
5805
5665
  :rtype: int
5806
5666
  """
5807
5667
  return self._Count
@@ -5813,7 +5673,6 @@ class ResourceInfo(AbstractModel):
5813
5673
  @property
5814
5674
  def DiskSpec(self):
5815
5675
  """磁盘信息
5816
- 注意:此字段可能返回 null,表示取不到有效值。
5817
5676
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.CBSSpecInfo`
5818
5677
  """
5819
5678
  return self._DiskSpec
@@ -5825,7 +5684,6 @@ class ResourceInfo(AbstractModel):
5825
5684
  @property
5826
5685
  def Type(self):
5827
5686
  """节点类型,cn 或dn
5828
- 注意:此字段可能返回 null,表示取不到有效值。
5829
5687
  :rtype: str
5830
5688
  """
5831
5689
  return self._Type
@@ -6400,52 +6258,38 @@ class SimpleInstanceInfo(AbstractModel):
6400
6258
  def __init__(self):
6401
6259
  r"""
6402
6260
  :param _ID: ID
6403
- 注意:此字段可能返回 null,表示取不到有效值。
6404
6261
  :type ID: int
6405
6262
  :param _InstanceId: 集群Id
6406
- 注意:此字段可能返回 null,表示取不到有效值。
6407
6263
  :type InstanceId: str
6408
6264
  :param _InstanceName: 集群名字
6409
- 注意:此字段可能返回 null,表示取不到有效值。
6410
6265
  :type InstanceName: str
6411
6266
  :param _Version: 内核版本
6412
- 注意:此字段可能返回 null,表示取不到有效值。
6413
6267
  :type Version: str
6414
6268
  :param _Region: 地域
6415
- 注意:此字段可能返回 null,表示取不到有效值。
6416
6269
  :type Region: str
6417
6270
  :param _Zone: 地区
6418
- 注意:此字段可能返回 null,表示取不到有效值。
6419
6271
  :type Zone: str
6420
6272
  :param _UserVPCID: 私有网络
6421
- 注意:此字段可能返回 null,表示取不到有效值。
6422
6273
  :type UserVPCID: str
6423
6274
  :param _UserSubnetID: 子网
6424
- 注意:此字段可能返回 null,表示取不到有效值。
6425
6275
  :type UserSubnetID: str
6426
6276
  :param _CreateTime: 开始时间
6427
- 注意:此字段可能返回 null,表示取不到有效值。
6428
6277
  :type CreateTime: str
6429
6278
  :param _ExpireTime: 到期时间
6430
- 注意:此字段可能返回 null,表示取不到有效值。
6431
6279
  :type ExpireTime: str
6432
6280
  :param _AccessInfo: 访问地址
6433
6281
  注意:此字段可能返回 null,表示取不到有效值。
6434
6282
  :type AccessInfo: str
6435
6283
  :param _RenewFlag: 自动续费开关,0为不自动续费,1为自动续费
6436
- 注意:此字段可能返回 null,表示取不到有效值。
6437
6284
  :type RenewFlag: int
6438
6285
  :param _ChargeProperties: 计费方式
6439
- 注意:此字段可能返回 null,表示取不到有效值。
6440
6286
  :type ChargeProperties: :class:`tencentcloud.cdwpg.v20201230.models.ChargeProperties`
6441
6287
  :param _Resources: 资源集合
6442
- 注意:此字段可能返回 null,表示取不到有效值。
6443
6288
  :type Resources: list of ResourceInfo
6444
6289
  :param _Tags: 标签列表
6445
6290
  注意:此字段可能返回 null,表示取不到有效值。
6446
6291
  :type Tags: list of Tag
6447
6292
  :param _Status: 集群状态
6448
- 注意:此字段可能返回 null,表示取不到有效值。
6449
6293
  :type Status: int
6450
6294
  """
6451
6295
  self._ID = None
@@ -6468,7 +6312,6 @@ class SimpleInstanceInfo(AbstractModel):
6468
6312
  @property
6469
6313
  def ID(self):
6470
6314
  """ID
6471
- 注意:此字段可能返回 null,表示取不到有效值。
6472
6315
  :rtype: int
6473
6316
  """
6474
6317
  return self._ID
@@ -6480,7 +6323,6 @@ class SimpleInstanceInfo(AbstractModel):
6480
6323
  @property
6481
6324
  def InstanceId(self):
6482
6325
  """集群Id
6483
- 注意:此字段可能返回 null,表示取不到有效值。
6484
6326
  :rtype: str
6485
6327
  """
6486
6328
  return self._InstanceId
@@ -6492,7 +6334,6 @@ class SimpleInstanceInfo(AbstractModel):
6492
6334
  @property
6493
6335
  def InstanceName(self):
6494
6336
  """集群名字
6495
- 注意:此字段可能返回 null,表示取不到有效值。
6496
6337
  :rtype: str
6497
6338
  """
6498
6339
  return self._InstanceName
@@ -6504,7 +6345,6 @@ class SimpleInstanceInfo(AbstractModel):
6504
6345
  @property
6505
6346
  def Version(self):
6506
6347
  """内核版本
6507
- 注意:此字段可能返回 null,表示取不到有效值。
6508
6348
  :rtype: str
6509
6349
  """
6510
6350
  return self._Version
@@ -6516,7 +6356,6 @@ class SimpleInstanceInfo(AbstractModel):
6516
6356
  @property
6517
6357
  def Region(self):
6518
6358
  """地域
6519
- 注意:此字段可能返回 null,表示取不到有效值。
6520
6359
  :rtype: str
6521
6360
  """
6522
6361
  return self._Region
@@ -6528,7 +6367,6 @@ class SimpleInstanceInfo(AbstractModel):
6528
6367
  @property
6529
6368
  def Zone(self):
6530
6369
  """地区
6531
- 注意:此字段可能返回 null,表示取不到有效值。
6532
6370
  :rtype: str
6533
6371
  """
6534
6372
  return self._Zone
@@ -6540,7 +6378,6 @@ class SimpleInstanceInfo(AbstractModel):
6540
6378
  @property
6541
6379
  def UserVPCID(self):
6542
6380
  """私有网络
6543
- 注意:此字段可能返回 null,表示取不到有效值。
6544
6381
  :rtype: str
6545
6382
  """
6546
6383
  return self._UserVPCID
@@ -6552,7 +6389,6 @@ class SimpleInstanceInfo(AbstractModel):
6552
6389
  @property
6553
6390
  def UserSubnetID(self):
6554
6391
  """子网
6555
- 注意:此字段可能返回 null,表示取不到有效值。
6556
6392
  :rtype: str
6557
6393
  """
6558
6394
  return self._UserSubnetID
@@ -6564,7 +6400,6 @@ class SimpleInstanceInfo(AbstractModel):
6564
6400
  @property
6565
6401
  def CreateTime(self):
6566
6402
  """开始时间
6567
- 注意:此字段可能返回 null,表示取不到有效值。
6568
6403
  :rtype: str
6569
6404
  """
6570
6405
  return self._CreateTime
@@ -6576,7 +6411,6 @@ class SimpleInstanceInfo(AbstractModel):
6576
6411
  @property
6577
6412
  def ExpireTime(self):
6578
6413
  """到期时间
6579
- 注意:此字段可能返回 null,表示取不到有效值。
6580
6414
  :rtype: str
6581
6415
  """
6582
6416
  return self._ExpireTime
@@ -6600,7 +6434,6 @@ class SimpleInstanceInfo(AbstractModel):
6600
6434
  @property
6601
6435
  def RenewFlag(self):
6602
6436
  """自动续费开关,0为不自动续费,1为自动续费
6603
- 注意:此字段可能返回 null,表示取不到有效值。
6604
6437
  :rtype: int
6605
6438
  """
6606
6439
  return self._RenewFlag
@@ -6612,7 +6445,6 @@ class SimpleInstanceInfo(AbstractModel):
6612
6445
  @property
6613
6446
  def ChargeProperties(self):
6614
6447
  """计费方式
6615
- 注意:此字段可能返回 null,表示取不到有效值。
6616
6448
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.ChargeProperties`
6617
6449
  """
6618
6450
  return self._ChargeProperties
@@ -6624,7 +6456,6 @@ class SimpleInstanceInfo(AbstractModel):
6624
6456
  @property
6625
6457
  def Resources(self):
6626
6458
  """资源集合
6627
- 注意:此字段可能返回 null,表示取不到有效值。
6628
6459
  :rtype: list of ResourceInfo
6629
6460
  """
6630
6461
  return self._Resources
@@ -6648,7 +6479,6 @@ class SimpleInstanceInfo(AbstractModel):
6648
6479
  @property
6649
6480
  def Status(self):
6650
6481
  """集群状态
6651
- 注意:此字段可能返回 null,表示取不到有效值。
6652
6482
  :rtype: int
6653
6483
  """
6654
6484
  return self._Status
@@ -6936,22 +6766,17 @@ class UpgradeItem(AbstractModel):
6936
6766
  def __init__(self):
6937
6767
  r"""
6938
6768
  :param _TaskName: 任务名称
6939
- 注意:此字段可能返回 null,表示取不到有效值。
6940
6769
  :type TaskName: str
6941
6770
  :param _SourceVersion: 原有内核版本
6942
- 注意:此字段可能返回 null,表示取不到有效值。
6943
6771
  :type SourceVersion: str
6944
6772
  :param _TargetVersion: 目标内核版本
6945
- 注意:此字段可能返回 null,表示取不到有效值。
6946
6773
  :type TargetVersion: str
6947
6774
  :param _CreateTime: 任务创建时间
6948
- 注意:此字段可能返回 null,表示取不到有效值。
6949
6775
  :type CreateTime: str
6950
6776
  :param _EndTime: 任务结束时间
6951
6777
  注意:此字段可能返回 null,表示取不到有效值。
6952
6778
  :type EndTime: str
6953
6779
  :param _Status: 任务完成状态
6954
- 注意:此字段可能返回 null,表示取不到有效值。
6955
6780
  :type Status: str
6956
6781
  :param _OperateUin: 操作者
6957
6782
  注意:此字段可能返回 null,表示取不到有效值。
@@ -6968,7 +6793,6 @@ class UpgradeItem(AbstractModel):
6968
6793
  @property
6969
6794
  def TaskName(self):
6970
6795
  """任务名称
6971
- 注意:此字段可能返回 null,表示取不到有效值。
6972
6796
  :rtype: str
6973
6797
  """
6974
6798
  return self._TaskName
@@ -6980,7 +6804,6 @@ class UpgradeItem(AbstractModel):
6980
6804
  @property
6981
6805
  def SourceVersion(self):
6982
6806
  """原有内核版本
6983
- 注意:此字段可能返回 null,表示取不到有效值。
6984
6807
  :rtype: str
6985
6808
  """
6986
6809
  return self._SourceVersion
@@ -6992,7 +6815,6 @@ class UpgradeItem(AbstractModel):
6992
6815
  @property
6993
6816
  def TargetVersion(self):
6994
6817
  """目标内核版本
6995
- 注意:此字段可能返回 null,表示取不到有效值。
6996
6818
  :rtype: str
6997
6819
  """
6998
6820
  return self._TargetVersion
@@ -7004,7 +6826,6 @@ class UpgradeItem(AbstractModel):
7004
6826
  @property
7005
6827
  def CreateTime(self):
7006
6828
  """任务创建时间
7007
- 注意:此字段可能返回 null,表示取不到有效值。
7008
6829
  :rtype: str
7009
6830
  """
7010
6831
  return self._CreateTime
@@ -7028,7 +6849,6 @@ class UpgradeItem(AbstractModel):
7028
6849
  @property
7029
6850
  def Status(self):
7030
6851
  """任务完成状态
7031
- 注意:此字段可能返回 null,表示取不到有效值。
7032
6852
  :rtype: str
7033
6853
  """
7034
6854
  return self._Status
@@ -7076,10 +6896,8 @@ class ValueRange(AbstractModel):
7076
6896
  def __init__(self):
7077
6897
  r"""
7078
6898
  :param _Type: 参数类型,可以为 enum,string,section; 其中enum表示枚举,类似: utf8,latin1,gbk; string表示返回的参数值是字符串; section表示返回的参数值是一个取值范围,类似:[4-8]
7079
- 注意:此字段可能返回 null,表示取不到有效值。
7080
6899
  :type Type: str
7081
6900
  :param _Range: type 取section的时候,返回的参数值
7082
- 注意:此字段可能返回 null,表示取不到有效值。
7083
6901
  :type Range: :class:`tencentcloud.cdwpg.v20201230.models.Range`
7084
6902
  :param _Enum: type 取enum的时候,返回参数值
7085
6903
  注意:此字段可能返回 null,表示取不到有效值。
@@ -7096,7 +6914,6 @@ class ValueRange(AbstractModel):
7096
6914
  @property
7097
6915
  def Type(self):
7098
6916
  """参数类型,可以为 enum,string,section; 其中enum表示枚举,类似: utf8,latin1,gbk; string表示返回的参数值是字符串; section表示返回的参数值是一个取值范围,类似:[4-8]
7099
- 注意:此字段可能返回 null,表示取不到有效值。
7100
6917
  :rtype: str
7101
6918
  """
7102
6919
  return self._Type
@@ -7108,7 +6925,6 @@ class ValueRange(AbstractModel):
7108
6925
  @property
7109
6926
  def Range(self):
7110
6927
  """type 取section的时候,返回的参数值
7111
- 注意:此字段可能返回 null,表示取不到有效值。
7112
6928
  :rtype: :class:`tencentcloud.cdwpg.v20201230.models.Range`
7113
6929
  """
7114
6930
  return self._Range