tencentcloud-sdk-python 3.0.1354__py2.py3-none-any.whl → 3.0.1355__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.
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1354'
17
+ __version__ = '3.0.1355'
@@ -904,6 +904,29 @@ class CfwClient(AbstractClient):
904
904
  raise TencentCloudSDKException(type(e).__name__, str(e))
905
905
 
906
906
 
907
+ def DescribeCfwInsStatus(self, request):
908
+ """cfw实例运行状态查询
909
+
910
+ :param request: Request instance for DescribeCfwInsStatus.
911
+ :type request: :class:`tencentcloud.cfw.v20190904.models.DescribeCfwInsStatusRequest`
912
+ :rtype: :class:`tencentcloud.cfw.v20190904.models.DescribeCfwInsStatusResponse`
913
+
914
+ """
915
+ try:
916
+ params = request._serialize()
917
+ headers = request.headers
918
+ body = self.call("DescribeCfwInsStatus", params, headers=headers)
919
+ response = json.loads(body)
920
+ model = models.DescribeCfwInsStatusResponse()
921
+ model._deserialize(response["Response"])
922
+ return model
923
+ except Exception as e:
924
+ if isinstance(e, TencentCloudSDKException):
925
+ raise
926
+ else:
927
+ raise TencentCloudSDKException(type(e).__name__, str(e))
928
+
929
+
907
930
  def DescribeDefenseSwitch(self, request):
