tencentcloud-sdk-python 3.0.1296__py2.py3-none-any.whl → 3.0.1298__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 (39) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/billing/v20180709/models.py +90 -0
  3. tencentcloud/cam/v20190116/models.py +2 -2
  4. tencentcloud/ccc/v20200210/models.py +121 -0
  5. tencentcloud/cdb/v20170320/cdb_client.py +23 -0
  6. tencentcloud/cdb/v20170320/models.py +124 -0
  7. tencentcloud/cls/v20201016/models.py +2 -2
  8. tencentcloud/dbbrain/v20210527/models.py +17 -2
  9. tencentcloud/ess/v20201111/models.py +58 -156
  10. tencentcloud/essbasic/v20210526/models.py +6 -108
  11. tencentcloud/hunyuan/v20230901/models.py +7 -7
  12. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +92 -0
  13. tencentcloud/iotexplorer/v20190423/models.py +288 -2
  14. tencentcloud/lcic/v20220817/models.py +10 -4
  15. tencentcloud/lkeap/__init__.py +0 -0
  16. tencentcloud/lkeap/v20240522/__init__.py +0 -0
  17. tencentcloud/lkeap/v20240522/errorcodes.py +66 -0
  18. tencentcloud/lkeap/v20240522/lkeap_client.py +597 -0
  19. tencentcloud/lkeap/v20240522/models.py +3789 -0
  20. tencentcloud/mongodb/v20180408/errorcodes.py +3 -0
  21. tencentcloud/mongodb/v20180408/models.py +76 -18
  22. tencentcloud/mongodb/v20180408/mongodb_client.py +1 -1
  23. tencentcloud/mongodb/v20190725/models.py +49 -96
  24. tencentcloud/monitor/v20180724/models.py +35 -0
  25. tencentcloud/ocr/v20181119/ocr_client.py +3 -3
  26. tencentcloud/sqlserver/v20180328/models.py +76 -4
  27. tencentcloud/ssl/v20191205/models.py +2 -2
  28. tencentcloud/tcb/v20180608/models.py +15 -29
  29. tencentcloud/tcbr/v20220217/models.py +51 -6
  30. tencentcloud/tdmq/v20200217/models.py +205 -0
  31. tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
  32. tencentcloud/trtc/v20190722/models.py +4 -8
  33. tencentcloud/vpc/v20170312/models.py +48 -23
  34. tencentcloud/wedata/v20210820/models.py +71 -2
  35. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/METADATA +1 -1
  36. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/RECORD +39 -34
  37. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/LICENSE +0 -0
  38. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/WHEEL +0 -0
  39. {tencentcloud_sdk_python-3.0.1296.dist-info → tencentcloud_sdk_python-3.0.1298.dist-info}/top_level.txt +0 -0
@@ -41,6 +41,9 @@ INVALIDPARAMETERVALUE_INSTANCEHASBEENDELETED = 'InvalidParameterValue.InstanceHa
41
41
  # 实例已隔离。
42
42
  INVALIDPARAMETERVALUE_INSTANCEHASBEENISOLATED = 'InvalidParameterValue.InstanceHasBeenIsolated'
43
43
 
44
+ # 实例类型取值错误,需要指定实例类型为副本集或分片。
45
+ INVALIDPARAMETERVALUE_INSTANCETYPEERROR = 'InvalidParameterValue.InstanceTypeError'
46
+
44
47
  # limit取值范围[1,100]。
45
48
  INVALIDPARAMETERVALUE_LIMITPARAOUTOFRANGE = 'InvalidParameterValue.LimitParaOutOfRange'
46
49
 
@@ -180,13 +180,13 @@ class CreateDBInstanceHourRequest(AbstractModel):
180
180
  :type SecondaryNum: int
181
181
  :param _EngineVersion: MongoDB引擎版本,值包括MONGO_3_WT 、MONGO_3_ROCKS和MONGO_36_WT
182
182
  :type EngineVersion: str
183
- :param _Machine: 实例类型,GIO:高IO版;TGIO:高IO万兆
183
+ :param _Machine: 实例类型,HIO10G:高IO万兆。
184
184
  :type Machine: str
185
185
  :param _GoodsNum: 实例数量,默认值为1, 最小值1,最大值为10
186
186
  :type GoodsNum: int
187
187
  :param _Zone: 可用区信息,格式如:ap-guangzhou-2
188
188
  :type Zone: str
