tencentcloud-sdk-python 3.0.1327__py2.py3-none-any.whl → 3.0.1328__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 (26) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/captcha/v20190722/models.py +0 -48
  3. tencentcloud/cdwch/v20200915/models.py +83 -0
  4. tencentcloud/clb/v20180317/models.py +15 -0
  5. tencentcloud/dts/v20211206/models.py +2 -2
  6. tencentcloud/faceid/v20180301/models.py +26 -12
  7. tencentcloud/hunyuan/v20230901/models.py +2 -10
  8. tencentcloud/lke/v20231130/models.py +115 -6
  9. tencentcloud/lkeap/v20240522/lkeap_client.py +2 -5
  10. tencentcloud/lkeap/v20240522/models.py +12 -2
  11. tencentcloud/lowcode/v20210108/errorcodes.py +3 -0
  12. tencentcloud/lowcode/v20210108/lowcode_client.py +207 -0
  13. tencentcloud/lowcode/v20210108/models.py +2996 -124
  14. tencentcloud/monitor/v20180724/models.py +333 -0
  15. tencentcloud/monitor/v20180724/monitor_client.py +23 -0
  16. tencentcloud/rce/v20201103/models.py +0 -22
  17. tencentcloud/redis/v20180412/models.py +0 -110
  18. tencentcloud/tdid/v20210519/models.py +130 -22
  19. tencentcloud/tdid/v20210519/tdid_client.py +4 -1
  20. tencentcloud/tsf/v20180326/models.py +0 -88
  21. tencentcloud/waf/v20180125/models.py +2 -2
  22. {tencentcloud_sdk_python-3.0.1327.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/METADATA +1 -1
  23. {tencentcloud_sdk_python-3.0.1327.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/RECORD +26 -26
  24. {tencentcloud_sdk_python-3.0.1327.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/LICENSE +0 -0
  25. {tencentcloud_sdk_python-3.0.1327.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/WHEEL +0 -0
  26. {tencentcloud_sdk_python-3.0.1327.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/top_level.txt +0 -0
@@ -26,33 +26,26 @@ class Account(AbstractModel):
26
26
  def __init__(self):
27
27
  r"""
28
28
  :param _InstanceId: 实例 ID。
29
- 注意:此字段可能返回 null,表示取不到有效值。
30
29
  :type InstanceId: str
31
30
  :param _AccountName: 账号名称。
32
- 注意:此字段可能返回 null,表示取不到有效值。
33
31
  :type AccountName: str
34
32
  :param _Remark: 账号描述信息。
35
- 注意:此字段可能返回 null,表示取不到有效值。
36
33
  :type Remark: str
37
34
  :param _Privilege: 读写权限策略。
38
35
  - r:只读。
39
36
  - w:只写。
40
37
  - rw:读写。
41
- 注意:此字段可能返回 null,表示取不到有效值。
42
38
  :type Privilege: str
43
39
  :param _ReadonlyPolicy: 只读路由策略。
44
40
  - master:主节点。
45
41
  - replication:从节点。
46
- 注意:此字段可能返回 null,表示取不到有效值。
47
42
  :type ReadonlyPolicy: list of str
48
43
  :param _Status: 子账号状态.
49
44
  - 1:账号变更中。
50
45
  - 2:账号有效。
51
46
  - 4:账号已删除。
52
- 注意:此字段可能返回 null,表示取不到有效值。
53
47
  :type Status: int
54
48
  :param _CreateTime: 创建时间
55
- 注意:此字段可能返回 null,表示取不到有效值。
56
49
  :type CreateTime: str
57
50
  """
58
51
  self._InstanceId = None
@@ -66,7 +59,6 @@ class Account(AbstractModel):
66
59
  @property
67
60
  def InstanceId(self):
68
61
  """实例 ID。
69
- 注意:此字段可能返回 null,表示取不到有效值。
70
62
  :rtype: str
71
63
  """
72
64
  return self._InstanceId
@@ -78,7 +70,6 @@ class Account(AbstractModel):
78
70
  @property
79
71
  def AccountName(self):
80
72
  """账号名称。
81
- 注意:此字段可能返回 null,表示取不到有效值。
82
73
  :rtype: str
83
74
  """
84
75
  return self._AccountName
@@ -90,7 +81,6 @@ class Account(AbstractModel):
90
81
  @property
91
82
  def Remark(self):
92
83
  """账号描述信息。
93
- 注意:此字段可能返回 null,表示取不到有效值。
94
84
  :rtype: str
95
85
  """
96
86
  return self._Remark
@@ -105,7 +95,6 @@ class Account(AbstractModel):
105
95
  - r:只读。
106
96
  - w:只写。
107
97
  - rw:读写。
108
- 注意:此字段可能返回 null,表示取不到有效值。
109
98
  :rtype: str
110
99
  """
111
100
  return self._Privilege
@@ -119,7 +108,6 @@ class Account(AbstractModel):
119
108
  """只读路由策略。
120
109
  - master:主节点。
121
110
  - replication:从节点。
122
- 注意:此字段可能返回 null,表示取不到有效值。
123
111
  :rtype: list of str
124
112
  """
125
113
  return self._ReadonlyPolicy
@@ -134,7 +122,6 @@ class Account(AbstractModel):
134
122
  - 1:账号变更中。
135
123
  - 2:账号有效。
136
124
  - 4:账号已删除。
137
- 注意:此字段可能返回 null,表示取不到有效值。
138
125
  :rtype: int
139
126
  """
140
127
  return self._Status
@@ -146,7 +133,6 @@ class Account(AbstractModel):
146
133
  @property
147
134
  def CreateTime(self):
148
135
  """创建时间
149
- 注意:此字段可能返回 null,表示取不到有效值。
150
136
  :rtype: str
151
137
  """
152
138
  return self._CreateTime
@@ -573,10 +559,8 @@ class AvailableRegion(AbstractModel):
573
559
  def __init__(self):
574
560
  r"""
575
561
  :param _Region: 地域
576
- 注意:此字段可能返回 null,表示取不到有效值。
577
562
  :type Region: str
578
563
  :param _AvailableZones: 可用区信息
579
- 注意:此字段可能返回 null,表示取不到有效值。
580
564
  :type AvailableZones: list of str
581
565
  """
582
566
  self._Region = None
@@ -585,7 +569,6 @@ class AvailableRegion(AbstractModel):
585
569
  @property
586
570
  def Region(self):
587
571
  """地域
588
- 注意:此字段可能返回 null,表示取不到有效值。
589
572
  :rtype: str
590
573
  """
591
574
  return self._Region
@@ -597,7 +580,6 @@ class AvailableRegion(AbstractModel):
597
580
  @property
598
581
  def AvailableZones(self):
599
582
  """可用区信息
600
- 注意:此字段可能返回 null,表示取不到有效值。
601
583
  :rtype: list of str
602
584
  """
603
585
  return self._AvailableZones
@@ -5449,28 +5431,20 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5449
5431
  def __init__(self):
5450
5432
  r"""
5451
5433
  :param _RegionId: 地域 ID。
5452
- 注意:此字段可能返回 null,表示取不到有效值。
5453
5434
  :type RegionId: int
5454
5435
  :param _InstanceId: 实例 ID。
5455
- 注意:此字段可能返回 null,表示取不到有效值。
5456
5436
  :type InstanceId: str
5457
5437
  :param _SetId: 仓库ID。
5458
- 注意:此字段可能返回 null,表示取不到有效值。
5459
5438
  :type SetId: int
5460
5439
  :param _ZoneId: 可用区ID。
5461
- 注意:此字段可能返回 null,表示取不到有效值。
5462
5440
  :type ZoneId: int
5463
5441
  :param _Type: 实例类型。
5464
- 注意:此字段可能返回 null,表示取不到有效值。
5465
5442
  :type Type: int
5466
5443
  :param _InstanceName: 实例名称。
5467
- 注意:此字段可能返回 null,表示取不到有效值。
5468
5444
  :type InstanceName: str
5469
5445
  :param _Vip: 实例访问地址。
5470
- 注意:此字段可能返回 null,表示取不到有效值。
5471
5446
  :type Vip: str
5472
5447
  :param _Status: 状态。
5473
- 注意:此字段可能返回 null,表示取不到有效值。
5474
5448
  :type Status: int
5475
5449
  """
5476
5450
  self._RegionId = None
@@ -5485,7 +5459,6 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5485
5459
  @property
5486
5460
  def RegionId(self):
5487
5461
  """地域 ID。
5488
- 注意:此字段可能返回 null,表示取不到有效值。
5489
5462
  :rtype: int
5490
5463
  """
5491
5464
  return self._RegionId
@@ -5497,7 +5470,6 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5497
5470
  @property
5498
5471
  def InstanceId(self):
5499
5472
  """实例 ID。
5500
- 注意:此字段可能返回 null,表示取不到有效值。
5501
5473
  :rtype: str
5502
5474
  """
5503
5475
  return self._InstanceId
@@ -5509,7 +5481,6 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5509
5481
  @property
5510
5482
  def SetId(self):
5511
5483
  """仓库ID。
5512
- 注意:此字段可能返回 null,表示取不到有效值。
5513
5484
  :rtype: int
5514
5485
  """
5515
5486
  return self._SetId
@@ -5521,7 +5492,6 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5521
5492
  @property
5522
5493
  def ZoneId(self):
5523
5494
  """可用区ID。
5524
- 注意:此字段可能返回 null,表示取不到有效值。
5525
5495
  :rtype: int
5526
5496
  """
5527
5497
  return self._ZoneId
@@ -5533,7 +5503,6 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5533
5503
  @property
5534
5504
  def Type(self):
5535
5505
  """实例类型。
5536
- 注意:此字段可能返回 null,表示取不到有效值。
5537
5506
  :rtype: int
5538
5507
  """
5539
5508
  return self._Type
@@ -5545,7 +5514,6 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5545
5514
  @property
5546
5515
  def InstanceName(self):
5547
5516
  """实例名称。
5548
- 注意:此字段可能返回 null,表示取不到有效值。
5549
5517
  :rtype: str
5550
5518
  """
5551
5519
  return self._InstanceName
@@ -5557,7 +5525,6 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5557
5525
  @property
5558
5526
  def Vip(self):
5559
5527
  """实例访问地址。
5560
- 注意:此字段可能返回 null,表示取不到有效值。
5561
5528
  :rtype: str
5562
5529
  """
5563
5530
  return self._Vip
@@ -5569,7 +5536,6 @@ class DescribeInstanceDTSInstanceInfo(AbstractModel):
5569
5536
  @property
5570
5537
  def Status(self):
5571
5538
  """状态。
5572
- 注意:此字段可能返回 null,表示取不到有效值。
5573
5539
  :rtype: int
5574
5540
  """
5575
5541
  return self._Status
@@ -11561,7 +11527,6 @@ class Groups(AbstractModel):
11561
11527
  :param _GroupId: 复制组 ID。格式如:crs-rpl-deind****。
11562
11528
  :type GroupId: str
11563
11529
  :param _GroupName: 复制组名称。
11564
- 注意:此字段可能返回 null,表示取不到有效值。
11565
11530
  :type GroupName: str
11566
11531
  :param _Status: 复制组状态。
11567
11532
  - 37:绑定复制组中。
@@ -11573,10 +11538,8 @@ class Groups(AbstractModel):
11573
11538
  :param _InstanceCount: 复制组数量。
11574
11539
  :type InstanceCount: int
11575
11540
  :param _Instances: 复制组中的实例信息。
11576
- 注意:此字段可能返回 null,表示取不到有效值。
11577
11541
  :type Instances: list of Instances
11578
11542
  :param _Remark: 备注信息。
11579
- 注意:此字段可能返回 null,表示取不到有效值。
11580
11543
  :type Remark: str
11581
11544
  """
11582
11545
  self._AppId = None
@@ -11640,7 +11603,6 @@ class Groups(AbstractModel):
11640
11603
  @property
11641
11604
  def GroupName(self):
11642
11605
  """复制组名称。
11643
- 注意:此字段可能返回 null,表示取不到有效值。
11644
11606
  :rtype: str
11645
11607
  """
11646
11608
  return self._GroupName
@@ -11679,7 +11641,6 @@ class Groups(AbstractModel):
11679
11641
  @property
11680
11642
  def Instances(self):
11681
11643
  """复制组中的实例信息。
11682
- 注意:此字段可能返回 null,表示取不到有效值。
11683
11644
  :rtype: list of Instances
11684
11645
  """
11685
11646
  return self._Instances
@@ -11691,7 +11652,6 @@ class Groups(AbstractModel):
11691
11652
  @property
11692
11653
  def Remark(self):
11693
11654
  """备注信息。
11694
- 注意:此字段可能返回 null,表示取不到有效值。
11695
11655
  :rtype: str
11696
11656
  """
11697
11657
  return self._Remark
@@ -12997,7 +12957,6 @@ class InstanceIntegerParam(AbstractModel):
12997
12957
  :param _Status: 参数状态, 1: 修改中, 2:修改完成
12998
12958
  :type Status: int
12999
12959
  :param _Unit: 参数单位
13000
- 注意:此字段可能返回 null,表示取不到有效值。
13001
12960
  :type Unit: str
13002
12961
  """
13003
12962
  self._ParamName = None
@@ -13113,7 +13072,6 @@ class InstanceIntegerParam(AbstractModel):
13113
13072
  @property
13114
13073
  def Unit(self):
13115
13074
  """参数单位
13116
- 注意:此字段可能返回 null,表示取不到有效值。
13117
13075
  :rtype: str
13118
13076
  """
13119
13077
  return self._Unit
@@ -13743,85 +13701,58 @@ class InstanceSet(AbstractModel):
13743
13701
  :param _SlaveReadWeight: 从节点读取权重。
13744
13702
  :type SlaveReadWeight: int
13745
13703
  :param _InstanceTags: 实例关联的标签信息。
13746
- 注意:此字段可能返回 null,表示取不到有效值。
13747
13704
  :type InstanceTags: list of InstanceTagInfo
13748
13705
  :param _ProjectName: 项目名称。
13749
- 注意:此字段可能返回 null,表示取不到有效值。
13750
13706
  :type ProjectName: str
13751
13707
  :param _NoAuth: 是否为免密实例。<ul><li>true:免密实例。</li><li>false:非免密实例。</li></ul>
13752
- 注意:此字段可能返回 null,表示取不到有效值。
13753
13708
  :type NoAuth: bool
13754
13709
  :param _ClientLimit: 客户端连接数。
13755
- 注意:此字段可能返回 null,表示取不到有效值。
13756
13710
  :type ClientLimit: int
13757
13711
  :param _DtsStatus: DTS状态(内部参数,用户可忽略)。
13758
- 注意:此字段可能返回 null,表示取不到有效值。
13759
13712
  :type DtsStatus: int
13760
13713
  :param _NetLimit: 分片带宽上限,单位MB。
13761
- 注意:此字段可能返回 null,表示取不到有效值。
13762
13714
  :type NetLimit: int
13763
13715
  :param _PasswordFree: 免密实例标识(内部参数,用户可忽略)。
13764
- 注意:此字段可能返回 null,表示取不到有效值。
13765
13716
  :type PasswordFree: int
13766
13717
  :param _Vip6: 该参数存在命名不规范问题,建议用参数IPv6取代。内部参数,用户可忽略。
13767
- 注意:此字段可能返回 null,表示取不到有效值。
13768
13718
  :type Vip6: str
13769
13719
  :param _IPv6: 内部参数,用户可忽略。
13770
- 注意:此字段可能返回 null,表示取不到有效值。
13771
13720
  :type IPv6: str
13772
13721
  :param _ReadOnly: 实例只读标识(内部参数,用户可忽略)。
13773
- 注意:此字段可能返回 null,表示取不到有效值。
13774
13722
  :type ReadOnly: int
13775
13723
  :param _RemainBandwidthDuration: 内部参数,用户可忽略。
13776
- 注意:此字段可能返回 null,表示取不到有效值。
13777
13724
  :type RemainBandwidthDuration: str
13778
13725
  :param _DiskSize: Redis实例请忽略该参数。
13779
- 注意:此字段可能返回 null,表示取不到有效值。
13780
13726
  :type DiskSize: int
13781
13727
  :param _MonitorVersion: 监控版本。<ul><li>1m:1分钟粒度监控。目前该监控粒度已下线,具体信息,请参见[云数据库 Redis 1分钟粒度下线公告](https://cloud.tencent.com/document/product/239/80653)。</li><li>5s:5秒粒度监控。</li></ul>
13782
- 注意:此字段可能返回 null,表示取不到有效值。
13783
13728
  :type MonitorVersion: str
13784
13729
  :param _ClientLimitMin: 客户端最大连接数可设置的最小值。
13785
- 注意:此字段可能返回 null,表示取不到有效值。
13786
13730
  :type ClientLimitMin: int
13787
13731
  :param _ClientLimitMax: 客户端最大连接数可设置的最大值。
13788
- 注意:此字段可能返回 null,表示取不到有效值。
13789
13732
  :type ClientLimitMax: int
13790
13733
  :param _NodeSet: 实例的节点详细信息。
13791
- 注意:此字段可能返回 null,表示取不到有效值。
13792
13734
  :type NodeSet: list of RedisNodeInfo
13793
13735
  :param _Region: 实例所在的地域信息,比如ap-guangzhou。
13794
- 注意:此字段可能返回 null,表示取不到有效值。
13795
13736
  :type Region: str
13796
13737
  :param _WanAddress: 外网地址。
13797
- 注意:此字段可能返回 null,表示取不到有效值。
13798
13738
  :type WanAddress: str
13799
13739
  :param _PolarisServer: 北极星服务地址,内部使用。
13800
- 注意:此字段可能返回 null,表示取不到有效值。
13801
13740
  :type PolarisServer: str
13802
13741
  :param _RedisClusterId: CDC Redis集群ID。
13803
- 注意:此字段可能返回 null,表示取不到有效值。
13804
13742
  :type RedisClusterId: str
13805
13743
  :param _DedicatedClusterId: CDC 集群ID。
13806
- 注意:此字段可能返回 null,表示取不到有效值。
13807
13744
  :type DedicatedClusterId: str
13808
13745
  :param _ProductVersion: 产品版本。<ul><li>local:本地盘。</li><li>cloud:云盘版。</li><li>cdc:CDC 集群版本。</li></ul>
13809
- 注意:此字段可能返回 null,表示取不到有效值。
13810
13746
  :type ProductVersion: str
13811
13747
  :param _CurrentProxyVersion: 实例当前Proxy版本。
13812
- 注意:此字段可能返回 null,表示取不到有效值。
13813
13748
  :type CurrentProxyVersion: str
13814
13749
  :param _CurrentRedisVersion: 实例当前Cache小版本。如果实例加入全球复制组,显示全球复制的内核版本。
13815
- 注意:此字段可能返回 null,表示取不到有效值。
13816
13750
  :type CurrentRedisVersion: str
13817
13751
  :param _UpgradeProxyVersion: 实例可升级Proxy版本。
13818
- 注意:此字段可能返回 null,表示取不到有效值。
13819
13752
  :type UpgradeProxyVersion: str
13820
13753
  :param _UpgradeRedisVersion: 实例可升级Cache小版本。
13821
- 注意:此字段可能返回 null,表示取不到有效值。
13822
13754
  :type UpgradeRedisVersion: str
13823
13755
  :param _BackupMode: 备份模式:- SecondLevelBackup 秒级备份- NormalLevelBackup 普通备份
13824
- 注意:此字段可能返回 null,表示取不到有效值。
13825
13756
  :type BackupMode: str
13826
13757
  """
13827
13758
  self._InstanceName = None
@@ -14266,7 +14197,6 @@ class InstanceSet(AbstractModel):
14266
14197
  @property
14267
14198
  def InstanceTags(self):
14268
14199
  """实例关联的标签信息。
14269
- 注意:此字段可能返回 null,表示取不到有效值。
14270
14200
  :rtype: list of InstanceTagInfo
14271
14201
  """
14272
14202
  return self._InstanceTags
@@ -14278,7 +14208,6 @@ class InstanceSet(AbstractModel):
14278
14208
  @property
14279
14209
  def ProjectName(self):
14280
14210
  """项目名称。
14281
- 注意:此字段可能返回 null,表示取不到有效值。
14282
14211
  :rtype: str
14283
14212
  """
14284
14213
  return self._ProjectName
@@ -14290,7 +14219,6 @@ class InstanceSet(AbstractModel):
14290
14219
  @property
14291
14220
  def NoAuth(self):
14292
14221
  """是否为免密实例。<ul><li>true:免密实例。</li><li>false:非免密实例。</li></ul>
14293
- 注意:此字段可能返回 null,表示取不到有效值。
14294
14222
  :rtype: bool
14295
14223
  """
14296
14224
  return self._NoAuth
@@ -14302,7 +14230,6 @@ class InstanceSet(AbstractModel):
14302
14230
  @property
14303
14231
  def ClientLimit(self):
14304
14232
  """客户端连接数。
14305
- 注意:此字段可能返回 null,表示取不到有效值。
14306
14233
  :rtype: int
14307
14234
  """
14308
14235
  return self._ClientLimit
@@ -14314,7 +14241,6 @@ class InstanceSet(AbstractModel):
14314
14241
  @property
14315
14242
  def DtsStatus(self):
14316
14243
  """DTS状态(内部参数,用户可忽略)。
14317
- 注意:此字段可能返回 null,表示取不到有效值。
14318
14244
  :rtype: int
14319
14245
  """
14320
14246
  return self._DtsStatus
@@ -14326,7 +14252,6 @@ class InstanceSet(AbstractModel):
14326
14252
  @property
14327
14253
  def NetLimit(self):
14328
14254
  """分片带宽上限,单位MB。
14329
- 注意:此字段可能返回 null,表示取不到有效值。
14330
14255
  :rtype: int
14331
14256
  """
14332
14257
  return self._NetLimit
@@ -14338,7 +14263,6 @@ class InstanceSet(AbstractModel):
14338
14263
  @property
14339
14264
  def PasswordFree(self):
14340
14265
  """免密实例标识(内部参数,用户可忽略)。
14341
- 注意:此字段可能返回 null,表示取不到有效值。
14342
14266
  :rtype: int
14343
14267
  """
14344
14268
  return self._PasswordFree
@@ -14350,7 +14274,6 @@ class InstanceSet(AbstractModel):
14350
14274
  @property
14351
14275
  def Vip6(self):
14352
14276
  """该参数存在命名不规范问题,建议用参数IPv6取代。内部参数,用户可忽略。
14353
- 注意:此字段可能返回 null,表示取不到有效值。
14354
14277
  :rtype: str
14355
14278
  """
14356
14279
  return self._Vip6
@@ -14362,7 +14285,6 @@ class InstanceSet(AbstractModel):
14362
14285
  @property
14363
14286
  def IPv6(self):
14364
14287
  """内部参数,用户可忽略。
14365
- 注意:此字段可能返回 null,表示取不到有效值。
14366
14288
  :rtype: str
14367
14289
  """
14368
14290
  return self._IPv6
@@ -14374,7 +14296,6 @@ class InstanceSet(AbstractModel):
14374
14296
  @property
14375
14297
  def ReadOnly(self):
14376
14298
  """实例只读标识(内部参数,用户可忽略)。
14377
- 注意:此字段可能返回 null,表示取不到有效值。
14378
14299
  :rtype: int
14379
14300
  """
14380
14301
  return self._ReadOnly
@@ -14386,7 +14307,6 @@ class InstanceSet(AbstractModel):
14386
14307
  @property
14387
14308
  def RemainBandwidthDuration(self):
14388
14309
  """内部参数,用户可忽略。
14389
- 注意:此字段可能返回 null,表示取不到有效值。
14390
14310
  :rtype: str
14391
14311
  """
14392
14312
  return self._RemainBandwidthDuration
@@ -14398,7 +14318,6 @@ class InstanceSet(AbstractModel):
14398
14318
  @property
14399
14319
  def DiskSize(self):
14400
14320
  """Redis实例请忽略该参数。
14401
- 注意:此字段可能返回 null,表示取不到有效值。
14402
14321
  :rtype: int
14403
14322
  """
14404
14323
  return self._DiskSize
@@ -14410,7 +14329,6 @@ class InstanceSet(AbstractModel):
14410
14329
  @property
14411
14330
  def MonitorVersion(self):
14412
14331
  """监控版本。<ul><li>1m:1分钟粒度监控。目前该监控粒度已下线,具体信息,请参见[云数据库 Redis 1分钟粒度下线公告](https://cloud.tencent.com/document/product/239/80653)。</li><li>5s:5秒粒度监控。</li></ul>
14413
- 注意:此字段可能返回 null,表示取不到有效值。
14414
14332
  :rtype: str
14415
14333
  """
14416
14334
  return self._MonitorVersion
@@ -14422,7 +14340,6 @@ class InstanceSet(AbstractModel):
14422
14340
  @property
14423
14341
  def ClientLimitMin(self):
14424
14342
  """客户端最大连接数可设置的最小值。
14425
- 注意:此字段可能返回 null,表示取不到有效值。
14426
14343
  :rtype: int
14427
14344
  """
14428
14345
  return self._ClientLimitMin
@@ -14434,7 +14351,6 @@ class InstanceSet(AbstractModel):
14434
14351
  @property
14435
14352
  def ClientLimitMax(self):
14436
14353
  """客户端最大连接数可设置的最大值。
14437
- 注意:此字段可能返回 null,表示取不到有效值。
14438
14354
  :rtype: int
14439
14355
  """
14440
14356
  return self._ClientLimitMax
@@ -14446,7 +14362,6 @@ class InstanceSet(AbstractModel):
14446
14362
  @property
14447
14363
  def NodeSet(self):
14448
14364
  """实例的节点详细信息。
14449
- 注意:此字段可能返回 null,表示取不到有效值。
14450
14365
  :rtype: list of RedisNodeInfo
14451
14366
  """
14452
14367
  return self._NodeSet
@@ -14458,7 +14373,6 @@ class InstanceSet(AbstractModel):
14458
14373
  @property
14459
14374
  def Region(self):
14460
14375
  """实例所在的地域信息,比如ap-guangzhou。
14461
- 注意:此字段可能返回 null,表示取不到有效值。
14462
14376
  :rtype: str
14463
14377
  """
14464
14378
  return self._Region
@@ -14470,7 +14384,6 @@ class InstanceSet(AbstractModel):
14470
14384
  @property
14471
14385
  def WanAddress(self):
14472
14386
  """外网地址。
14473
- 注意:此字段可能返回 null,表示取不到有效值。
14474
14387
  :rtype: str
14475
14388
  """
14476
14389
  return self._WanAddress
@@ -14482,7 +14395,6 @@ class InstanceSet(AbstractModel):
14482
14395
  @property
14483
14396
  def PolarisServer(self):
14484
14397
  """北极星服务地址,内部使用。
14485
- 注意:此字段可能返回 null,表示取不到有效值。
14486
14398
  :rtype: str
14487
14399
  """
14488
14400
  return self._PolarisServer
@@ -14494,7 +14406,6 @@ class InstanceSet(AbstractModel):
14494
14406
  @property
14495
14407
  def RedisClusterId(self):
14496
14408
  """CDC Redis集群ID。
14497
- 注意:此字段可能返回 null,表示取不到有效值。
14498
14409
  :rtype: str
14499
14410
  """
14500
14411
  return self._RedisClusterId
@@ -14506,7 +14417,6 @@ class InstanceSet(AbstractModel):
14506
14417
  @property
14507
14418
  def DedicatedClusterId(self):
14508
14419
  """CDC 集群ID。
14509
- 注意:此字段可能返回 null,表示取不到有效值。
14510
14420
  :rtype: str
14511
14421
  """
14512
14422
  return self._DedicatedClusterId
@@ -14518,7 +14428,6 @@ class InstanceSet(AbstractModel):
14518
14428
  @property
14519
14429
  def ProductVersion(self):
14520
14430
  """产品版本。<ul><li>local:本地盘。</li><li>cloud:云盘版。</li><li>cdc:CDC 集群版本。</li></ul>
14521
- 注意:此字段可能返回 null,表示取不到有效值。
14522
14431
  :rtype: str
14523
14432
  """
14524
14433
  return self._ProductVersion
@@ -14530,7 +14439,6 @@ class InstanceSet(AbstractModel):
14530
14439
  @property
14531
14440
  def CurrentProxyVersion(self):
14532
14441
  """实例当前Proxy版本。
14533
- 注意:此字段可能返回 null,表示取不到有效值。
14534
14442
  :rtype: str
14535
14443
  """
14536
14444
  return self._CurrentProxyVersion
@@ -14542,7 +14450,6 @@ class InstanceSet(AbstractModel):
14542
14450
  @property
14543
14451
  def CurrentRedisVersion(self):
14544
14452
  """实例当前Cache小版本。如果实例加入全球复制组,显示全球复制的内核版本。
14545
- 注意:此字段可能返回 null,表示取不到有效值。
14546
14453
  :rtype: str
14547
14454
  """
14548
14455
  return self._CurrentRedisVersion
@@ -14554,7 +14461,6 @@ class InstanceSet(AbstractModel):
14554
14461
  @property
14555
14462
  def UpgradeProxyVersion(self):
14556
14463
  """实例可升级Proxy版本。
14557
- 注意:此字段可能返回 null,表示取不到有效值。
14558
14464
  :rtype: str
14559
14465
  """
14560
14466
  return self._UpgradeProxyVersion
@@ -14566,7 +14472,6 @@ class InstanceSet(AbstractModel):
14566
14472
  @property
14567
14473
  def UpgradeRedisVersion(self):
14568
14474
  """实例可升级Cache小版本。
14569
- 注意:此字段可能返回 null,表示取不到有效值。
14570
14475
  :rtype: str
14571
14476
  """
14572
14477
  return self._UpgradeRedisVersion
@@ -14578,7 +14483,6 @@ class InstanceSet(AbstractModel):
14578
14483
  @property
14579
14484
  def BackupMode(self):
14580
14485
  """备份模式:- SecondLevelBackup 秒级备份- NormalLevelBackup 普通备份
14581
- 注意:此字段可能返回 null,表示取不到有效值。
14582
14486
  :rtype: str
14583
14487
  """
14584
14488
  return self._BackupMode
@@ -15009,7 +14913,6 @@ class Instances(AbstractModel):
15009
14913
  :param _RedisShardSize: 分片内存大小。
15010
14914
  :type RedisShardSize: int
15011
14915
  :param _DiskSize: 实例的磁盘大小。
15012
- 注意:此字段可能返回 null,表示取不到有效值。
15013
14916
  :type DiskSize: int
15014
14917
  :param _Engine: 引擎:社区版Redis、腾讯云CKV。
15015
14918
  :type Engine: str
@@ -15018,10 +14921,8 @@ class Instances(AbstractModel):
15018
14921
  :param _Vip: 实例 VIP 地址。
15019
14922
  :type Vip: str
15020
14923
  :param _Vip6: 该参数存在命名不规范问题,建议用参数IPv6取代。内部参数,用户可忽略。
15021
- 注意:此字段可能返回 null,表示取不到有效值。
15022
14924
  :type Vip6: str
15023
14925
  :param _IPv6: 内部参数,用户可忽略。
15024
- 注意:此字段可能返回 null,表示取不到有效值。
15025
14926
  :type IPv6: str
15026
14927
  :param _VpcID: VPC 网络ID,如:75101。
15027
14928
  :type VpcID: int
@@ -15161,7 +15062,6 @@ class Instances(AbstractModel):
15161
15062
  @property
15162
15063
  def DiskSize(self):
15163
15064
  """实例的磁盘大小。
15164
- 注意:此字段可能返回 null,表示取不到有效值。
15165
15065
  :rtype: int
15166
15066
  """
15167
15067
  return self._DiskSize
@@ -15206,7 +15106,6 @@ class Instances(AbstractModel):
15206
15106
  @property
15207
15107
  def Vip6(self):
15208
15108
  """该参数存在命名不规范问题,建议用参数IPv6取代。内部参数,用户可忽略。
15209
- 注意:此字段可能返回 null,表示取不到有效值。
15210
15109
  :rtype: str
15211
15110
  """
15212
15111
  return self._Vip6
@@ -15218,7 +15117,6 @@ class Instances(AbstractModel):
15218
15117
  @property
15219
15118
  def IPv6(self):
15220
15119
  """内部参数,用户可忽略。
15221
- 注意:此字段可能返回 null,表示取不到有效值。
15222
15120
  :rtype: str
15223
15121
  """
15224
15122
  return self._IPv6
@@ -15470,16 +15368,12 @@ class LogDeliveryInfo(AbstractModel):
15470
15368
  def __init__(self):
15471
15369
  r"""
15472
15370
  :param _Enabled: 日志投递开启状态,开启:true,关闭:false
15473
- 注意:此字段可能返回 null,表示取不到有效值。
15474
15371
  :type Enabled: bool
15475
15372
  :param _LogsetId: 日志集ID。
15476
- 注意:此字段可能返回 null,表示取不到有效值。
15477
15373
  :type LogsetId: str
15478
15374
  :param _TopicId: 日志主题ID。
15479
- 注意:此字段可能返回 null,表示取不到有效值。
15480
15375
  :type TopicId: str
15481
15376
  :param _LogRegion: 日志集所在地域
15482
- 注意:此字段可能返回 null,表示取不到有效值。
15483
15377
  :type LogRegion: str
15484
15378
  """
15485
15379
  self._Enabled = None
@@ -15490,7 +15384,6 @@ class LogDeliveryInfo(AbstractModel):
15490
15384
  @property
15491
15385
  def Enabled(self):
15492
15386
  """日志投递开启状态,开启:true,关闭:false
15493
- 注意:此字段可能返回 null,表示取不到有效值。
15494
15387
  :rtype: bool
15495
15388
  """
15496
15389
  return self._Enabled
@@ -15502,7 +15395,6 @@ class LogDeliveryInfo(AbstractModel):
15502
15395
  @property
15503
15396
  def LogsetId(self):
15504
15397
  """日志集ID。
15505
- 注意:此字段可能返回 null,表示取不到有效值。
15506
15398
  :rtype: str
15507
15399
  """
15508
15400
  return self._LogsetId
@@ -15514,7 +15406,6 @@ class LogDeliveryInfo(AbstractModel):
15514
15406
  @property
15515
15407
  def TopicId(self):
15516
15408
  """日志主题ID。
15517
- 注意:此字段可能返回 null,表示取不到有效值。
15518
15409
  :rtype: str
15519
15410
  """
15520
15411
  return self._TopicId
@@ -15526,7 +15417,6 @@ class LogDeliveryInfo(AbstractModel):
15526
15417
  @property
15527
15418
  def LogRegion(self):
15528
15419
  """日志集所在地域
15529
- 注意:此字段可能返回 null,表示取不到有效值。
15530
15420
  :rtype: str
15531
15421
  """
15532
15422
  return self._LogRegion