908
931
  """获取入侵防御按钮列表
909
932
 
@@ -1731,6 +1731,159 @@ class BlockIgnoreRule(AbstractModel):
1731
1731
 
1732
1732
 
1733
1733
 
1734
+ class CfwInsStatus(AbstractModel):
1735
+ """防火墙实例运行状态
1736
+
1737
+ """
1738
+
1739
+ def __init__(self):
1740
+ r"""
1741
+ :param _CfwInsId: 防火墙实例id
1742
+ :type CfwInsId: str
1743
+ :param _FwType: 防火墙类型,nat:nat防火墙;ew:vpc间防火墙
1744
+ :type FwType: str
1745
+ :param _Region: 实例所属地域
1746
+ 注意:此字段可能返回 null,表示取不到有效值。
1747
+ :type Region: str
1748
+ :param _Status: 实例运行状态,Running:正常运行;BypassAutoFix:bypass修复;Updating:升级中;Expand:扩容中;BypassManual:手动触发bypass中;BypassAuto:自动触发bypass中
1749
+ :type Status: str
1750
+ :param _EventTime: 事件时间
1751
+ 注意:此字段可能返回 null,表示取不到有效值。
1752
+ :type EventTime: str
1753
+ :param _RecoverTime: 恢复时间
1754
+ 注意:此字段可能返回 null,表示取不到有效值。
1755
+ :type RecoverTime: str
1756
+ :param _CfwInsName: 实例名称
1757
+ 注意:此字段可能返回 null,表示取不到有效值。
1758
+ :type CfwInsName: str
1759
+ :param _TrafficMode: Normal: 正常模式
1760
+ OnlyRoute: 透明模式
1761
+ 注意:此字段可能返回 null,表示取不到有效值。
1762
+ :type TrafficMode: str
1763
+ """
1764
+ self._CfwInsId = None
1765
+ self._FwType = None
1766
+ self._Region = None
1767
+ self._Status = None
1768
+ self._EventTime = None
1769
+ self._RecoverTime = None
1770
+ self._CfwInsName = None
1771
+ self._TrafficMode = None
1772
+
1773
+ @property
1774
+ def CfwInsId(self):
1775
+ """防火墙实例id
1776
+ :rtype: str
1777
+ """
1778
+ return self._CfwInsId
1779
+
1780
+ @CfwInsId.setter
1781
+ def CfwInsId(self, CfwInsId):
1782
+ self._CfwInsId = CfwInsId
1783
+
1784
+ @property
1785
+ def FwType(self):
1786
+ """防火墙类型,nat:nat防火墙;ew:vpc间防火墙
1787
+ :rtype: str
1788
+ """
1789
+ return self._FwType
1790
+
1791
+ @FwType.setter
1792
+ def FwType(self, FwType):
1793
+ self._FwType = FwType
1794
+
1795
+ @property
1796
+ def Region(self):
1797
+ """实例所属地域
1798
+ 注意:此字段可能返回 null,表示取不到有效值。
1799
+ :rtype: str
1800
+ """
1801
+ return self._Region
1802
+
1803
+ @Region.setter
1804
+ def Region(self, Region):
1805
+ self._Region = Region
1806
+
1807
+ @property
1808
+ def Status(self):
1809
+ """实例运行状态,Running:正常运行;BypassAutoFix:bypass修复;Updating:升级中;Expand:扩容中;BypassManual:手动触发bypass中;BypassAuto:自动触发bypass中
1810
+ :rtype: str
1811
+ """
1812
+ return self._Status
1813
+
1814
+ @Status.setter
1815
+ def Status(self, Status):
1816
+ self._Status = Status
1817
+
1818
+ @property
1819
+ def EventTime(self):
1820
+ """事件时间
1821
+ 注意:此字段可能返回 null,表示取不到有效值。
1822
+ :rtype: str
1823
+ """
1824
+ return self._EventTime
1825
+
1826
+ @EventTime.setter
1827
+ def EventTime(self, EventTime):
1828
+ self._EventTime = EventTime
1829
+
1830
+ @property
1831
+ def RecoverTime(self):
1832
+ """恢复时间
1833
+ 注意:此字段可能返回 null,表示取不到有效值。
1834
+ :rtype: str
1835
+ """
1836
+ return self._RecoverTime
1837
+
1838
+ @RecoverTime.setter
1839
+ def RecoverTime(self, RecoverTime):
1840
+ self._RecoverTime = RecoverTime
1841
+
1842
+ @property
1843
+ def CfwInsName(self):
1844
+ """实例名称
1845
+ 注意:此字段可能返回 null,表示取不到有效值。
1846
+ :rtype: str
1847
+ """
1848
+ return self._CfwInsName
1849
+
1850
+ @CfwInsName.setter
1851
+ def CfwInsName(self, CfwInsName):
1852
+ self._CfwInsName = CfwInsName
1853
+
1854
+ @property
1855
+ def TrafficMode(self):
1856
+ """Normal: 正常模式
1857
+ OnlyRoute: 透明模式
1858
+ 注意:此字段可能返回 null,表示取不到有效值。
1859
+ :rtype: str
1860
+ """
1861
+ return self._TrafficMode
1862
+
1863
+ @TrafficMode.setter
1864
+ def TrafficMode(self, TrafficMode):
1865
+ self._TrafficMode = TrafficMode
1866
+
1867
+
1868
+ def _deserialize(self, params):
1869
+ self._CfwInsId = params.get("CfwInsId")
1870
+ self._FwType = params.get("FwType")
1871
+ self._Region = params.get("Region")
1872
+ self._Status = params.get("Status")
1873
+ self._EventTime = params.get("EventTime")
1874
+ self._RecoverTime = params.get("RecoverTime")
1875
+ self._CfwInsName = params.get("CfwInsName")
1876
+ self._TrafficMode = params.get("TrafficMode")
1877
+ memeber_set = set(params.keys())
1878
+ for name, value in vars(self).items():
1879
+ property_name = name[1:]
1880
+ if property_name in memeber_set:
1881
+ memeber_set.remove(property_name)
1882
+ if len(memeber_set) > 0:
1883
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1884
+
1885
+
1886
+
1734
1887
  class CfwNatDnatRule(AbstractModel):
1735
1888
  """NAT防火墙Dnat规则
1736
1889
 
@@ -8690,6 +8843,77 @@ class DescribeCfwEipsResponse(AbstractModel):
8690
8843
  self._RequestId = params.get("RequestId")
8691
8844
 
8692
8845
 
