tencentcloud-sdk-python 3.0.1290__py2.py3-none-any.whl → 3.0.1292__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 (63) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apm/v20210622/apm_client.py +5 -5
  3. tencentcloud/apm/v20210622/errorcodes.py +3 -0
  4. tencentcloud/apm/v20210622/models.py +30 -30
  5. tencentcloud/autoscaling/v20180419/models.py +21 -2
  6. tencentcloud/batch/v20170312/models.py +2 -2
  7. tencentcloud/billing/v20180709/models.py +30 -0
  8. tencentcloud/cdb/v20170320/cdb_client.py +1 -1
  9. tencentcloud/cdb/v20170320/models.py +8 -468
  10. tencentcloud/cdwdoris/v20211228/models.py +64 -0
  11. tencentcloud/cfg/v20210820/models.py +15 -0
  12. tencentcloud/cls/v20201016/models.py +2 -2
  13. tencentcloud/cmq/v20190304/cmq_client.py +30 -10
  14. tencentcloud/cmq/v20190304/models.py +106 -106
  15. tencentcloud/csip/v20221121/csip_client.py +115 -0
  16. tencentcloud/csip/v20221121/models.py +10798 -8153
  17. tencentcloud/cvm/v20170312/cvm_client.py +0 -115
  18. tencentcloud/cvm/v20170312/errorcodes.py +3 -9
  19. tencentcloud/cvm/v20170312/models.py +7379 -8874
  20. tencentcloud/cwp/v20180228/cwp_client.py +0 -25
  21. tencentcloud/cwp/v20180228/models.py +0 -49
  22. tencentcloud/cynosdb/v20190107/cynosdb_client.py +3 -3
  23. tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
  24. tencentcloud/cynosdb/v20190107/models.py +8 -32
  25. tencentcloud/dts/v20180330/models.py +2 -2
  26. tencentcloud/dts/v20211206/models.py +17 -0
  27. tencentcloud/emr/v20190103/emr_client.py +207 -0
  28. tencentcloud/emr/v20190103/errorcodes.py +15 -0
  29. tencentcloud/emr/v20190103/models.py +2175 -248
  30. tencentcloud/ess/v20201111/models.py +58 -38
  31. tencentcloud/essbasic/v20210526/models.py +33 -20
  32. tencentcloud/faceid/v20180301/models.py +4 -4
  33. tencentcloud/iai/v20200303/errorcodes.py +15 -0
  34. tencentcloud/iai/v20200303/iai_client.py +28 -0
  35. tencentcloud/iai/v20200303/models.py +203 -0
  36. tencentcloud/iotexplorer/v20190423/models.py +15 -0
  37. tencentcloud/keewidb/v20220308/models.py +2 -2
  38. tencentcloud/live/v20180801/models.py +111 -56
  39. tencentcloud/mna/v20210119/mna_client.py +9 -3
  40. tencentcloud/mps/v20190612/models.py +60 -0
  41. tencentcloud/oceanus/v20190422/errorcodes.py +3 -0
  42. tencentcloud/oceanus/v20190422/models.py +571 -2
  43. tencentcloud/ocr/v20181119/models.py +75 -0
  44. tencentcloud/sqlserver/v20180328/models.py +185 -90
  45. tencentcloud/sqlserver/v20180328/sqlserver_client.py +1 -1
  46. tencentcloud/ssl/v20191205/models.py +6 -6
  47. tencentcloud/tbaas/v20180416/tbaas_client.py +2 -2
  48. tencentcloud/tcr/v20190924/models.py +15 -0
  49. tencentcloud/tdmq/v20200217/models.py +30 -0
  50. tencentcloud/tem/v20210701/models.py +2 -2
  51. tencentcloud/tem/v20210701/tem_client.py +3 -1
  52. tencentcloud/tke/v20180525/models.py +21 -6
  53. tencentcloud/tse/v20201207/models.py +68 -0
  54. tencentcloud/tts/v20190823/models.py +2 -2
  55. tencentcloud/vpc/v20170312/models.py +479 -0
  56. tencentcloud/vpc/v20170312/vpc_client.py +69 -0
  57. tencentcloud/waf/v20180125/models.py +546 -4
  58. tencentcloud/waf/v20180125/waf_client.py +70 -1
  59. {tencentcloud_sdk_python-3.0.1290.dist-info → tencentcloud_sdk_python-3.0.1292.dist-info}/METADATA +1 -1
  60. {tencentcloud_sdk_python-3.0.1290.dist-info → tencentcloud_sdk_python-3.0.1292.dist-info}/RECORD +63 -63
  61. {tencentcloud_sdk_python-3.0.1290.dist-info → tencentcloud_sdk_python-3.0.1292.dist-info}/LICENSE +0 -0
  62. {tencentcloud_sdk_python-3.0.1290.dist-info → tencentcloud_sdk_python-3.0.1292.dist-info}/WHEEL +0 -0
  63. {tencentcloud_sdk_python-3.0.1290.dist-info → tencentcloud_sdk_python-3.0.1292.dist-info}/top_level.txt +0 -0
@@ -41,6 +41,8 @@ class AccountCreateInfo(AbstractModel):
41
41
  :type AccountType: str
42
42
  :param _IsCam: 是否开启CAM验证
43
43
  :type IsCam: bool
44
+ :param _EncryptedVersion: 加密密钥版本号,0表示不使用加密
45
+ :type EncryptedVersion: int
44
46
  """
45
47
  self._UserName = None
46
48
  self._Password = None
@@ -50,6 +52,7 @@ class AccountCreateInfo(AbstractModel):
50
52
  self._Authentication = None
51
53
  self._AccountType = None
52
54
  self._IsCam = None
55
+ self._EncryptedVersion = None
53
56
 
54
57
  @property
55
58
  def UserName(self):
@@ -139,6 +142,17 @@ class AccountCreateInfo(AbstractModel):
139
142
  def IsCam(self, IsCam):
140
143
  self._IsCam = IsCam
141
144
 
145
+ @property
146
+ def EncryptedVersion(self):
147
+ """加密密钥版本号,0表示不使用加密
148
+ :rtype: int
149
+ """
150
+ return self._EncryptedVersion
151
+
152
+ @EncryptedVersion.setter
153
+ def EncryptedVersion(self, EncryptedVersion):
154
+ self._EncryptedVersion = EncryptedVersion
155
+
142
156
 
143
157
  def _deserialize(self, params):
144
158
  self._UserName = params.get("UserName")
@@ -154,6 +168,7 @@ class AccountCreateInfo(AbstractModel):
154
168
  self._Authentication = params.get("Authentication")
155
169
  self._AccountType = params.get("AccountType")
156
170
  self._IsCam = params.get("IsCam")
171
+ self._EncryptedVersion = params.get("EncryptedVersion")
157
172
  memeber_set = set(params.keys())
158
173
  for name, value in vars(self).items():
159
174
  property_name = name[1:]
@@ -396,9 +411,12 @@ class AccountPassword(AbstractModel):
396
411
  :type UserName: str
397
412
  :param _Password: 密码
398
413
  :type Password: str
414
+ :param _EncryptedVersion: 加密密钥版本号,0表示不使用加密
415
+ :type EncryptedVersion: int
399
416
  """