189
- :param _InstanceRole: 实例角色,支持值包括:MASTER-表示主实例,DR-表示灾备实例,RO-表示只读实例
189
+ :param _InstanceRole: 实例角色,默认传MASTER即可
190
190
  :type InstanceRole: str
191
191
  :param _InstanceType: 实例类型,REPLSET-副本集,SHARD-分片集群
192
192
  :type InstanceType: str
@@ -200,6 +200,10 @@ class CreateDBInstanceHourRequest(AbstractModel):
200
200
  :type ProjectId: int
201
201
  :param _SecurityGroup: 安全组参数
202
202
  :type SecurityGroup: list of str
203
+ :param _UniqVpcId: 私有网络ID,如果不传则默认选择基础网络
204
+ :type UniqVpcId: str
205
+ :param _UniqSubnetId: 私有网络下的子网ID,如果设置了 VpcId,则 SubnetId必填
206
+ :type UniqSubnetId: str
203
207
  """
204
208
  self._Memory = None
205
209
  self._Volume = None
@@ -216,6 +220,8 @@ class CreateDBInstanceHourRequest(AbstractModel):
216
220
  self._SubnetId = None
217
221
  self._ProjectId = None
218
222
  self._SecurityGroup = None
223
+ self._UniqVpcId = None
224
+ self._UniqSubnetId = None
219
225
 
220
226
  @property
221
227
  def Memory(self):
@@ -274,7 +280,7 @@ class CreateDBInstanceHourRequest(AbstractModel):
274
280
 
275
281
  @property
276
282
  def Machine(self):
277
- """实例类型,GIO:高IO版;TGIO:高IO万兆
283
+ """实例类型,HIO10G:高IO万兆。
278
284
  :rtype: str
279
285
  """
280
286
  return self._Machine
@@ -307,7 +313,7 @@ class CreateDBInstanceHourRequest(AbstractModel):
307
313
 
308
314
  @property
309
315
  def InstanceRole(self):
310
- """实例角色,支持值包括:MASTER-表示主实例,DR-表示灾备实例,RO-表示只读实例
316
+ """实例角色,默认传MASTER即可
311
317
  :rtype: str
312
318
  """
313
319
  return self._InstanceRole
@@ -382,6 +388,28 @@ class CreateDBInstanceHourRequest(AbstractModel):
382
388
  def SecurityGroup(self, SecurityGroup):
383
389
  self._SecurityGroup = SecurityGroup
384
390
 
391
+ @property
392
+ def UniqVpcId(self):
393
+ """私有网络ID,如果不传则默认选择基础网络
394
+ :rtype: str
395
+ """
396
+ return self._UniqVpcId
397
+
398
+ @UniqVpcId.setter
399
+ def UniqVpcId(self, UniqVpcId):
400
+ self._UniqVpcId = UniqVpcId
401
+
402
+ @property
403
+ def UniqSubnetId(self):
404
+ """私有网络下的子网ID,如果设置了 VpcId,则 SubnetId必填
405
+ :rtype: str
406
+ """
407
+ return self._UniqSubnetId
408
+
409
+ @UniqSubnetId.setter
410
+ def UniqSubnetId(self, UniqSubnetId):
411
+ self._UniqSubnetId = UniqSubnetId
412
+
385
413
 
386
414
  def _deserialize(self, params):
387
415
  self._Memory = params.get("Memory")
@@ -399,6 +427,8 @@ class CreateDBInstanceHourRequest(AbstractModel):
399
427
  self._SubnetId = params.get("SubnetId")
400
428
  self._ProjectId = params.get("ProjectId")
401
429
  self._SecurityGroup = params.get("SecurityGroup")
430
+ self._UniqVpcId = params.get("UniqVpcId")
431
+ self._UniqSubnetId = params.get("UniqSubnetId")
402
432
  memeber_set = set(params.keys())
403
433
  for name, value in vars(self).items():
404
434
  property_name = name[1:]
@@ -800,10 +830,8 @@ class DescribeClientConnectionsResponse(AbstractModel):
800
830
  def __init__(self):
801
831
  r"""
802
832
  :param _Clients: 客户端连接信息,包括客户端IP和对应IP的连接数量
803
- 注意:此字段可能返回 null,表示取不到有效值。
804
833
  :type Clients: list of ClientConnection
805
834
  :param _TotalCount: 连接数总结
806
- 注意:此字段可能返回 null,表示取不到有效值。
807
835
  :type TotalCount: int