8846
+ class DescribeCfwInsStatusRequest(AbstractModel):
8847
+ """DescribeCfwInsStatus请求参数结构体
8848
+
8849
+ """
8850
+
8851
+
8852
+ class DescribeCfwInsStatusResponse(AbstractModel):
8853
+ """DescribeCfwInsStatus返回参数结构体
8854
+
8855
+ """
8856
+
8857
+ def __init__(self):
8858
+ r"""
8859
+ :param _CfwInsStatus: 防火墙实例运行状态
8860
+ 注意:此字段可能返回 null,表示取不到有效值。
8861
+ :type CfwInsStatus: list of CfwInsStatus
8862
+ :param _TotalCount: 0
8863
+ :type TotalCount: int
8864
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8865
+ :type RequestId: str
8866
+ """
8867
+ self._CfwInsStatus = None
8868
+ self._TotalCount = None
8869
+ self._RequestId = None
8870
+
8871
+ @property
8872
+ def CfwInsStatus(self):
8873
+ """防火墙实例运行状态
8874
+ 注意:此字段可能返回 null,表示取不到有效值。
8875
+ :rtype: list of CfwInsStatus
8876
+ """
8877
+ return self._CfwInsStatus
8878
+
8879
+ @CfwInsStatus.setter
8880
+ def CfwInsStatus(self, CfwInsStatus):
8881
+ self._CfwInsStatus = CfwInsStatus
8882
+
8883
+ @property
8884
+ def TotalCount(self):
8885
+ """0
8886
+ :rtype: int
8887
+ """
8888
+ return self._TotalCount
8889
+
8890
+ @TotalCount.setter
8891
+ def TotalCount(self, TotalCount):
8892
+ self._TotalCount = TotalCount
8893
+
8894
+ @property
8895
+ def RequestId(self):
8896
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8897
+ :rtype: str
8898
+ """
8899
+ return self._RequestId
8900
+
8901
+ @RequestId.setter
8902
+ def RequestId(self, RequestId):
8903
+ self._RequestId = RequestId
8904
+
8905
+
8906
+ def _deserialize(self, params):
8907
+ if params.get("CfwInsStatus") is not None:
8908
+ self._CfwInsStatus = []
8909
+ for item in params.get("CfwInsStatus"):
8910
+ obj = CfwInsStatus()
8911
+ obj._deserialize(item)
8912
+ self._CfwInsStatus.append(obj)
8913
+ self._TotalCount = params.get("TotalCount")
8914
+ self._RequestId = params.get("RequestId")
8915
+
8916
+
8693
8917
  class DescribeDefenseSwitchRequest(AbstractModel):
8694
8918
  """DescribeDefenseSwitch请求参数结构体
8695
8919
 
@@ -734,11 +734,20 @@ class AndroidInstanceTaskStatus(AbstractModel):
734
734
  :type AndroidInstanceId: str
735
735
  :param _TaskResult: 任务执行结果描述,针对某些任务,可以是可解析的 json
736
736
  :type TaskResult: str
737
+ :param _TaskType: 任务类型
738
+ :type TaskType: str
739
+ :param _CreateTime: 任务创建时间
740
+ :type CreateTime: str
741
+ :param _CompleteTime: 任务完成时间
742
+ :type CompleteTime: str
737
743
  """
738
744
  self._TaskId = None
739
745
  self._Status = None
740
746
  self._AndroidInstanceId = None
741
747
  self._TaskResult = None
748
+ self._TaskType = None
749
+ self._CreateTime = None
750
+ self._CompleteTime = None
742
751
 
743
752
  @property
744
753
  def TaskId(self):
@@ -784,12 +793,48 @@ class AndroidInstanceTaskStatus(AbstractModel):
784
793
  def TaskResult(self, TaskResult):
785
794
  self._TaskResult = TaskResult
786
795
 
796
+ @property
797
+ def TaskType(self):
798
+ """任务类型
799
+ :rtype: str
800
+ """
801
+ return self._TaskType
802
+
803
+ @TaskType.setter
804
+ def TaskType(self, TaskType):
805
+ self._TaskType = TaskType
806
+
807
+ @property
808
+ def CreateTime(self):
809
+ """任务创建时间
810
+ :rtype: str
811
+ """
812
+ return self._CreateTime
813
+
814
+ @CreateTime.setter
815
+ def CreateTime(self, CreateTime):
816
+ self._CreateTime = CreateTime
817
+
818
+ @property
819
+ def CompleteTime(self):
820
+ """任务完成时间
821
+ :rtype: str
822
+ """
823
+ return self._CompleteTime
824
+
825
+ @CompleteTime.setter
826
+ def CompleteTime(self, CompleteTime):
827
+ self._CompleteTime = CompleteTime
828
+
787
829
 
788
830
  def _deserialize(self, params):
789
831
  self._TaskId = params.get("TaskId")
790
832
  self._Status = params.get("Status")
791
833
  self._AndroidInstanceId = params.get("AndroidInstanceId")
792
834
  self._TaskResult = params.get("TaskResult")
835
+ self._TaskType = params.get("TaskType")
836
+ self._CreateTime = params.get("CreateTime")
837
+ self._CompleteTime = params.get("CompleteTime")
793
838
  memeber_set = set(params.keys())
794
839
  for name, value in vars(self).items():
795
840
  property_name = name[1:]
@@ -2738,14 +2783,23 @@ class DescribeAndroidInstanceTasksStatusRequest(AbstractModel):
2738
2783
 
2739
2784
  def __init__(self):
2740
2785
  r"""
