tencentcloud-sdk-python 3.0.1393__py2.py3-none-any.whl → 3.0.1394__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 (27) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cdb/v20170320/models.py +4 -0
  3. tencentcloud/cdc/v20201214/models.py +20 -0
  4. tencentcloud/cfs/v20190719/models.py +8 -8
  5. tencentcloud/clb/v20180317/clb_client.py +23 -0
  6. tencentcloud/clb/v20180317/models.py +186 -0
  7. tencentcloud/emr/v20190103/models.py +30 -0
  8. tencentcloud/ess/v20201111/models.py +2 -2
  9. tencentcloud/gs/v20191118/gs_client.py +78 -9
  10. tencentcloud/gs/v20191118/models.py +473 -0
  11. tencentcloud/lowcode/v20210108/models.py +90 -0
  12. tencentcloud/monitor/v20180724/models.py +268 -0
  13. tencentcloud/monitor/v20180724/monitor_client.py +46 -0
  14. tencentcloud/mrs/v20200910/models.py +2 -2
  15. tencentcloud/oceanus/v20190422/models.py +17 -0
  16. tencentcloud/oceanus/v20190422/oceanus_client.py +1 -1
  17. tencentcloud/privatedns/v20201028/models.py +297 -0
  18. tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
  19. tencentcloud/tcss/v20201101/models.py +240 -0
  20. tencentcloud/tms/v20201229/models.py +4 -4
  21. tencentcloud/vm/v20210922/models.py +4 -16
  22. tencentcloud/vpc/v20170312/models.py +12 -6
  23. {tencentcloud_sdk_python-3.0.1393.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/METADATA +1 -1
  24. {tencentcloud_sdk_python-3.0.1393.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/RECORD +27 -27
  25. {tencentcloud_sdk_python-3.0.1393.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/LICENSE +0 -0
  26. {tencentcloud_sdk_python-3.0.1393.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/WHEEL +0 -0
  27. {tencentcloud_sdk_python-3.0.1393.dist-info → tencentcloud_sdk_python-3.0.1394.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1393'
17
+ __version__ = '3.0.1394'
@@ -23605,8 +23605,10 @@ class HistoryJob(AbstractModel):
23605
23605
  :param _ExpandType: 扩容类型
23606
23606
  :type ExpandType: str
23607
23607
  :param _StartTime: 扩容开始时间
23608
+ 说明:此项显示的格式是 int 类型的 unix 时间戳
23608
23609
  :type StartTime: int
23609
23610
  :param _EndTime: 扩容结束时间
23611
+ 说明:此项显示的格式是 int 类型的 unix 时间戳
23610
23612
  :type EndTime: int
23611
23613
  :param _OldCpu: 扩容前核数
23612
23614
  :type OldCpu: int
@@ -23651,6 +23653,7 @@ class HistoryJob(AbstractModel):
23651
23653
  @property
23652
23654
  def StartTime(self):
23653
23655
  """扩容开始时间
23656
+ 说明:此项显示的格式是 int 类型的 unix 时间戳
23654
23657
  :rtype: int
23655
23658
  """
23656
23659
  return self._StartTime
@@ -23662,6 +23665,7 @@ class HistoryJob(AbstractModel):
23662
23665
  @property
23663
23666
  def EndTime(self):
23664
23667
  """扩容结束时间
23668
+ 说明:此项显示的格式是 int 类型的 unix 时间戳
23665
23669
  :rtype: int
23666
23670
  """
23667
23671
  return self._EndTime
@@ -1489,6 +1489,8 @@ class DedicatedClusterOrder(AbstractModel):
1489
1489
 
1490
1490
  @property
1491
1491
  def DedicatedClusterTypeId(self):
1492
+ warnings.warn("parameter `DedicatedClusterTypeId` is deprecated", DeprecationWarning)
1493
+
1492
1494
  """专用集群类型id(移到下一层级,已经废弃,后续将删除)
1493
1495
  :rtype: str
1494
1496
  """
@@ -1496,10 +1498,14 @@ class DedicatedClusterOrder(AbstractModel):
1496
1498
 
1497
1499
  @DedicatedClusterTypeId.setter
1498
1500
  def DedicatedClusterTypeId(self, DedicatedClusterTypeId):
1501
+ warnings.warn("parameter `DedicatedClusterTypeId` is deprecated", DeprecationWarning)
1502
+
1499
1503
  self._DedicatedClusterTypeId = DedicatedClusterTypeId
1500
1504
 
1501
1505
  @property
1502
1506
  def SupportedStorageType(self):
1507
+ warnings.warn("parameter `SupportedStorageType` is deprecated", DeprecationWarning)
1508
+
1503
1509
  """支持的存储类型列表(移到下一层级,已经废弃,后续将删除)
1504
1510
  :rtype: list of str
1505
1511
  """
@@ -1507,10 +1513,14 @@ class DedicatedClusterOrder(AbstractModel):
1507
1513
 
1508
1514
  @SupportedStorageType.setter
1509
1515
  def SupportedStorageType(self, SupportedStorageType):
1516
+ warnings.warn("parameter `SupportedStorageType` is deprecated", DeprecationWarning)
1517
+
1510
1518
  self._SupportedStorageType = SupportedStorageType
1511
1519
 
1512
1520
  @property
1513
1521
  def SupportedUplinkSpeed(self):
1522
+ warnings.warn("parameter `SupportedUplinkSpeed` is deprecated", DeprecationWarning)
1523
+
1514
1524
  """支持的上连交换机的链路传输速率(GiB)(移到下一层级,已经废弃,后续将删除)
1515
1525
  :rtype: list of int
1516
1526
  """
@@ -1518,10 +1528,14 @@ class DedicatedClusterOrder(AbstractModel):
1518
1528
 
1519
1529
  @SupportedUplinkSpeed.setter
1520
1530
  def SupportedUplinkSpeed(self, SupportedUplinkSpeed):
1531
+ warnings.warn("parameter `SupportedUplinkSpeed` is deprecated", DeprecationWarning)
1532
+
1521
1533
  self._SupportedUplinkSpeed = SupportedUplinkSpeed
1522
1534
 
1523
1535
  @property
1524
1536
  def SupportedInstanceFamily(self):
1537
+ warnings.warn("parameter `SupportedInstanceFamily` is deprecated", DeprecationWarning)
1538
+
1525
1539
  """支持的实例族列表(移到下一层级,已经废弃,后续将删除)
1526
1540
  :rtype: list of str
1527
1541
  """
@@ -1529,6 +1543,8 @@ class DedicatedClusterOrder(AbstractModel):
1529
1543
 
1530
1544
  @SupportedInstanceFamily.setter
1531
1545
  def SupportedInstanceFamily(self, SupportedInstanceFamily):
1546
+ warnings.warn("parameter `SupportedInstanceFamily` is deprecated", DeprecationWarning)
1547
+
1532
1548
  self._SupportedInstanceFamily = SupportedInstanceFamily
1533
1549
 
1534
1550
  @property
@@ -4499,6 +4515,8 @@ class HostInfo(AbstractModel):
4499
4515
 
4500
4516
  @property
4501
4517
  def HostIp(self):
4518
+ warnings.warn("parameter `HostIp` is deprecated", DeprecationWarning)
4519
+
4502
4520
  """宿主机IP(废弃)
4503
4521
  :rtype: str
4504
4522
  """
@@ -4506,6 +4524,8 @@ class HostInfo(AbstractModel):
4506
4524
 
4507
4525
  @HostIp.setter
4508
4526
  def HostIp(self, HostIp):
4527
+ warnings.warn("parameter `HostIp` is deprecated", DeprecationWarning)
4528
+
4509
4529
  self._HostIp = HostIp
4510
4530
 
4511
4531
  @property
@@ -685,9 +685,9 @@ class BindAutoSnapshotPolicyRequest(AbstractModel):
685
685
 
686
686
  def __init__(self):
687
687
  r"""
688
- :param _AutoSnapshotPolicyId: 快照策略ID,通过快照策略列表获取
688
+ :param _AutoSnapshotPolicyId: 需要解绑的文件系统ID列表,用"," 分割,文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
689
689
  :type AutoSnapshotPolicyId: str
690
- :param _FileSystemIds: 文件系统id列表,用“,”分隔,文件系统id通过查询文件系统列表获得
690
+ :param _FileSystemIds: 解绑的快照策略ID,可以通过[DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/582/80208) 查询获取
691
691
  :type FileSystemIds: str
692
692
  """
693
693
  self._AutoSnapshotPolicyId = None
@@ -695,7 +695,7 @@ class BindAutoSnapshotPolicyRequest(AbstractModel):
695
695
 
696
696
  @property
697
697
  def AutoSnapshotPolicyId(self):
698
- """快照策略ID,通过快照策略列表获取
698
+ """需要解绑的文件系统ID列表,用"," 分割,文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
699
699
  :rtype: str
700
700
  """
701
701
  return self._AutoSnapshotPolicyId
@@ -706,7 +706,7 @@ class BindAutoSnapshotPolicyRequest(AbstractModel):
706
706
 
707
707
  @property
708
708
  def FileSystemIds(self):
709
- """文件系统id列表,用“,”分隔,文件系统id通过查询文件系统列表获得
709
+ """解绑的快照策略ID,可以通过[DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/582/80208) 查询获取
710
710
  :rtype: str
711
711
  """
712
712
  return self._FileSystemIds
@@ -3935,7 +3935,7 @@ class DescribeCfsSnapshotsRequest(AbstractModel):
3935
3935
  <br>FileSystemId - Array of String - 是否必填:否 -(过滤条件)按文件系统ID过滤。
3936
3936
  <br>FsName - Array of String - 是否必填:否 -(过滤条件)按文件系统名过滤。
3937
3937
  <br>Status - Array of String - 是否必填:否 -(过滤条件)按照快照状态过滤
3938
- (creating:表示创建中 | available:表示可用。| rollbacking:表示回滚。| rollbacking_new:表示由快照创建新文件系统中| create-failed 创建失败)
3938
+ (creating:表示创建中 | available:表示可用。rollbacking_new:表示由快照创建新文件系统中| create-failed 创建失败)
3939
3939
  <br>tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键进行过滤。
3940
3940
  <br>tag:tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。
3941
3941
  :type Filters: list of Filter
@@ -4004,7 +4004,7 @@ class DescribeCfsSnapshotsRequest(AbstractModel):
4004
4004
  <br>FileSystemId - Array of String - 是否必填:否 -(过滤条件)按文件系统ID过滤。
4005
4005
  <br>FsName - Array of String - 是否必填:否 -(过滤条件)按文件系统名过滤。
4006
4006
  <br>Status - Array of String - 是否必填:否 -(过滤条件)按照快照状态过滤
4007
- (creating:表示创建中 | available:表示可用。| rollbacking:表示回滚。| rollbacking_new:表示由快照创建新文件系统中| create-failed 创建失败)
4007
+ (creating:表示创建中 | available:表示可用。rollbacking_new:表示由快照创建新文件系统中| create-failed 创建失败)
4008
4008
  <br>tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键进行过滤。
4009
4009
  <br>tag:tag-key - Array of String - 是否必填:否 -(过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。
4010
4010
  :rtype: list of Filter
@@ -7170,14 +7170,14 @@ class StopMigrationTaskRequest(AbstractModel):
7170
7170
 
7171
7171
  def __init__(self):
7172
7172
  r"""
7173
- :param _TaskId: 迁移任务名称
7173
+ :param _TaskId: 迁移任务Id
7174
7174
  :type TaskId: str
7175
7175
  """
7176
7176
  self._TaskId = None
7177
7177
 
7178
7178
  @property
7179
7179
  def TaskId(self):
7180
- """迁移任务名称
7180
+ """迁移任务Id
7181
7181
  :rtype: str
7182
7182
  """
7183
7183
  return self._TaskId
@@ -1042,6 +1042,29 @@ class ClbClient(AbstractClient):
1042
1042
  raise TencentCloudSDKException(type(e).__name__, str(e))
1043
1043
 
1044
1044
 
1045
+ def DescribeLBOperateProtect(self, request):
1046
+ """查询负载均衡的操作保护信息。
1047
+
1048
+ :param request: Request instance for DescribeLBOperateProtect.
1049
+ :type request: :class:`tencentcloud.clb.v20180317.models.DescribeLBOperateProtectRequest`
1050
+ :rtype: :class:`tencentcloud.clb.v20180317.models.DescribeLBOperateProtectResponse`
1051
+
1052
+ """
1053
+ try:
1054
+ params = request._serialize()
1055
+ headers = request.headers
1056
+ body = self.call("DescribeLBOperateProtect", params, headers=headers)
1057
+ response = json.loads(body)
1058
+ model = models.DescribeLBOperateProtectResponse()
1059
+ model._deserialize(response["Response"])
1060
+ return model
1061
+ except Exception as e:
1062
+ if isinstance(e, TencentCloudSDKException):
1063
+ raise
1064
+ else:
1065
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1066
+
1067
+
1045
1068
  def DescribeListeners(self, request):
1046
1069
  """DescribeListeners 接口可根据负载均衡器 ID、监听器的协议或端口作为过滤条件获取监听器列表。如果不指定任何过滤条件,则返回该负载均衡实例下的所有监听器。
1047
1070
 
@@ -8549,6 +8549,90 @@ class DescribeLBListenersResponse(AbstractModel):
8549
8549
  self._RequestId = params.get("RequestId")
8550
8550
 
8551
8551
 
8552
+ class DescribeLBOperateProtectRequest(AbstractModel):
8553
+ """DescribeLBOperateProtect请求参数结构体
8554
+
8555
+ """
8556
+
8557
+ def __init__(self):
8558
+ r"""
8559
+ :param _LoadBalancerIds: 负载均衡实例ID。
8560
+ :type LoadBalancerIds: list of str
8561
+ """
8562
+ self._LoadBalancerIds = None
8563
+
8564
+ @property
8565
+ def LoadBalancerIds(self):
8566
+ """负载均衡实例ID。
8567
+ :rtype: list of str
8568
+ """
8569
+ return self._LoadBalancerIds
8570
+
8571
+ @LoadBalancerIds.setter
8572
+ def LoadBalancerIds(self, LoadBalancerIds):
8573
+ self._LoadBalancerIds = LoadBalancerIds
8574
+
8575
+
8576
+ def _deserialize(self, params):
8577
+ self._LoadBalancerIds = params.get("LoadBalancerIds")
8578
+ memeber_set = set(params.keys())
8579
+ for name, value in vars(self).items():
8580
+ property_name = name[1:]
8581
+ if property_name in memeber_set:
8582
+ memeber_set.remove(property_name)
8583
+ if len(memeber_set) > 0:
8584
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
8585
+
8586
+
8587
+
8588
+ class DescribeLBOperateProtectResponse(AbstractModel):
8589
+ """DescribeLBOperateProtect返回参数结构体
8590
+
8591
+ """
8592
+
8593
+ def __init__(self):
8594
+ r"""
8595
+ :param _LoadBalancerSet: 返回的负载均衡操作保护信息数组。
8596
+ :type LoadBalancerSet: list of LBOperateProtectInfo
8597
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8598
+ :type RequestId: str
8599
+ """
8600
+ self._LoadBalancerSet = None
8601
+ self._RequestId = None
8602
+
8603
+ @property
8604
+ def LoadBalancerSet(self):
8605
+ """返回的负载均衡操作保护信息数组。
8606
+ :rtype: list of LBOperateProtectInfo
8607
+ """
8608
+ return self._LoadBalancerSet
8609
+
8610
+ @LoadBalancerSet.setter
8611
+ def LoadBalancerSet(self, LoadBalancerSet):
8612
+ self._LoadBalancerSet = LoadBalancerSet
8613
+
8614
+ @property
8615
+ def RequestId(self):
8616
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8617
+ :rtype: str
8618
+ """
8619
+ return self._RequestId
8620
+
8621
+ @RequestId.setter
8622
+ def RequestId(self, RequestId):
8623
+ self._RequestId = RequestId
8624
+
8625
+
8626
+ def _deserialize(self, params):
8627
+ if params.get("LoadBalancerSet") is not None:
8628
+ self._LoadBalancerSet = []
8629
+ for item in params.get("LoadBalancerSet"):
8630
+ obj = LBOperateProtectInfo()
8631
+ obj._deserialize(item)
8632
+ self._LoadBalancerSet.append(obj)
8633
+ self._RequestId = params.get("RequestId")
8634
+
8635
+
8552
8636
  class DescribeListenersRequest(AbstractModel):
8553
8637
  """DescribeListeners请求参数结构体
8554
8638
 
@@ -12653,6 +12737,108 @@ class LBItem(AbstractModel):
12653
12737
 
12654
12738
 
12655
12739
 
12740
+ class LBOperateProtectInfo(AbstractModel):
12741
+ """负载均衡的操作保护信息
12742
+
12743
+ """
12744
+
12745
+ def __init__(self):
12746
+ r"""
12747
+ :param _LoadBalancerId: 负载均衡实例 ID。
12748
+ :type LoadBalancerId: str
12749
+ :param _ProtectState: 保护状态,true:表示开启了操作保护,false:表示未开启操作保护。
12750
+ :type ProtectState: bool
12751
+ :param _OperatorUin: 操作保护的设置uin。
12752
+ 注意:此字段可能返回 null,表示取不到有效值。
12753
+ :type OperatorUin: str
12754
+ :param _Description: 设置操作保护时的描述信息。
12755
+ 注意:此字段可能返回 null,表示取不到有效值。
12756
+ :type Description: str
12757
+ :param _ModifyTime: 最后修改时间。
12758
+ 注意:此字段可能返回 null,表示取不到有效值。
12759
+ :type ModifyTime: str
12760
+ """
12761
+ self._LoadBalancerId = None
12762
+ self._ProtectState = None
12763
+ self._OperatorUin = None
12764
+ self._Description = None
12765
+ self._ModifyTime = None
12766
+
12767
+ @property
12768
+ def LoadBalancerId(self):
12769
+ """负载均衡实例 ID。
12770
+ :rtype: str
12771
+ """
12772
+ return self._LoadBalancerId
12773
+
12774
+ @LoadBalancerId.setter
12775
+ def LoadBalancerId(self, LoadBalancerId):
12776
+ self._LoadBalancerId = LoadBalancerId
12777
+
12778
+ @property
12779
+ def ProtectState(self):
12780
+ """保护状态,true:表示开启了操作保护,false:表示未开启操作保护。
12781
+ :rtype: bool
12782
+ """
12783
+ return self._ProtectState
12784
+
12785
+ @ProtectState.setter
12786
+ def ProtectState(self, ProtectState):
12787
+ self._ProtectState = ProtectState
12788
+
12789
+ @property
12790
+ def OperatorUin(self):
12791
+ """操作保护的设置uin。
12792
+ 注意:此字段可能返回 null,表示取不到有效值。
12793
+ :rtype: str
12794
+ """
12795
+ return self._OperatorUin
12796
+
12797
+ @OperatorUin.setter
12798
+ def OperatorUin(self, OperatorUin):
12799
+ self._OperatorUin = OperatorUin
12800
+
12801
+ @property
12802
+ def Description(self):
12803
+ """设置操作保护时的描述信息。
12804
+ 注意:此字段可能返回 null,表示取不到有效值。
12805
+ :rtype: str
12806
+ """
12807
+ return self._Description
12808
+
12809
+ @Description.setter
12810
+ def Description(self, Description):
12811
+ self._Description = Description
12812
+
12813
+ @property
12814
+ def ModifyTime(self):
12815
+ """最后修改时间。
12816
+ 注意:此字段可能返回 null,表示取不到有效值。
12817
+ :rtype: str
12818
+ """
12819
+ return self._ModifyTime
12820
+
12821
+ @ModifyTime.setter
12822
+ def ModifyTime(self, ModifyTime):
12823
+ self._ModifyTime = ModifyTime
12824
+
12825
+
12826
+ def _deserialize(self, params):
12827
+ self._LoadBalancerId = params.get("LoadBalancerId")
12828
+ self._ProtectState = params.get("ProtectState")
12829
+ self._OperatorUin = params.get("OperatorUin")
12830
+ self._Description = params.get("Description")
12831
+ self._ModifyTime = params.get("ModifyTime")
12832
+ memeber_set = set(params.keys())
12833
+ for name, value in vars(self).items():
12834
+ property_name = name[1:]
12835
+ if property_name in memeber_set:
12836
+ memeber_set.remove(property_name)
12837
+ if len(memeber_set) > 0:
12838
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12839
+
12840
+
12841
+
12656
12842
  class LbRsItem(AbstractModel):
12657
12843
  """查询类型
12658
12844
 
@@ -19001,6 +19001,8 @@ class InspectionTaskSettings(AbstractModel):
19001
19001
  :type Selected: str
19002
19002
  :param _Enable: 是否开启监控
19003
19003
  :type Enable: str
19004
+ :param _SettingsJson: 事件Json模板
19005
+ :type SettingsJson: str
19004
19006
  """
19005
19007
  self._TaskType = None
19006
19008
  self._Group = None
@@ -19008,6 +19010,7 @@ class InspectionTaskSettings(AbstractModel):
19008
19010
  self._TaskSettings = None
19009
19011
  self._Selected = None
19010
19012
  self._Enable = None
19013
+ self._SettingsJson = None
19011
19014
 
19012
19015
  @property
19013
19016
  def TaskType(self):
@@ -19075,6 +19078,17 @@ class InspectionTaskSettings(AbstractModel):
19075
19078
  def Enable(self, Enable):
19076
19079
  self._Enable = Enable
19077
19080
 
19081
+ @property
19082
+ def SettingsJson(self):
19083
+ """事件Json模板
19084
+ :rtype: str
19085
+ """
19086
+ return self._SettingsJson
19087
+
19088
+ @SettingsJson.setter
19089
+ def SettingsJson(self, SettingsJson):
19090
+ self._SettingsJson = SettingsJson
19091
+
19078
19092
 
19079
19093
  def _deserialize(self, params):
19080
19094
  self._TaskType = params.get("TaskType")
@@ -19088,6 +19102,7 @@ class InspectionTaskSettings(AbstractModel):
19088
19102
  self._TaskSettings.append(obj)
19089
19103
  self._Selected = params.get("Selected")
19090
19104
  self._Enable = params.get("Enable")
19105
+ self._SettingsJson = params.get("SettingsJson")
19091
19106
  memeber_set = set(params.keys())
19092
19107
  for name, value in vars(self).items():
19093
19108
  property_name = name[1:]
@@ -25521,6 +25536,8 @@ class OverviewRow(AbstractModel):
25521
25536
  :type StoreFileSize: float
25522
25537
  :param _Operation: regions,点击可跳转
25523
25538
  :type Operation: str
25539
+ :param _StoreFileNum: StoreFile数量
25540
+ :type StoreFileNum: float
25524
25541
  """
25525
25542
  self._Table = None
25526
25543
  self._ReadRequestCount = None
@@ -25528,6 +25545,7 @@ class OverviewRow(AbstractModel):
25528
25545
  self._MemstoreSize = None
25529
25546
  self._StoreFileSize = None
25530
25547
  self._Operation = None
25548
+ self._StoreFileNum = None
25531
25549
 
25532
25550
  @property
25533
25551
  def Table(self):
@@ -25595,6 +25613,17 @@ class OverviewRow(AbstractModel):
25595
25613
  def Operation(self, Operation):
25596
25614
  self._Operation = Operation
25597
25615
 
25616
+ @property
25617
+ def StoreFileNum(self):
25618
+ """StoreFile数量
25619
+ :rtype: float
25620
+ """
25621
+ return self._StoreFileNum
25622
+
25623
+ @StoreFileNum.setter
25624
+ def StoreFileNum(self, StoreFileNum):
25625
+ self._StoreFileNum = StoreFileNum
25626
+
25598
25627
 
25599
25628
  def _deserialize(self, params):
25600
25629
  self._Table = params.get("Table")
@@ -25603,6 +25632,7 @@ class OverviewRow(AbstractModel):
25603
25632
  self._MemstoreSize = params.get("MemstoreSize")
25604
25633
  self._StoreFileSize = params.get("StoreFileSize")
25605
25634
  self._Operation = params.get("Operation")
25635
+ self._StoreFileNum = params.get("StoreFileNum")
25606
25636
  memeber_set = set(params.keys())
25607
25637
  for name, value in vars(self).items():
25608
25638
  property_name = name[1:]
@@ -25660,7 +25660,7 @@ class FlowDetailInfo(AbstractModel):
25660
25660
  :type FlowName: str
25661
25661
  :param _FlowType: 合同流程的类别分类(如销售合同/入职合同等)。
25662
25662
  :type FlowType: str
25663
- :param _FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **21** : 已解除</li></ul>
25663
+ :param _FlowStatus: 合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **16** : 已失效(可能因为参与方修改姓名等原因)</li> <li> **21** : 已解除</li></ul>
25664
25664
  :type FlowStatus: int
25665
25665
  :param _FlowMessage: 当合同流程状态为已拒签(即 FlowStatus=3)或已撤销(即 FlowStatus=6)时,此字段 FlowMessage 为拒签或撤销原因。
25666
25666
  :type FlowMessage: str
@@ -25721,7 +25721,7 @@ class FlowDetailInfo(AbstractModel):
25721
25721
 
25722
25722
  @property
25723
25723
  def FlowStatus(self):
25724
- """合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **21** : 已解除</li></ul>
25724
+ """合同流程当前的签署状态, 会存在下列的状态值 <ul><li> **0** : 未开启流程(合同中不存在填写环节)</li> <li> **1** : 待签署</li> <li> **2** : 部分签署</li> <li> **3** : 已拒签</li> <li> **4** : 已签署</li> <li> **5** : 已过期</li> <li> **6** : 已撤销</li> <li> **7** : 未开启流程(合同中存在填写环节)</li> <li> **8** : 等待填写</li> <li> **9** : 部分填写</li> <li> **10** : 已拒填</li> <li> **16** : 已失效(可能因为参与方修改姓名等原因)</li> <li> **21** : 已解除</li></ul>
25725
25725
  :rtype: int
25726
25726
  """
25727
25727
  return self._FlowStatus