400
417
  self._UserName = None
401
418
  self._Password = None
419
+ self._EncryptedVersion = None
402
420
 
403
421
  @property
404
422
  def UserName(self):
@@ -422,10 +440,22 @@ class AccountPassword(AbstractModel):
422
440
  def Password(self, Password):
423
441
  self._Password = Password
424
442
 
443
+ @property
444
+ def EncryptedVersion(self):
445
+ """加密密钥版本号,0表示不使用加密
446
+ :rtype: int
447
+ """
448
+ return self._EncryptedVersion
449
+
450
+ @EncryptedVersion.setter
451
+ def EncryptedVersion(self, EncryptedVersion):
452
+ self._EncryptedVersion = EncryptedVersion
453
+
425
454
 
426
455
  def _deserialize(self, params):
427
456
  self._UserName = params.get("UserName")
428
457
  self._Password = params.get("Password")
458
+ self._EncryptedVersion = params.get("EncryptedVersion")
429
459
  memeber_set = set(params.keys())
430
460
  for name, value in vars(self).items():
431
461
  property_name = name[1:]
@@ -1487,7 +1517,6 @@ class CheckItem(AbstractModel):
1487
1517
  def __init__(self):
1488
1518
  r"""
1489
1519
  :param _CheckName: 检查项目名称,CK_CPU-变配后CPU风险检查;CK_MASTER_STORAGE-只读副本变配下,只读副本磁盘空间不小于主实例空间检查;CK_MEMORY-变配后内存风险检查;CK_STORAGE-变配后磁盘空间风险检查;CK_UPGRATE-变配是否需要迁移检查;
1490
- 注意:此字段可能返回 null,表示取不到有效值。
1491
1520
  :type CheckName: str
1492
1521
  :param _CurrentValue: 检查项目返回值,CK_CPU-当前CPU近7天最大的使用率(%) ;CK_MASTER_STORAGE-主实例的磁盘空间(GB);CK_MEMORY-当前内存近7天最大的使用值(GB);
1493
1522
  CK_STORAGE-当前磁盘近7天最大的使用值(GB);CK_UPGRATE- 当前变配检查是否需要迁移,MIGRATE需要迁移变配,LOCAL本地变配;
@@ -1511,7 +1540,6 @@ CK_STORAGE-当前磁盘近7天最大的使用值(GB);CK_UPGRATE- 当前变
1511
1540
  @property
1512
1541
  def CheckName(self):
1513
1542
  """检查项目名称,CK_CPU-变配后CPU风险检查;CK_MASTER_STORAGE-只读副本变配下,只读副本磁盘空间不小于主实例空间检查;CK_MEMORY-变配后内存风险检查;CK_STORAGE-变配后磁盘空间风险检查;CK_UPGRATE-变配是否需要迁移检查;
1514
- 注意:此字段可能返回 null,表示取不到有效值。
1515
1543
  :rtype: str
1516
1544
  """
1517
1545
  return self._CheckName
@@ -3023,10 +3051,8 @@ class CreateBusinessDBInstancesResponse(AbstractModel):
3023
3051
  :param _DealName: 订单名称
3024
3052
  :type DealName: str
3025
3053
  :param _FlowId: 流程ID
3026
- 注意:此字段可能返回 null,表示取不到有效值。
3027
3054
  :type FlowId: int
3028
3055
  :param _InstanceIdSet: 实例ID集合
3029
- 注意:此字段可能返回 null,表示取不到有效值。
3030
3056
  :type InstanceIdSet: list of str
3031
3057
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3032
3058
  :type RequestId: str
@@ -3050,7 +3076,6 @@ class CreateBusinessDBInstancesResponse(AbstractModel):
3050
3076
  @property
3051
3077
  def FlowId(self):
3052
3078
  """流程ID
3053
- 注意:此字段可能返回 null,表示取不到有效值。
3054
3079
  :rtype: int
3055
3080
  """
3056
3081
  return self._FlowId
@@ -3062,7 +3087,6 @@ class CreateBusinessDBInstancesResponse(AbstractModel):
3062
3087
  @property
3063
3088
  def InstanceIdSet(self):
3064
3089
  """实例ID集合
3065
- 注意:此字段可能返回 null,表示取不到有效值。
3066
3090
  :rtype: list of str