2741
- :param _TaskIds: 任务ID列表
2786
+ :param _TaskIds: 任务 ID 列表
2742
2787
  :type TaskIds: list of str
2788
+ :param _Filter: 条件过滤器
2789
+ :type Filter: list of Filter
2790
+ :param _Offset: 偏移量,默认为 0
2791
+ :type Offset: int
2792
+ :param _Limit: 限制量,默认为20,最大值为100
2793
+ :type Limit: int
2743
2794
  """
2744
2795
  self._TaskIds = None
2796
+ self._Filter = None
2797
+ self._Offset = None
2798
+ self._Limit = None
2745
2799
 
2746
2800
  @property
2747
2801
  def TaskIds(self):
2748
- """任务ID列表
2802
+ """任务 ID 列表
2749
2803
  :rtype: list of str
2750
2804
  """
2751
2805
  return self._TaskIds
@@ -2754,9 +2808,50 @@ class DescribeAndroidInstanceTasksStatusRequest(AbstractModel):
2754
2808
  def TaskIds(self, TaskIds):
2755
2809
  self._TaskIds = TaskIds
2756
2810
 
2811
+ @property
2812
+ def Filter(self):
2813
+ """条件过滤器
2814
+ :rtype: list of Filter
2815
+ """
2816
+ return self._Filter
2817
+
2818
+ @Filter.setter
2819
+ def Filter(self, Filter):
2820
+ self._Filter = Filter
2821
+
2822
+ @property
2823
+ def Offset(self):
2824
+ """偏移量,默认为 0
2825
+ :rtype: int
2826
+ """
2827
+ return self._Offset
2828
+
2829
+ @Offset.setter
2830
+ def Offset(self, Offset):
2831
+ self._Offset = Offset
2832
+
2833
+ @property
2834
+ def Limit(self):
2835
+ """限制量,默认为20,最大值为100
2836
+ :rtype: int
2837
+ """
2838
+ return self._Limit
2839
+
2840
+ @Limit.setter
2841
+ def Limit(self, Limit):
2842
+ self._Limit = Limit
2843
+
2757
2844
 
2758
2845
  def _deserialize(self, params):
2759
2846
  self._TaskIds = params.get("TaskIds")
2847
+ if params.get("Filter") is not None:
2848
+ self._Filter = []
2849
+ for item in params.get("Filter"):
2850
+ obj = Filter()
2851
+ obj._deserialize(item)
2852
+ self._Filter.append(obj)
2853
+ self._Offset = params.get("Offset")
2854
+ self._Limit = params.get("Limit")
2760
2855
  memeber_set = set(params.keys())
2761
2856
  for name, value in vars(self).items():
2762
2857
  property_name = name[1:]
@@ -2776,10 +2871,13 @@ class DescribeAndroidInstanceTasksStatusResponse(AbstractModel):
2776
2871
  r"""
2777
2872
  :param _TaskStatusSet: 任务状态集合
2778
2873
  :type TaskStatusSet: list of AndroidInstanceTaskStatus
2874
+ :param _Total: 任务总数量
2875
+ :type Total: int
2779
2876
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2780
2877
  :type RequestId: str
2781
2878
  """
2782
2879
  self._TaskStatusSet = None
2880
+ self._Total = None
2783
2881
  self._RequestId = None
2784
2882
 
2785
2883
  @property
@@ -2793,6 +2891,17 @@ class DescribeAndroidInstanceTasksStatusResponse(AbstractModel):
2793
2891
  def TaskStatusSet(self, TaskStatusSet):