808
836
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
809
837
  :type RequestId: str
@@ -815,7 +843,6 @@ class DescribeClientConnectionsResponse(AbstractModel):
815
843
  @property
816
844
  def Clients(self):
817
845
  """客户端连接信息,包括客户端IP和对应IP的连接数量
818
- 注意:此字段可能返回 null,表示取不到有效值。
819
846
  :rtype: list of ClientConnection
820
847
  """
821
848
  return self._Clients
@@ -827,7 +854,6 @@ class DescribeClientConnectionsResponse(AbstractModel):
827
854
  @property
828
855
  def TotalCount(self):
829
856
  """连接数总结
830
- 注意:此字段可能返回 null,表示取不到有效值。
831
857
  :rtype: int
832
858
  """
833
859
  return self._TotalCount
@@ -1486,19 +1512,14 @@ class MongoDBInstanceDetail(AbstractModel):
1486
1512
  :param _ReplicaSets: 分片信息
1487
1513
  :type ReplicaSets: list of MongodbShardInfo
1488
1514
  :param _ReadonlyInstances: 只读实例信息
1489
- 注意:此字段可能返回 null,表示取不到有效值。
1490
1515
  :type ReadonlyInstances: list of MongoDBInstance
1491
1516
  :param _StandbyInstances: 灾备实例信息
1492
- 注意:此字段可能返回 null,表示取不到有效值。
1493
1517
  :type StandbyInstances: list of MongoDBInstance
1494
1518
  :param _CloneInstances: 临时实例信息
1495
- 注意:此字段可能返回 null,表示取不到有效值。
1496
1519
  :type CloneInstances: list of MongoDBInstance
1497
1520
  :param _RelatedInstance: 关联实例信息,对于正式实例,该字段表示它的临时实例信息;对于临时实例,则表示它的正式实例信息;如果为只读/灾备实例,则表示他的主实例信息
1498
- 注意:此字段可能返回 null,表示取不到有效值。
1499
1521
  :type RelatedInstance: :class:`tencentcloud.mongodb.v20180408.models.MongoDBInstance`
1500
1522
  :param _Tags: 实例标签信息集合
1501
- 注意:此字段可能返回 null,表示取不到有效值。
1502
1523
  :type Tags: list of TagInfo
1503
1524
  :param _InstanceVer: 实例标记
1504
1525
  :type InstanceVer: int
@@ -1852,7 +1873,6 @@ class MongoDBInstanceDetail(AbstractModel):
1852
1873
  @property
1853
1874
  def ReadonlyInstances(self):
1854
1875
  """只读实例信息
1855
- 注意:此字段可能返回 null,表示取不到有效值。
1856
1876
  :rtype: list of MongoDBInstance
1857
1877
  """
1858
1878
  return self._ReadonlyInstances
@@ -1864,7 +1884,6 @@ class MongoDBInstanceDetail(AbstractModel):
1864
1884
  @property
1865
1885
  def StandbyInstances(self):
1866
1886
  """灾备实例信息
1867
- 注意:此字段可能返回 null,表示取不到有效值。
1868
1887
  :rtype: list of MongoDBInstance
1869
1888
  """
1870
1889
  return self._StandbyInstances
@@ -1876,7 +1895,6 @@ class MongoDBInstanceDetail(AbstractModel):
1876
1895
  @property
1877
1896
  def CloneInstances(self):
1878
1897
  """临时实例信息
1879
- 注意:此字段可能返回 null,表示取不到有效值。
1880
1898
  :rtype: list of MongoDBInstance
1881
1899
  """
1882
1900
  return self._CloneInstances
@@ -1888,7 +1906,6 @@ class MongoDBInstanceDetail(AbstractModel):
1888
1906
  @property
1889
1907
  def RelatedInstance(self):
1890
1908
  """关联实例信息,对于正式实例,该字段表示它的临时实例信息;对于临时实例,则表示它的正式实例信息;如果为只读/灾备实例,则表示他的主实例信息
1891
- 注意:此字段可能返回 null,表示取不到有效值。
1892
1909
  :rtype: :class:`tencentcloud.mongodb.v20180408.models.MongoDBInstance`
1893
1910
  """
1894
1911
  return self._RelatedInstance
@@ -1900,7 +1917,6 @@ class MongoDBInstanceDetail(AbstractModel):
1900
1917
  @property
1901
1918
  def Tags(self):