3067
3091
  """
3068
3092
  return self._InstanceIdSet
@@ -6156,7 +6180,7 @@ class DBInstance(AbstractModel):
6156
6180
  :type VersionName: str
6157
6181
  :param _RenewFlag: 实例续费标记,0-正常续费,1-自动续费,2-到期不续费
6158
6182
  :type RenewFlag: int
6159
- :param _Model: 实例高可用, 1-双机高可用,2-单机,3-跨可用区,4-集群跨可用区,5-集群,9-自研机房
6183
+ :param _Model: 实例高可用, 1-双机高可用,2-单机,3-跨可用区,4-集群跨可用区,5-集群,6-多节点集群,7-多节点集群跨可用区,9-自研机房
6160
6184
  :type Model: int
6161
6185
  :param _Region: 实例所在地域名称,如 ap-guangzhou
6162
6186
  :type Region: str
@@ -6181,25 +6205,19 @@ class DBInstance(AbstractModel):
6181
6205
  :param _UniqSubnetId: 实例所属子网的唯一字符串ID,格式如: subnet-xxx,基础网络时为空字符串
6182
6206
  :type UniqSubnetId: str
6183
6207
  :param _IsolateOperator: 实例隔离操作
6184
- 注意:此字段可能返回 null,表示取不到有效值。
6185
6208
  :type IsolateOperator: str
6186
6209
  :param _SubFlag: 发布订阅标识,SUB-订阅实例,PUB-发布实例,空值-没有发布订阅的普通实例
6187
- 注意:此字段可能返回 null,表示取不到有效值。
6188
6210
  :type SubFlag: str
6189
6211
  :param _ROFlag: 只读标识,RO-只读实例,MASTER-有RO实例的主实例,空值-没有只读组的非RO实例
6190
- 注意:此字段可能返回 null,表示取不到有效值。
6191
6212
  :type ROFlag: str
6192
6213
  :param _HAFlag: 容灾类型,MIRROR-镜像,ALWAYSON-AlwaysOn, SINGLE-单例
6193
- 注意:此字段可能返回 null,表示取不到有效值。
6194
6214
  :type HAFlag: str
6195
6215
  :param _ResourceTags: 实例绑定的标签列表
6196
6216
  注意:此字段可能返回 null,表示取不到有效值。
6197
6217
  :type ResourceTags: list of ResourceTag
6198
6218
  :param _BackupModel: 备份模式,master_pkg-主节点打包备份(默认) ;master_no_pkg-主节点不打包备份;slave_pkg-从节点打包备份(always on集群有效);slave_no_pkg-从节点不打包备份(always on集群有效);只读副本对该值无效。
6199
- 注意:此字段可能返回 null,表示取不到有效值。
6200
6219
  :type BackupModel: str
6201
6220
  :param _InstanceNote: 实例备份信息
6202
- 注意:此字段可能返回 null,表示取不到有效值。
6203
6221
  :type InstanceNote: str
6204
6222
  :param _BackupCycle: 备份周期
6205
6223
  :type BackupCycle: list of int
@@ -6207,7 +6225,8 @@ class DBInstance(AbstractModel):
6207
6225
  :type BackupCycleType: str
6208
6226
  :param _BackupSaveDays: 数据(日志)备份保留时间
6209
6227
  :type BackupSaveDays: int
6210
- :param _InstanceType: 实例类型 HA-高可用 RO-只读实例 SI-基础版 BI-商业智能服务
6228
+ :param _InstanceType: 实例类型 HA-高可用,RO-只读实例,SI-基础版,BI-商业智能服务,cvmHA-云盘高可用,cvmRO-云盘只读实例,MultiHA-多节点,cvmMultiHA-云盘多节点
6229
+
6211
6230
  :type InstanceType: str
6212
6231
  :param _CrossRegions: 跨地域备份目的地域,如果为空,则表示未开启跨地域备份
6213
6232
  :type CrossRegions: list of str
@@ -6225,15 +6244,14 @@ class DBInstance(AbstractModel):
6225
6244
  :type TimeZone: str
6226
6245
  :param _IsDrZone: 是否跨AZ
6227
6246
  :type IsDrZone: bool
6228
- :param _SlaveZones: 备可用区信息
6229
- 注意:此字段可能返回 null,表示取不到有效值。
6247
+ :param _SlaveZones: 双节点实例备可用区信息
6230
6248
  :type SlaveZones: :class:`tencentcloud.sqlserver.v20180328.models.SlaveZones`
6231
6249
  :param _Architecture: 架构标识,SINGLE-单节点 DOUBLE-双节点
6232
- 注意:此字段可能返回 null,表示取不到有效值。
6233
6250
  :type Architecture: str
6234
6251
  :param _Style: 类型标识,EXCLUSIVE-独享型,SHARED-共享型
6235
- 注意:此字段可能返回 null,表示取不到有效值。
6236
6252
  :type Style: str
6253
+ :param _MultiSlaveZones: 多节点实例备可用区信息
6254
+ :type MultiSlaveZones: list of SlaveZones
6237
6255
  """
6238
6256
  self._InstanceId = None
6239
6257
  self._Name = None
@@ -6289,6 +6307,7 @@ class DBInstance(AbstractModel):
6289
6307
  self._SlaveZones = None
6290
6308
  self._Architecture = None
6291
6309
  self._Style = None
6310
+ self._MultiSlaveZones = None
6292
6311
 
6293
6312
  @property
6294
6313
  def InstanceId(self):
@@ -6512,7 +6531,7 @@ class DBInstance(AbstractModel):
6512
6531
 
6513
6532
  @property
6514
6533
  def Model(self):
6515
- """实例高可用, 1-双机高可用,2-单机,3-跨可用区,4-集群跨可用区,5-集群,9-自研机房
6534
+ """实例高可用, 1-双机高可用,2-单机,3-跨可用区,4-集群跨可用区,5-集群,6-多节点集群,7-多节点集群跨可用区,9-自研机房
6516
6535
  :rtype: int
6517
6536
  """
6518
6537
  return self._Model
@@ -6645,7 +6664,6 @@ class DBInstance(AbstractModel):
6645
6664
  @property
6646
6665
  def IsolateOperator(self):
6647
6666
  """实例隔离操作
6648
- 注意:此字段可能返回 null,表示取不到有效值。
6649
6667
  :rtype: str
6650
6668
  """
6651
6669
  return self._IsolateOperator
@@ -6657,7 +6675,6 @@ class DBInstance(AbstractModel):
6657
6675
  @property
6658
6676
  def SubFlag(self):
6659
6677
  """发布订阅标识,SUB-订阅实例,PUB-发布实例,空值-没有发布订阅的普通实例
6660
- 注意:此字段可能返回 null,表示取不到有效值。
6661
6678
  :rtype: str
6662
6679
  """
6663
6680
  return self._SubFlag
@@ -6669,7 +6686,6 @@ class DBInstance(AbstractModel):
6669
6686
  @property
6670
6687
  def ROFlag(self):
6671
6688
  """只读标识,RO-只读实例,MASTER-有RO实例的主实例,空值-没有只读组的非RO实例
6672
- 注意:此字段可能返回 null,表示取不到有效值。
6673
6689
  :rtype: str
6674
6690
  """
6675
6691
  return self._ROFlag
@@ -6681,7 +6697,6 @@ class DBInstance(AbstractModel):
6681
6697
  @property
6682
6698
  def HAFlag(self):
6683
6699
  """容灾类型,MIRROR-镜像,ALWAYSON-AlwaysOn, SINGLE-单例
6684
- 注意:此字段可能返回 null,表示取不到有效值。
6685
6700
  :rtype: str
6686
6701
  """
6687
6702
  return self._HAFlag
@@ -6705,7 +6720,6 @@ class DBInstance(AbstractModel):
6705
6720
  @property
6706
6721
  def BackupModel(self):
6707
6722
  """备份模式,master_pkg-主节点打包备份(默认) ;master_no_pkg-主节点不打包备份;slave_pkg-从节点打包备份(always on集群有效);slave_no_pkg-从节点不打包备份(always on集群有效);只读副本对该值无效。
6708
- 注意:此字段可能返回 null,表示取不到有效值。
6709
6723
  :rtype: str
6710
6724
  """
6711
6725
  return self._BackupModel
@@ -6717,7 +6731,6 @@ class DBInstance(AbstractModel):
6717
6731
  @property
6718
6732
  def InstanceNote(self):
6719
6733
  """实例备份信息
6720
- 注意:此字段可能返回 null,表示取不到有效值。
6721
6734
  :rtype: str