2794
2892
  self._TaskStatusSet = TaskStatusSet
2795
2893
 
2894
+ @property
2895
+ def Total(self):
2896
+ """任务总数量
2897
+ :rtype: int
2898
+ """
2899
+ return self._Total
2900
+
2901
+ @Total.setter
2902
+ def Total(self, Total):
2903
+ self._Total = Total
2904
+
2796
2905
  @property
2797
2906
  def RequestId(self):
2798
2907
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -2812,6 +2921,7 @@ class DescribeAndroidInstanceTasksStatusResponse(AbstractModel):
2812
2921
  obj = AndroidInstanceTaskStatus()
2813
2922
  obj._deserialize(item)
2814
2923
  self._TaskStatusSet.append(obj)
2924
+ self._Total = params.get("Total")
2815
2925
  self._RequestId = params.get("RequestId")
2816
2926
 
2817
2927
 
@@ -259,7 +259,7 @@ class IotvideoindustryClient(AbstractClient):
259
259
 
260
260
 
261
261
  def CreateLiveRecordPlan(self, request):
262
- """创建直播录制计划
262
+ """创建直播录制计划,直播录制接口,暂时下线中,只有国标接口支持云端录制
263
263
 
264
264
  :param request: Request instance for CreateLiveRecordPlan.
265
265
  :type request: :class:`tencentcloud.iotvideoindustry.v20201201.models.CreateLiveRecordPlanRequest`
@@ -12233,6 +12233,8 @@ class IDCardInfoResult(AbstractModel):
12233
12233
  :type ImageUrl: str
12234
12234
  :param _PortraitUrl: 身份证头像照片的地址(人像面)
12235
12235
  :type PortraitUrl: str
12236
+ :param _IntErrorCode: 整型错误码
12237
+ :type IntErrorCode: int
12236
12238
  """
12237
12239
  self._WarnCodes = None
12238
12240
  self._Address = None
@@ -12248,6 +12250,7 @@ class IDCardInfoResult(AbstractModel):
12248
12250
  self._ErrorMessage = None
12249
12251
  self._ImageUrl = None
12250
12252
  self._PortraitUrl = None
12253
+ self._IntErrorCode = None
12251
12254
 
12252
12255
  @property
12253
12256
  def WarnCodes(self):
@@ -12415,6 +12418,17 @@ class IDCardInfoResult(AbstractModel):
12415
12418
  def PortraitUrl(self, PortraitUrl):
12416
12419
  self._PortraitUrl = PortraitUrl
12417
12420
 
12421
+ @property
12422
+ def IntErrorCode(self):
12423
+ """整型错误码
12424
+ :rtype: int
12425
+ """
12426
+ return self._IntErrorCode
12427
+
12428
+ @IntErrorCode.setter
12429
+ def IntErrorCode(self, IntErrorCode):
12430
+ self._IntErrorCode = IntErrorCode
12431
+
12418
12432
 
12419
12433
  def _deserialize(self, params):
12420
12434
  self._WarnCodes = params.get("WarnCodes")
@@ -12431,6 +12445,7 @@ class IDCardInfoResult(AbstractModel):
12431
12445
  self._ErrorMessage = params.get("ErrorMessage")
12432
12446
  self._ImageUrl = params.get("ImageUrl")
12433
12447
  self._PortraitUrl = params.get("PortraitUrl")
12448
+ self._IntErrorCode = params.get("IntErrorCode")
12434
12449
  memeber_set = set(params.keys())
12435
12450
  for name, value in vars(self).items():
12436
12451
  property_name = name[1:]
@@ -6448,7 +6448,10 @@ class ClusterInfoItem(AbstractModel):
6448
6448
  :type ClusterNodeNum: int
6449
6449
  :param _Region: 集群区域
6450
6450
  :type Region: str
6451
- :param _DefenderStatus: 防护状态: 已防护: Defended 未防护: UnDefended
6451
+ :param _DefenderStatus: 防护状态:
6452
+ 已防护: Defended
6453
+ 未防护: UnDefended
6454
+ 部分防护: PartDefened
6452
6455
  :type DefenderStatus: str
6453
6456
  :param _ClusterStatus: 集群状态
6454
6457
  :type ClusterStatus: str
@@ -6617,7 +6620,10 @@ class ClusterInfoItem(AbstractModel):
6617
6620
 
6618
6621
  @property
6619
6622
  def DefenderStatus(self):
6620
- """防护状态: 已防护: Defended 未防护: UnDefended
6623
+ """防护状态:
6624
+ 已防护: Defended
6625
+ 未防护: UnDefended
6626
+ 部分防护: PartDefened
6621
6627
  :rtype: str
6622
6628
  """