1902
1919
  """实例标签信息集合
1903
- 注意:此字段可能返回 null,表示取不到有效值。
1904
1920
  :rtype: list of TagInfo
1905
1921
  """
1906
1922
  return self._Tags
@@ -2474,46 +2490,67 @@ class SpecItem(AbstractModel):
2474
2490
  def __init__(self):
2475
2491
  r"""
2476
2492
  :param _SpecCode: 规格信息标识
2493
+ 注意:此字段可能返回 null,表示取不到有效值。
2477
2494
  :type SpecCode: str
2478
2495
  :param _Status: 规格有效标志,取值:0-停止售卖,1-开放售卖
2496
+ 注意:此字段可能返回 null,表示取不到有效值。
2479
2497
  :type Status: int
2480
2498
  :param _MachineType: 机器类型,取值:0-HIO,4-HIO10G
2499
+ 注意:此字段可能返回 null,表示取不到有效值。
2481
2500
  :type MachineType: str
2482
2501
  :param _Cpu: cpu核心数
2502
+ 注意:此字段可能返回 null,表示取不到有效值。
2483
2503
  :type Cpu: int
2484
2504
  :param _Memory: 内存规格,单位为MB
2505
+ 注意:此字段可能返回 null,表示取不到有效值。
2485
2506
  :type Memory: int
2486
2507
  :param _DefaultStorage: 默认磁盘规格,单位MB
2508
+ 注意:此字段可能返回 null,表示取不到有效值。
2487
2509
  :type DefaultStorage: int
2488
2510
  :param _MaxStorage: 最大磁盘规格,单位MB
2511
+ 注意:此字段可能返回 null,表示取不到有效值。
2489
2512
  :type MaxStorage: int
2490
2513
  :param _MinStorage: 最小磁盘规格,单位MB
2514
+ 注意:此字段可能返回 null,表示取不到有效值。
2491
2515
  :type MinStorage: int
2492
2516
  :param _Qps: 可承载qps信息
2517
+ 注意:此字段可能返回 null,表示取不到有效值。
2493
2518
  :type Qps: int
2494
2519
  :param _Conns: 连接数限制
2520
+ 注意:此字段可能返回 null,表示取不到有效值。
2495
2521
  :type Conns: int
2496
2522
  :param _MongoVersionCode: 实例mongodb版本信息
2523
+ 注意:此字段可能返回 null,表示取不到有效值。
2497
2524
  :type MongoVersionCode: str
2498
2525
  :param _MongoVersionValue: 实例mongodb版本号
2526
+ 注意:此字段可能返回 null,表示取不到有效值。
2499
2527
  :type MongoVersionValue: int
2500
2528
  :param _Version: 实例mongodb版本号(短)
2529
+ 注意:此字段可能返回 null,表示取不到有效值。
2501
2530
  :type Version: str
2502
2531
  :param _EngineName: 存储引擎
2532
+ 注意:此字段可能返回 null,表示取不到有效值。
2503
2533
  :type EngineName: str
2504
2534
  :param _ClusterType: 集群类型,取值:1-分片集群,0-副本集集群
2535
+ 注意:此字段可能返回 null,表示取不到有效值。
2505
2536
  :type ClusterType: int
2506
2537
  :param _MinNodeNum: 最小副本集从节点数
2538
+ 注意:此字段可能返回 null,表示取不到有效值。
2507
2539
  :type MinNodeNum: int
2508
2540
  :param _MaxNodeNum: 最大副本集从节点数
2541
+ 注意:此字段可能返回 null,表示取不到有效值。
2509
2542
  :type MaxNodeNum: int
2510
2543
  :param _MinReplicateSetNum: 最小分片数
2544
+ 注意:此字段可能返回 null,表示取不到有效值。
2511
2545
  :type MinReplicateSetNum: int
2512
2546
  :param _MaxReplicateSetNum: 最大分片数
2547
+ 注意:此字段可能返回 null,表示取不到有效值。
2513
2548
  :type MaxReplicateSetNum: int
2514
2549
  :param _MinReplicateSetNodeNum: 最小分片从节点数
2550
+ 注意:此字段可能返回 null,表示取不到有效值。
2515
2551
  :type MinReplicateSetNodeNum: int
2516
2552
  :param _MaxReplicateSetNodeNum: 最大分片从节点数
2553
+ 注意:此字段可能返回 null,表示取不到有效值。
2517
2554
  :type MaxReplicateSetNodeNum: int
2518
2555
  """