6722
6735
  """
6723
6736
  return self._InstanceNote
@@ -6761,7 +6774,8 @@ class DBInstance(AbstractModel):
6761
6774
 
6762
6775
  @property
6763
6776
  def InstanceType(self):
6764
- """实例类型 HA-高可用 RO-只读实例 SI-基础版 BI-商业智能服务
6777
+ """实例类型 HA-高可用,RO-只读实例,SI-基础版,BI-商业智能服务,cvmHA-云盘高可用,cvmRO-云盘只读实例,MultiHA-多节点,cvmMultiHA-云盘多节点
6778
+
6765
6779
  :rtype: str
6766
6780
  """
6767
6781
  return self._InstanceType
@@ -6860,8 +6874,7 @@ class DBInstance(AbstractModel):
6860
6874
 
6861
6875
  @property
6862
6876
  def SlaveZones(self):
6863
- """备可用区信息
6864
- 注意:此字段可能返回 null,表示取不到有效值。
6877
+ """双节点实例备可用区信息
6865
6878
  :rtype: :class:`tencentcloud.sqlserver.v20180328.models.SlaveZones`
6866
6879
  """
6867
6880
  return self._SlaveZones
@@ -6873,7 +6886,6 @@ class DBInstance(AbstractModel):
6873
6886
  @property
6874
6887
  def Architecture(self):
6875
6888
  """架构标识,SINGLE-单节点 DOUBLE-双节点
6876
- 注意:此字段可能返回 null,表示取不到有效值。
6877
6889
  :rtype: str
6878
6890
  """
6879
6891
  return self._Architecture
@@ -6885,7 +6897,6 @@ class DBInstance(AbstractModel):
6885
6897
  @property
6886
6898
  def Style(self):
6887
6899
  """类型标识,EXCLUSIVE-独享型,SHARED-共享型
6888
- 注意:此字段可能返回 null,表示取不到有效值。
6889
6900
  :rtype: str
6890
6901
  """
6891
6902
  return self._Style
@@ -6894,6 +6905,17 @@ class DBInstance(AbstractModel):
6894
6905
  def Style(self, Style):
6895
6906
  self._Style = Style
6896
6907
 
6908
+ @property
6909
+ def MultiSlaveZones(self):
6910
+ """多节点实例备可用区信息
6911
+ :rtype: list of SlaveZones
6912
+ """
6913
+ return self._MultiSlaveZones
6914
+
6915
+ @MultiSlaveZones.setter
6916
+ def MultiSlaveZones(self, MultiSlaveZones):
6917
+ self._MultiSlaveZones = MultiSlaveZones
6918
+
6897
6919
 
6898
6920
  def _deserialize(self, params):
6899
6921
  self._InstanceId = params.get("InstanceId")
@@ -6957,6 +6979,12 @@ class DBInstance(AbstractModel):
6957
6979
  self._SlaveZones._deserialize(params.get("SlaveZones"))
6958
6980
  self._Architecture = params.get("Architecture")
6959
6981
  self._Style = params.get("Style")
6982
+ if params.get("MultiSlaveZones") is not None:
6983
+ self._MultiSlaveZones = []
6984
+ for item in params.get("MultiSlaveZones"):
6985
+ obj = SlaveZones()
6986
+ obj._deserialize(item)
6987
+ self._MultiSlaveZones.append(obj)
6960
6988
  memeber_set = set(params.keys())
6961
6989
  for name, value in vars(self).items():
6962
6990
  property_name = name[1:]
@@ -7456,7 +7484,6 @@ class DbNormalDetail(AbstractModel):
7456
7484
  :param _CreateTime: 数据库创建时间
7457
7485
  :type CreateTime: str
7458
7486
  :param _IsFullTextEnabled: 是否全文启用 0:否 1:是
7459
- 注意:此字段可能返回 null,表示取不到有效值。
7460
7487
  :type IsFullTextEnabled: str
7461
7488
  """
7462
7489
  self._IsSubscribed = None
@@ -7696,7 +7723,6 @@ class DbNormalDetail(AbstractModel):
7696
7723
  @property
7697
7724
  def IsFullTextEnabled(self):
7698
7725
  """是否全文启用 0:否 1:是
7699
- 注意:此字段可能返回 null,表示取不到有效值。
7700
7726
  :rtype: str
7701
7727
  """
7702
7728
  return self._IsFullTextEnabled
@@ -14263,7 +14289,6 @@ class DescribeInquiryPriceParameterResponse(AbstractModel):
14263
14289
  def __init__(self):
14264
14290
  r"""
14265
14291
  :param _Parameter: 计费参数
14266
- 注意:此字段可能返回 null,表示取不到有效值。
14267
14292
  :type Parameter: str
14268
14293
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14269
14294
  :type RequestId: str
@@ -14274,7 +14299,6 @@ class DescribeInquiryPriceParameterResponse(AbstractModel):
14274
14299
  @property
14275
14300
  def Parameter(self):
14276
14301
  """计费参数
14277
- 注意:此字段可能返回 null,表示取不到有效值。
14278
14302
  :rtype: str
14279
14303
  """
14280
14304
  return self._Parameter
@@ -14771,7 +14795,7 @@ class DescribeInstanceTradeParameterRequest(AbstractModel):
14771
14795
  :type Memory: int
14772
14796
  :param _Storage: 实例磁盘大小,单位GB
14773
14797
  :type Storage: int
14774
- :param _InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,BI-商业智能服务,cvmHA-新版高可用,cvmRO-新版只读
14798
+ :param _InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,BI-商业智能服务,cvmHA-新版高可用,cvmRO-新版只读,MultiHA-多节点,cvmMultiHA-云盘多节点
14775
14799
  :type InstanceType: str
14776
14800
  :param _MachineType: 购买实例的宿主机磁盘类型,CLOUD_HSSD-云服务器加强型SSD云盘,CLOUD_TSSD-云服务器极速型SSD云盘,CLOUD_BSSD-云服务器通用型SSD云盘
14777
14801
  :type MachineType: str
@@ -14807,6 +14831,10 @@ class DescribeInstanceTradeParameterRequest(AbstractModel):
14807
14831
  :type TimeZone: str
14808
14832
  :param _Collation: 系统字符集排序规则,默认:Chinese_PRC_CI_AS
14809
14833
  :type Collation: str
14834
+ :param _MultiNodes: 是否多节点架构,默认值为false
14835
+ :type MultiNodes: bool
14836
+ :param _DrZones: 备节点可用区,默认为空。如果是多节点架构时必传,并且当MultiZones=true时备节点可用区不能全部相同。备机可用区集合最小为2个,最大不超过5个。
14837
+ :type DrZones: list of str
14810
14838
  """
14811
14839
  self._Zone = None
14812
14840
  self._Cpu = None
@@ -14830,6 +14858,8 @@ class DescribeInstanceTradeParameterRequest(AbstractModel):
14830
14858
  self._ResourceTags = None