6623
6629
  return self._DefenderStatus
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1354
3
+ Version: 3.0.1355
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
50
50
  QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
51
51
  QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
52
52
  QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
53
- tencentcloud/__init__.py,sha256=U6W3bTmVoktSq5BB_JjMdfgY8p_mlKhEshMfyzh3aqY,631
53
+ tencentcloud/__init__.py,sha256=dMTeCgwZEvIag3N6rqiJPZdXbbNCjIA3xwG3vei6P0E,631
54
54
  tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  tencentcloud/aai/v20180522/aai_client.py,sha256=UNkXLBkE-C-wBaan9RD0U4t2H-XCJDTPgWDFYzUitgE,5497
@@ -325,9 +325,9 @@ tencentcloud/cfs/v20190719/errorcodes.py,sha256=fAooEvSCsoA7spNuZ71SPpvkGbmD0fhP
325
325
  tencentcloud/cfs/v20190719/models.py,sha256=1XkYJENrdfCK0FnV-GFhlDcSel2a_KNyVD-YavBYn48,257285
326
326
  tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
327
  tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
328
- tencentcloud/cfw/v20190904/cfw_client.py,sha256=77fuTqqNEGQCarAe3qF5bU5BJrp3MoGyWNAn26mdldc,103563
328
+ tencentcloud/cfw/v20190904/cfw_client.py,sha256=dHtzNnLCllDIVmciEAq7wjHbSN04vbjln-Xoy33Pb_M,104459
329
329
  tencentcloud/cfw/v20190904/errorcodes.py,sha256=2y2EJLTrMm-Ru0J3RAq8x59OHTtWQrRQMTQOf3_D1v0,1836
330
- tencentcloud/cfw/v20190904/models.py,sha256=GgmWBeXdMyP2lvZh9Q388Y-pDr6dsby9cmQB-54X5Ao,730850
330
+ tencentcloud/cfw/v20190904/models.py,sha256=lx1Syqc32JmOahyUGwew3_Q0cjyBssW-uoly2dTbMSM,737730
331
331
  tencentcloud/chc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
332
  tencentcloud/chc/v20230418/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
333
  tencentcloud/chc/v20230418/chc_client.py,sha256=YtfTepui9TEwZyO0A9M2szDUvbUKoiyvrhCGnhyj3jg,34258
@@ -666,7 +666,7 @@ tencentcloud/gs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
666
666
  tencentcloud/gs/v20191118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
667
667
  tencentcloud/gs/v20191118/errorcodes.py,sha256=NXWVvYiIqkYcpZ3Ip5yOrFaiV-MNtkxoasBbPZ2T5Zc,2250
668
668
  tencentcloud/gs/v20191118/gs_client.py,sha256=OtoU90nzdxDMKEIr_UW45Mg5QVxqGX8L6RyINTAwqUU,41172
669
- tencentcloud/gs/v20191118/models.py,sha256=TwfQne3v-rE_aK4TORsXE6ATqvia4NuZrtY2UhIPjZM,174392
669
+ tencentcloud/gs/v20191118/models.py,sha256=jQngR1bUhCAC-4TQ8YE_OeixvvJNqRooAXEj8_AsoT8,177194
670
670
  tencentcloud/gse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
671
671
  tencentcloud/gse/v20191112/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
672
672
  tencentcloud/gse/v20191112/errorcodes.py,sha256=aKN_XsLdBZPXK6Kum2QHZq-i_dAg5ifSEH-shEhDjUc,2578
@@ -800,7 +800,7 @@ tencentcloud/iotvideo/v20211125/models.py,sha256=LLMed4cChe0X9VAzdLoirQZMBG4UAkp
800
800
  tencentcloud/iotvideoindustry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