2519
2556
  self._SpecCode = None
@@ -2541,6 +2578,7 @@ class SpecItem(AbstractModel):
2541
2578
  @property
2542
2579
  def SpecCode(self):
2543
2580
  """规格信息标识
2581
+ 注意:此字段可能返回 null,表示取不到有效值。
2544
2582
  :rtype: str
2545
2583
  """
2546
2584
  return self._SpecCode
@@ -2552,6 +2590,7 @@ class SpecItem(AbstractModel):
2552
2590
  @property
2553
2591
  def Status(self):
2554
2592
  """规格有效标志,取值:0-停止售卖,1-开放售卖
2593
+ 注意:此字段可能返回 null,表示取不到有效值。
2555
2594
  :rtype: int
2556
2595
  """
2557
2596
  return self._Status
@@ -2563,6 +2602,7 @@ class SpecItem(AbstractModel):
2563
2602
  @property
2564
2603
  def MachineType(self):
2565
2604
  """机器类型,取值:0-HIO,4-HIO10G
2605
+ 注意:此字段可能返回 null,表示取不到有效值。
2566
2606
  :rtype: str
2567
2607
  """
2568
2608
  return self._MachineType
@@ -2574,6 +2614,7 @@ class SpecItem(AbstractModel):
2574
2614
  @property
2575
2615
  def Cpu(self):
2576
2616
  """cpu核心数
2617
+ 注意:此字段可能返回 null,表示取不到有效值。
2577
2618
  :rtype: int
2578
2619
  """
2579
2620
  return self._Cpu
@@ -2585,6 +2626,7 @@ class SpecItem(AbstractModel):
2585
2626
  @property
2586
2627
  def Memory(self):
2587
2628
  """内存规格,单位为MB
2629
+ 注意:此字段可能返回 null,表示取不到有效值。
2588
2630
  :rtype: int
2589
2631
  """
2590
2632
  return self._Memory
@@ -2596,6 +2638,7 @@ class SpecItem(AbstractModel):
2596
2638
  @property
2597
2639
  def DefaultStorage(self):
2598
2640
  """默认磁盘规格,单位MB
2641
+ 注意:此字段可能返回 null,表示取不到有效值。
2599
2642
  :rtype: int
2600
2643
  """
2601
2644
  return self._DefaultStorage
@@ -2607,6 +2650,7 @@ class SpecItem(AbstractModel):
2607
2650
  @property
2608
2651
  def MaxStorage(self):
2609
2652
  """最大磁盘规格,单位MB
2653
+ 注意:此字段可能返回 null,表示取不到有效值。
2610
2654
  :rtype: int
2611
2655
  """
2612
2656
  return self._MaxStorage
@@ -2618,6 +2662,7 @@ class SpecItem(AbstractModel):
2618
2662
  @property
2619
2663
  def MinStorage(self):
2620
2664
  """最小磁盘规格,单位MB
2665
+ 注意:此字段可能返回 null,表示取不到有效值。
2621
2666
  :rtype: int
2622
2667
  """
2623
2668
  return self._MinStorage
@@ -2629,6 +2674,7 @@ class SpecItem(AbstractModel):
2629
2674
  @property
2630
2675
  def Qps(self):
2631
2676
  """可承载qps信息
2677
+ 注意:此字段可能返回 null,表示取不到有效值。
2632
2678
  :rtype: int
2633
2679
  """
2634
2680
  return self._Qps
@@ -2640,6 +2686,7 @@ class SpecItem(AbstractModel):
2640
2686
  @property
2641
2687
  def Conns(self):
2642
2688
  """连接数限制
2689
+ 注意:此字段可能返回 null,表示取不到有效值。
2643
2690
  :rtype: int
2644
2691
  """
2645
2692
  return self._Conns
@@ -2651,6 +2698,7 @@ class SpecItem(AbstractModel):
2651
2698
  @property
2652
2699
  def MongoVersionCode(self):
2653
2700
  """实例mongodb版本信息
2701
+ 注意:此字段可能返回 null,表示取不到有效值。
2654
2702
  :rtype: str
2655
2703
  """
2656
2704
  return self._MongoVersionCode
@@ -2662,6 +2710,7 @@ class SpecItem(AbstractModel):
2662
2710
  @property
2663
2711
  def MongoVersionValue(self):
2664
2712
  """实例mongodb版本号
2713
+ 注意:此字段可能返回 null,表示取不到有效值。
2665
2714
  :rtype: int
2666
2715
  """