14831
14859
  self._TimeZone = None
14832
14860
  self._Collation = None
14861
+ self._MultiNodes = None
14862
+ self._DrZones = None
14833
14863
 
14834
14864
  @property
14835
14865
  def Zone(self):
@@ -14877,7 +14907,7 @@ class DescribeInstanceTradeParameterRequest(AbstractModel):
14877
14907
 
14878
14908
  @property
14879
14909
  def InstanceType(self):
14880
- """购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,BI-商业智能服务,cvmHA-新版高可用,cvmRO-新版只读
14910
+ """购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,BI-商业智能服务,cvmHA-新版高可用,cvmRO-新版只读,MultiHA-多节点,cvmMultiHA-云盘多节点
14881
14911
  :rtype: str
14882
14912
  """
14883
14913
  return self._InstanceType
@@ -15073,6 +15103,28 @@ class DescribeInstanceTradeParameterRequest(AbstractModel):
15073
15103
  def Collation(self, Collation):
15074
15104
  self._Collation = Collation
15075
15105
 
15106
+ @property
15107
+ def MultiNodes(self):
15108
+ """是否多节点架构,默认值为false
15109
+ :rtype: bool
15110
+ """
15111
+ return self._MultiNodes
15112
+
15113
+ @MultiNodes.setter
15114
+ def MultiNodes(self, MultiNodes):
15115
+ self._MultiNodes = MultiNodes
15116
+
15117
+ @property
15118
+ def DrZones(self):
15119
+ """备节点可用区,默认为空。如果是多节点架构时必传,并且当MultiZones=true时备节点可用区不能全部相同。备机可用区集合最小为2个,最大不超过5个。
15120
+ :rtype: list of str
15121
+ """
15122
+ return self._DrZones
15123
+
15124
+ @DrZones.setter
15125
+ def DrZones(self, DrZones):
15126
+ self._DrZones = DrZones
15127
+
15076
15128
 
15077
15129
  def _deserialize(self, params):
15078
15130
  self._Zone = params.get("Zone")
@@ -15102,6 +15154,8 @@ class DescribeInstanceTradeParameterRequest(AbstractModel):
15102
15154
  self._ResourceTags.append(obj)
15103
15155
  self._TimeZone = params.get("TimeZone")
15104
15156
  self._Collation = params.get("Collation")
15157
+ self._MultiNodes = params.get("MultiNodes")
15158
+ self._DrZones = params.get("DrZones")
15105
15159
  memeber_set = set(params.keys())
15106
15160
  for name, value in vars(self).items():
15107
15161
  property_name = name[1:]
@@ -15120,7 +15174,6 @@ class DescribeInstanceTradeParameterResponse(AbstractModel):
15120
15174
  def __init__(self):
15121
15175
  r"""
15122
15176
  :param _Parameter: 计费参数
15123
- 注意:此字段可能返回 null,表示取不到有效值。
15124
15177
  :type Parameter: str
15125
15178
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15126
15179
  :type RequestId: str
@@ -15131,7 +15184,6 @@ class DescribeInstanceTradeParameterResponse(AbstractModel):
15131
15184
  @property
15132
15185
  def Parameter(self):
15133
15186
  """计费参数
15134
- 注意:此字段可能返回 null,表示取不到有效值。
15135
15187
  :rtype: str
15136
15188
  """
15137
15189
  return self._Parameter
@@ -19416,36 +19468,81 @@ class DrReadableInfo(AbstractModel):
19416
19468
 
19417
19469
  def __init__(self):
19418
19470
  r"""
19419
- :param _SlaveStatus: 备机状态,enable-运行中,disable-不可用
19420
- 注意:此字段可能返回 null,表示取不到有效值。
19471
+ :param _DrInstanceId: 备机资源ID
19472
+ :type DrInstanceId: str
19473
+ :param _Zone: 备机可用区
19474
+ :type Zone: str
19475
+ :param _SlaveStatus: 备机状态
19476
+ DR_CREATING-备机创建中
19477
+ DR_RUNNING-备机运行中
19478
+ DR_UNAVAILABLE-备机不可用
19479
+ DR_ISOLATED-备机已隔离
19480
+ DR_RECYCLING-备机回收中
19481
+ DR_RECYCLED-备机已回收
19482
+ DR_JOB_RUNNING-备机执行任务中
19483
+ DR_OFFLINE-备机已下线
19484
+ DR_FAIL_OVER-备机只读故障转移中
19421
19485
  :type SlaveStatus: str
19422
19486
  :param _ReadableStatus: 备机可读状态,enable-已开启,disable-已关闭
19423
- 注意:此字段可能返回 null,表示取不到有效值。
19424
19487
  :type ReadableStatus: str
19425
19488
  :param _Vip: 备机只读vip
19426
- 注意:此字段可能返回 null,表示取不到有效值。
19427
19489
  :type Vip: str
19428
19490
  :param _VPort: 备机只读端口
19429
- 注意:此字段可能返回 null,表示取不到有效值。
19430
19491
  :type VPort: int
19431
19492
  :param _UniqVpcId: 备机所在私有网络ID
19432
- 注意:此字段可能返回 null,表示取不到有效值。
19433
19493
  :type UniqVpcId: str
19434
19494
  :param _UniqSubnetId: 备机所在私有网络子网ID
19435
- 注意:此字段可能返回 null,表示取不到有效值。
19436
19495
  :type UniqSubnetId: str
19496
+ :param _RoWeight: 备机只读权重
19497
+ :type RoWeight: int
19498
+ :param _ReadMode: 备机只读模式,BalancedReadOnly-多备一读模式,SingleReadOnly-一备一读模式
19499
+ :type ReadMode: str
19437
19500
  """
19501
+ self._DrInstanceId = None
19502
+ self._Zone = None
19438
19503
  self._SlaveStatus = None
19439
19504
  self._ReadableStatus = None
19440
19505
  self._Vip = None
19441
19506
  self._VPort = None
19442
19507
  self._UniqVpcId = None
19443
19508
  self._UniqSubnetId = None
19509
+ self._RoWeight = None
19510
+ self._ReadMode = None
19511
+
19512
+ @property
19513
+ def DrInstanceId(self):
19514
+ """备机资源ID
19515
+ :rtype: str
19516
+ """
19517
+ return self._DrInstanceId
19518
+
19519
+ @DrInstanceId.setter
19520
+ def DrInstanceId(self, DrInstanceId):
19521
+ self._DrInstanceId = DrInstanceId
19522
+
19523
+ @property
19524
+ def Zone(self):
19525
+ """备机可用区
19526
+ :rtype: str
19527
+ """
19528
+ return self._Zone
19529
+
19530
+ @Zone.setter
19531
+ def Zone(self, Zone):
19532
+ self._Zone = Zone
19444
19533
 