801
801
  tencentcloud/iotvideoindustry/v20201201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
802
802
  tencentcloud/iotvideoindustry/v20201201/errorcodes.py,sha256=hVQPM5A_YiGX7o0YPbo6iap-g69JULtJiCUIbTjwTEk,8583
803
- tencentcloud/iotvideoindustry/v20201201/iotvideoindustry_client.py,sha256=FiF6bX8BgiPLDqXHCUDuxshdNBZyzSXtVqy70uDNR5k,100421
803
+ tencentcloud/iotvideoindustry/v20201201/iotvideoindustry_client.py,sha256=Ac3PuWO0QEAFDqG-lg4TCxygoPbYx4vINr-V4Pad7IM,100499
804
804
  tencentcloud/iotvideoindustry/v20201201/models.py,sha256=D3S7G6ExY5qEoc2KKYth80K5QomDdzRqivroO8Qb5gc,441242
805
805
  tencentcloud/irp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
806
806
  tencentcloud/irp/v20220324/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -966,7 +966,7 @@ tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=Hij5VCB_ugzfpXsUwHQPN5Wj
966
966
  tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
967
967
  tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
968
968
  tencentcloud/ocr/v20181119/errorcodes.py,sha256=L12AZxzshizeJibob00zcd-pBSaeP5XE7OlNM1Firlk,7012
969
- tencentcloud/ocr/v20181119/models.py,sha256=5hugimjsrQ_XanDJuA5-gYbnas8wJRUi0xY-v76XjKk,1322468
969
+ tencentcloud/ocr/v20181119/models.py,sha256=-W7MYSfEYc5bSt5la_CG9dMEbo8kxCO5-wzNI7H3z8A,1322882
970
970
  tencentcloud/ocr/v20181119/ocr_client.py,sha256=JmmNKn2Xwr8f54I9qoW3YNeWTV2rmOI1d3lPxiys7ew,118849
971
971
  tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
972
972
  tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1198,7 +1198,7 @@ tencentcloud/tcr/v20190924/tcr_client.py,sha256=BSVCP77Bzc-gYERaC_01FAeqFWokzMI4
1198
1198
  tencentcloud/tcss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1199
1199
  tencentcloud/tcss/v20201101/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1200
1200
  tencentcloud/tcss/v20201101/errorcodes.py,sha256=euCyJ7MoXWDjpZzcMXRqRCkAguFBt0VYJgOOLy37_M0,3916
1201
- tencentcloud/tcss/v20201101/models.py,sha256=QkYWeIn5VtCx13Zi0k4k-JENSD6aZ2ZmO9NPtfBhrTw,2305591
1201
+ tencentcloud/tcss/v20201101/models.py,sha256=lMnQo8kwcNweIVuj5OBeXZZ8u6oeRwPtpT4oFKl169w,2305647
1202
1202
  tencentcloud/tcss/v20201101/tcss_client.py,sha256=ZGaNAXzDRjSsjhCVk2S2ddqKvQ3KC1hfiIqyfNPZ00E,323525
1203
1203
  tencentcloud/tdcpg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1204
1204
  tencentcloud/tdcpg/v20211118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1503,8 +1503,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1503
1503
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
1504
1504
  tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
1505
1505
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
1506
- tencentcloud_sdk_python-3.0.1354.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1507
- tencentcloud_sdk_python-3.0.1354.dist-info/METADATA,sha256=iR0yhlX9-KwfUe3iTkzXaA_HsACT5ekT5ZMcnwqYYF0,1613
1508
- tencentcloud_sdk_python-3.0.1354.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1509
- tencentcloud_sdk_python-3.0.1354.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1510
- tencentcloud_sdk_python-3.0.1354.dist-info/RECORD,,
1506
+ tencentcloud_sdk_python-3.0.1355.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1507
+ tencentcloud_sdk_python-3.0.1355.dist-info/METADATA,sha256=9Tn9AiPequ3Sut-C4j0pByk0yRxxYIH_3FMFVzfzHE4,1613
1508
+ tencentcloud_sdk_python-3.0.1355.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1509
+ tencentcloud_sdk_python-3.0.1355.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1510
+ tencentcloud_sdk_python-3.0.1355.dist-info/RECORD,,