2667
2716
  return self._MongoVersionValue
@@ -2673,6 +2722,7 @@ class SpecItem(AbstractModel):
2673
2722
  @property
2674
2723
  def Version(self):
2675
2724
  """实例mongodb版本号(短)
2725
+ 注意:此字段可能返回 null,表示取不到有效值。
2676
2726
  :rtype: str
2677
2727
  """
2678
2728
  return self._Version
@@ -2684,6 +2734,7 @@ class SpecItem(AbstractModel):
2684
2734
  @property
2685
2735
  def EngineName(self):
2686
2736
  """存储引擎
2737
+ 注意:此字段可能返回 null,表示取不到有效值。
2687
2738
  :rtype: str
2688
2739
  """
2689
2740
  return self._EngineName
@@ -2695,6 +2746,7 @@ class SpecItem(AbstractModel):
2695
2746
  @property
2696
2747
  def ClusterType(self):
2697
2748
  """集群类型,取值:1-分片集群,0-副本集集群
2749
+ 注意:此字段可能返回 null,表示取不到有效值。
2698
2750
  :rtype: int
2699
2751
  """
2700
2752
  return self._ClusterType
@@ -2706,6 +2758,7 @@ class SpecItem(AbstractModel):
2706
2758
  @property
2707
2759
  def MinNodeNum(self):
2708
2760
  """最小副本集从节点数
2761
+ 注意:此字段可能返回 null,表示取不到有效值。
2709
2762
  :rtype: int
2710
2763
  """
2711
2764
  return self._MinNodeNum
@@ -2717,6 +2770,7 @@ class SpecItem(AbstractModel):
2717
2770
  @property
2718
2771
  def MaxNodeNum(self):
2719
2772
  """最大副本集从节点数
2773
+ 注意:此字段可能返回 null,表示取不到有效值。
2720
2774
  :rtype: int
2721
2775
  """
2722
2776
  return self._MaxNodeNum
@@ -2728,6 +2782,7 @@ class SpecItem(AbstractModel):
2728
2782
  @property
2729
2783
  def MinReplicateSetNum(self):
2730
2784
  """最小分片数
2785
+ 注意:此字段可能返回 null,表示取不到有效值。
2731
2786
  :rtype: int
2732
2787
  """
2733
2788
  return self._MinReplicateSetNum
@@ -2739,6 +2794,7 @@ class SpecItem(AbstractModel):
2739
2794
  @property
2740
2795
  def MaxReplicateSetNum(self):
2741
2796
  """最大分片数
2797
+ 注意:此字段可能返回 null,表示取不到有效值。
2742
2798
  :rtype: int
2743
2799
  """
2744
2800
  return self._MaxReplicateSetNum
@@ -2750,6 +2806,7 @@ class SpecItem(AbstractModel):
2750
2806
  @property
2751
2807
  def MinReplicateSetNodeNum(self):
2752
2808
  """最小分片从节点数
2809
+ 注意:此字段可能返回 null,表示取不到有效值。
2753
2810
  :rtype: int
2754
2811
  """
2755
2812
  return self._MinReplicateSetNodeNum
@@ -2761,6 +2818,7 @@ class SpecItem(AbstractModel):
2761
2818
  @property
2762
2819
  def MaxReplicateSetNodeNum(self):
2763
2820
  """最大分片从节点数
2821
+ 注意:此字段可能返回 null,表示取不到有效值。
2764
2822
  :rtype: int
2765
2823
  """
2766
2824
  return self._MaxReplicateSetNodeNum
@@ -73,7 +73,7 @@ class MongodbClient(AbstractClient):
73
73
 
74
74
 
75
75
  def CreateDBInstanceHour(self, request):
76
- """本接口(CreateDBInstanceHour)用于创建按量计费的MongoDB云数据库实例(包括主实例、灾备实例和只读实例),可通过传入实例规格、实例类型、MongoDB版本、购买时长和数量等信息创建云数据库实例。
76
+ """本接口(CreateDBInstanceHour)用于创建按量计费的MongoDB云数据库实例,可通过传入实例规格、实例类型、MongoDB版本、购买时长和数量等信息创建云数据库实例。
77
77
 
78
78
  :param request: Request instance for CreateDBInstanceHour.
79
79
  :type request: :class:`tencentcloud.mongodb.v20180408.models.CreateDBInstanceHourRequest`