19445
19534
  @property
19446
19535
  def SlaveStatus(self):
19447
- """备机状态,enable-运行中,disable-不可用
19448
- 注意:此字段可能返回 null,表示取不到有效值。
19536
+ """备机状态
19537
+ DR_CREATING-备机创建中
19538
+ DR_RUNNING-备机运行中
19539
+ DR_UNAVAILABLE-备机不可用
19540
+ DR_ISOLATED-备机已隔离
19541
+ DR_RECYCLING-备机回收中
19542
+ DR_RECYCLED-备机已回收
19543
+ DR_JOB_RUNNING-备机执行任务中
19544
+ DR_OFFLINE-备机已下线
19545
+ DR_FAIL_OVER-备机只读故障转移中
19449
19546
  :rtype: str
19450
19547
  """
19451
19548
  return self._SlaveStatus
@@ -19457,7 +19554,6 @@ class DrReadableInfo(AbstractModel):
19457
19554
  @property
19458
19555
  def ReadableStatus(self):
19459
19556
  """备机可读状态,enable-已开启,disable-已关闭
19460
- 注意:此字段可能返回 null,表示取不到有效值。
19461
19557
  :rtype: str
19462
19558
  """
19463
19559
  return self._ReadableStatus
@@ -19469,7 +19565,6 @@ class DrReadableInfo(AbstractModel):
19469
19565
  @property
19470
19566
  def Vip(self):
19471
19567
  """备机只读vip
19472
- 注意:此字段可能返回 null,表示取不到有效值。
19473
19568
  :rtype: str
19474
19569
  """
19475
19570
  return self._Vip
@@ -19481,7 +19576,6 @@ class DrReadableInfo(AbstractModel):
19481
19576
  @property
19482
19577
  def VPort(self):
19483
19578
  """备机只读端口
19484
- 注意:此字段可能返回 null,表示取不到有效值。
19485
19579
  :rtype: int
19486
19580
  """
19487
19581
  return self._VPort
@@ -19493,7 +19587,6 @@ class DrReadableInfo(AbstractModel):
19493
19587
  @property
19494
19588
  def UniqVpcId(self):
19495
19589
  """备机所在私有网络ID
19496
- 注意:此字段可能返回 null,表示取不到有效值。
19497
19590
  :rtype: str
19498
19591
  """
19499
19592
  return self._UniqVpcId
@@ -19505,7 +19598,6 @@ class DrReadableInfo(AbstractModel):
19505
19598
  @property
19506
19599
  def UniqSubnetId(self):
19507
19600
  """备机所在私有网络子网ID
19508
- 注意:此字段可能返回 null,表示取不到有效值。
19509
19601
  :rtype: str
19510
19602
  """
19511
19603
  return self._UniqSubnetId
@@ -19514,14 +19606,40 @@ class DrReadableInfo(AbstractModel):
19514
19606
  def UniqSubnetId(self, UniqSubnetId):
19515
19607
  self._UniqSubnetId = UniqSubnetId
19516
19608
 
19609
+ @property
19610
+ def RoWeight(self):
19611
+ """备机只读权重
19612
+ :rtype: int
19613
+ """
19614
+ return self._RoWeight
19615
+
19616
+ @RoWeight.setter
19617
+ def RoWeight(self, RoWeight):
19618
+ self._RoWeight = RoWeight
19619
+
19620
+ @property
19621
+ def ReadMode(self):
19622
+ """备机只读模式,BalancedReadOnly-多备一读模式,SingleReadOnly-一备一读模式
19623
+ :rtype: str
19624
+ """
19625
+ return self._ReadMode
19626
+
19627
+ @ReadMode.setter
19628
+ def ReadMode(self, ReadMode):
19629
+ self._ReadMode = ReadMode
19630
+
19517
19631
 
19518
19632
  def _deserialize(self, params):
19633
+ self._DrInstanceId = params.get("DrInstanceId")
19634
+ self._Zone = params.get("Zone")
19519
19635
  self._SlaveStatus = params.get("SlaveStatus")
19520
19636
  self._ReadableStatus = params.get("ReadableStatus")
19521
19637
  self._Vip = params.get("Vip")
19522
19638
  self._VPort = params.get("VPort")
19523
19639
  self._UniqVpcId = params.get("UniqVpcId")
19524
19640
  self._UniqSubnetId = params.get("UniqSubnetId")
19641
+ self._RoWeight = params.get("RoWeight")
19642
+ self._ReadMode = params.get("ReadMode")
19525
19643
  memeber_set = set(params.keys())
19526
19644
  for name, value in vars(self).items():
19527
19645
  property_name = name[1:]
@@ -21333,7 +21451,6 @@ class Migration(AbstractModel):
21333
21451
  :param _MigrationId: 备份导入任务ID 或 增量导入任务ID
21334
21452
  :type MigrationId: str
21335
21453
  :param _MigrationName: 备份导入名称,增量导入任务该字段为空
21336
- 注意:此字段可能返回 null,表示取不到有效值。
21337
21454
  :type MigrationName: str
21338
21455
  :param _AppId: 应用ID
21339
21456
  :type AppId: int
@@ -21362,7 +21479,6 @@ class Migration(AbstractModel):
21362
21479
  :param _Action: 当前状态允许的操作
21363
21480
  :type Action: :class:`tencentcloud.sqlserver.v20180328.models.MigrationAction`
21364
21481
  :param _IsRecovery: 是否是最终恢复,全量导入任务该字段为空
21365
- 注意:此字段可能返回 null,表示取不到有效值。
21366
21482
  :type IsRecovery: str
21367
21483
  :param _DBRename: 重命名的数据库名称集合
21368
21484
  注意:此字段可能返回 null,表示取不到有效值。
@@ -21400,7 +21516,6 @@ class Migration(AbstractModel):
21400
21516
  @property
21401
21517
  def MigrationName(self):
21402
21518
  """备份导入名称,增量导入任务该字段为空
21403
- 注意:此字段可能返回 null,表示取不到有效值。
21404
21519
  :rtype: str
21405
21520
  """
21406
21521
  return self._MigrationName
@@ -21555,7 +21670,6 @@ class Migration(AbstractModel):
21555
21670
  @property
21556
21671
  def IsRecovery(self):
21557
21672
  """是否是最终恢复,全量导入任务该字段为空
21558
- 注意:此字段可能返回 null,表示取不到有效值。
21559
21673
  :rtype: str
21560
21674
  """
21561
21675
  return self._IsRecovery
@@ -21679,7 +21793,6 @@ class MigrationDetail(AbstractModel):
21679
21793
  :param _Progress: 总进度,如:"30"表示30%
21680
21794
  :type Progress: int
21681
21795
  :param _StepInfo: 步骤信息,null表示还未开始迁移
21682
- 注意:此字段可能返回 null,表示取不到有效值。
21683
21796
  :type StepInfo: list of MigrationStep
21684
21797
  """
21685
21798
  self._StepAll = None
@@ -21723,7 +21836,6 @@ class MigrationDetail(AbstractModel):
21723
21836
  @property
21724
21837
  def StepInfo(self):
21725
21838
  """步骤信息,null表示还未开始迁移
21726
- 注意:此字段可能返回 null,表示取不到有效值。
21727
21839
  :rtype: list of MigrationStep
21728
21840
  """
21729
21841
  return self._StepInfo
@@ -25726,7 +25838,6 @@ class OldVip(AbstractModel):
25726
25838
  :param _RecycleTime: ip回收时间
25727
25839
  :type RecycleTime: str
25728
25840
  :param _OldIpRetainTime: 旧IP保留时间小时数
25729
- 注意:此字段可能返回 null,表示取不到有效值。
25730
25841
  :type OldIpRetainTime: int
25731
25842
  """
25732
25843
  self._Vip = None
@@ -25758,7 +25869,6 @@ class OldVip(AbstractModel):
25758
25869
  @property
25759
25870
  def OldIpRetainTime(self):
25760
25871
  """旧IP保留时间小时数
25761
- 注意:此字段可能返回 null,表示取不到有效值。
25762
25872
  :rtype: int
25763
25873
  """
25764
25874
  return self._OldIpRetainTime
@@ -26207,16 +26317,12 @@ class Price(AbstractModel):
26207
26317
  def __init__(self):
26208
26318
  r"""
26209
26319
  :param _PrepaidPrice: 包年包月参考价格,单位-分
26210
- 注意:此字段可能返回 null,表示取不到有效值。
26211
26320
  :type PrepaidPrice: int
26212
26321
  :param _PrepaidPriceUnit: 包年包月价格单位,M-月
26213
- 注意:此字段可能返回 null,表示取不到有效值。
26214
26322
  :type PrepaidPriceUnit: str
26215
26323
  :param _PostpaidPrice: 按量付费价格,单位-分
26216
- 注意:此字段可能返回 null,表示取不到有效值。
26217
26324
  :type PostpaidPrice: int
26218
26325
  :param _PostpaidPriceUnit: 按量付费价格单位,H-小时
26219
- 注意:此字段可能返回 null,表示取不到有效值。
26220
26326
  :type PostpaidPriceUnit: str
26221
26327
  """
26222
26328
  self._PrepaidPrice = None
@@ -26227,7 +26333,6 @@ class Price(AbstractModel):
26227
26333
  @property
26228
26334
  def PrepaidPrice(self):
26229
26335
  """包年包月参考价格,单位-分
26230
- 注意:此字段可能返回 null,表示取不到有效值。
26231
26336
  :rtype: int
26232
26337
  """
26233
26338
  return self._PrepaidPrice
@@ -26239,7 +26344,6 @@ class Price(AbstractModel):
26239
26344
  @property
26240
26345
  def PrepaidPriceUnit(self):
26241
26346
  """包年包月价格单位,M-月
26242
- 注意:此字段可能返回 null,表示取不到有效值。
26243
26347
  :rtype: str
26244
26348
  """
26245
26349
  return self._PrepaidPriceUnit
@@ -26251,7 +26355,6 @@ class Price(AbstractModel):
26251
26355
  @property
26252
26356
  def PostpaidPrice(self):
26253
26357
  """按量付费价格,单位-分
26254
- 注意:此字段可能返回 null,表示取不到有效值。
26255
26358
  :rtype: int
26256
26359
  """
26257
26360
  return self._PostpaidPrice
@@ -26263,7 +26366,6 @@ class Price(AbstractModel):
26263
26366
  @property
26264
26367
  def PostpaidPriceUnit(self):
26265
26368
  """按量付费价格单位,H-小时
26266
- 注意:此字段可能返回 null,表示取不到有效值。
26267
26369
  :rtype: str
26268
26370
  """
26269
26371
  return self._PostpaidPriceUnit
@@ -28859,13 +28961,10 @@ enable_doing-开启中
28859
28961
  disable_doing-关闭中
28860
28962
  renew_doing-更新中
28861
28963
  wait_doing-等待维护时间内执行
28862
- 注意:此字段可能返回 null,表示取不到有效值。
28863
28964
  :type Encryption: str
28864
28965
  :param _SSLValidityPeriod: SSL证书有效期,时间格式 YYYY-MM-DD HH:MM:SS
28865
- 注意:此字段可能返回 null,表示取不到有效值。
28866
28966
  :type SSLValidityPeriod: str
28867
28967
  :param _SSLValidity: SSL证书有效性,0-无效,1-有效
28868
- 注意:此字段可能返回 null,表示取不到有效值。
28869
28968
  :type SSLValidity: int
28870
28969
  :param _IsKMS: 是否是KMS的CMK证书
28871
28970
  :type IsKMS: int
@@ -28890,7 +28989,6 @@ enable_doing-开启中
28890
28989
  disable_doing-关闭中
28891
28990
  renew_doing-更新中
28892
28991
  wait_doing-等待维护时间内执行
28893
- 注意:此字段可能返回 null,表示取不到有效值。
28894
28992
  :rtype: str
28895
28993
  """
28896
28994
  return self._Encryption
@@ -28902,7 +29000,6 @@ wait_doing-等待维护时间内执行
28902
29000
  @property
28903
29001
  def SSLValidityPeriod(self):
28904
29002
  """SSL证书有效期,时间格式 YYYY-MM-DD HH:MM:SS
28905
- 注意:此字段可能返回 null,表示取不到有效值。
28906
29003
  :rtype: str
28907
29004
  """
28908
29005
  return self._SSLValidityPeriod
@@ -28914,7 +29011,6 @@ wait_doing-等待维护时间内执行
28914
29011
  @property
28915
29012
  def SSLValidity(self):
28916
29013
  """SSL证书有效性,0-无效,1-有效
28917
- 注意:此字段可能返回 null,表示取不到有效值。
28918
29014
  :rtype: int
28919
29015
  """
28920
29016
  return self._SSLValidity
@@ -29253,9 +29349,12 @@ class SlaveZones(AbstractModel):
29253
29349
  :type SlaveZone: str
29254
29350
  :param _SlaveZoneName: 备可用区
29255
29351
  :type SlaveZoneName: str
29352
+ :param _DrInstanceId: 备机资源ID
29353
+ :type DrInstanceId: str
29256
29354
  """
29257
29355
  self._SlaveZone = None
29258
29356
  self._SlaveZoneName = None
29357
+ self._DrInstanceId = None
29259
29358
 
29260
29359
  @property
29261
29360
  def SlaveZone(self):
@@ -29279,10 +29378,22 @@ class SlaveZones(AbstractModel):
29279
29378
  def SlaveZoneName(self, SlaveZoneName):
29280
29379
  self._SlaveZoneName = SlaveZoneName
29281
29380
 
29381
+ @property
29382
+ def DrInstanceId(self):
29383
+ """备机资源ID
29384
+ :rtype: str
29385
+ """
29386
+ return self._DrInstanceId
29387
+
29388
+ @DrInstanceId.setter
29389
+ def DrInstanceId(self, DrInstanceId):
29390
+ self._DrInstanceId = DrInstanceId
29391
+
29282
29392
 
29283
29393
  def _deserialize(self, params):
29284
29394
  self._SlaveZone = params.get("SlaveZone")
29285
29395
  self._SlaveZoneName = params.get("SlaveZoneName")
29396
+ self._DrInstanceId = params.get("DrInstanceId")
29286
29397
  memeber_set = set(params.keys())
29287
29398
  for name, value in vars(self).items():
29288
29399
  property_name = name[1:]
@@ -29315,7 +29426,6 @@ class SlowLog(AbstractModel):
29315
29426
  :param _ExternalAddr: 外网下载地址
29316
29427
  :type ExternalAddr: str
29317
29428
  :param _Status: 状态(1成功 2失败)
29318
- 注意:此字段可能返回 null,表示取不到有效值。
29319
29429
  :type Status: int
29320
29430
  """
29321
29431
  self._Id = None
@@ -29407,7 +29517,6 @@ class SlowLog(AbstractModel):
29407
29517
  @property
29408
29518
  def Status(self):
29409
29519
  """状态(1成功 2失败)
29410
- 注意:此字段可能返回 null,表示取不到有效值。
29411
29520
  :rtype: int
29412
29521
  """
29413
29522
  return self._Status
@@ -29611,7 +29720,6 @@ class SpecInfo(AbstractModel):
29611
29720
  :param _Pid: 此规格对应的包年包月Pid
29612
29721
  :type Pid: int
29613
29722
  :param _PostPid: 此规格对应的按量计费Pid列表
29614
- 注意:此字段可能返回 null,表示取不到有效值。
29615
29723
  :type PostPid: list of int
29616
29724
  :param _PayModeStatus: 此规格下支持的付费模式,POST-仅支持按量计费 PRE-仅支持包年包月 ALL-支持所有
29617
29725
  :type PayModeStatus: str
@@ -29773,7 +29881,6 @@ class SpecInfo(AbstractModel):
29773
29881
  @property
29774
29882
  def PostPid(self):
29775
29883
  """此规格对应的按量计费Pid列表
29776
- 注意:此字段可能返回 null,表示取不到有效值。
29777
29884
  :rtype: list of int
29778
29885
  """
29779
29886
  return self._PostPid
@@ -30883,19 +30990,14 @@ class SwitchLog(AbstractModel):
30883
30990
  def __init__(self):
30884
30991
  r"""
30885
30992
  :param _EventId: 切换事件ID
30886
- 注意:此字段可能返回 null,表示取不到有效值。
30887
30993
  :type EventId: str
30888
30994
  :param _SwitchType: 切换模式 0-系统自动切换,1-手动切换
30889
- 注意:此字段可能返回 null,表示取不到有效值。
30890
30995
  :type SwitchType: int
30891
30996
  :param _StartTime: 切换开始时间
30892
- 注意:此字段可能返回 null,表示取不到有效值。
30893
30997
  :type StartTime: str
30894
30998
  :param _EndTime: 切换结束时间
30895
- 注意:此字段可能返回 null,表示取不到有效值。
30896
30999
  :type EndTime: str
30897
31000
  :param _Reason: 机器故障导致自动切换
30898
- 注意:此字段可能返回 null,表示取不到有效值。
30899
31001
  :type Reason: str
30900
31002
  """
30901
31003
  self._EventId = None
@@ -30907,7 +31009,6 @@ class SwitchLog(AbstractModel):
30907
31009
  @property
30908
31010
  def EventId(self):
30909
31011
  """切换事件ID
30910
- 注意:此字段可能返回 null,表示取不到有效值。
30911
31012
  :rtype: str
30912
31013
  """
30913
31014
  return self._EventId
@@ -30919,7 +31020,6 @@ class SwitchLog(AbstractModel):
30919
31020
  @property
30920
31021
  def SwitchType(self):
30921
31022
  """切换模式 0-系统自动切换,1-手动切换
30922
- 注意:此字段可能返回 null,表示取不到有效值。
30923
31023
  :rtype: int
30924
31024
  """
30925
31025
  return self._SwitchType
@@ -30931,7 +31031,6 @@ class SwitchLog(AbstractModel):
30931
31031
  @property
30932
31032
  def StartTime(self):
30933
31033
  """切换开始时间
30934
- 注意:此字段可能返回 null,表示取不到有效值。
30935
31034
  :rtype: str
30936
31035
  """
30937
31036
  return self._StartTime
@@ -30943,7 +31042,6 @@ class SwitchLog(AbstractModel):
30943
31042
  @property
30944
31043
  def EndTime(self):
30945
31044
  """切换结束时间
30946
- 注意:此字段可能返回 null,表示取不到有效值。
30947
31045
  :rtype: str
30948
31046
  """
30949
31047
  return self._EndTime
@@ -30955,7 +31053,6 @@ class SwitchLog(AbstractModel):
30955
31053
  @property
30956
31054
  def Reason(self):
30957
31055
  """机器故障导致自动切换
30958
- 注意:此字段可能返回 null,表示取不到有效值。
30959
31056
  :rtype: str
30960
31057
  """
30961
31058
  return self._Reason
@@ -30993,7 +31090,6 @@ class TDEConfigAttribute(AbstractModel):
30993
31090
  :param _CertificateAttribution: 证书归属。self-表示使用该账号自身的证书,others-表示引用其他账号的证书,none-表示没有证书
30994
31091
  :type CertificateAttribution: str
30995
31092
  :param _QuoteUin: 开通TDE加密时引用的其他主账号ID
30996
- 注意:此字段可能返回 null,表示取不到有效值。
30997
31093
  :type QuoteUin: str
30998
31094
  :param _CMKId: KMS中购买的用户主密钥ID(CMK)
30999
31095
  :type CMKId: str
@@ -31031,7 +31127,6 @@ class TDEConfigAttribute(AbstractModel):
31031
31127
  @property
31032
31128
  def QuoteUin(self):
31033
31129
  """开通TDE加密时引用的其他主账号ID
31034
- 注意:此字段可能返回 null,表示取不到有效值。
31035
31130
  :rtype: str
31036
31131
  """
31037
31132
  return self._QuoteUin