tencentcloud-sdk-python-intl-en 3.0.1205__py2.py3-none-any.whl → 3.0.1207__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.

Potentially problematic release.


This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.

tencentcloud/__init__.py CHANGED
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = '3.0.1205'
16
+ __version__ = '3.0.1207'
@@ -95,6 +95,29 @@ class BillingClient(AbstractClient):
95
95
  raise TencentCloudSDKException(type(e).__name__, str(e))
96
96
 
97
97
 
98
+ def DescribeAllocationUnitDetail(self, request):
99
+ """Query the details of a cost allocation unit.
100
+
101
+ :param request: Request instance for DescribeAllocationUnitDetail.
102
+ :type request: :class:`tencentcloud.billing.v20180709.models.DescribeAllocationUnitDetailRequest`
103
+ :rtype: :class:`tencentcloud.billing.v20180709.models.DescribeAllocationUnitDetailResponse`
104
+
105
+ """
106
+ try:
107
+ params = request._serialize()
108
+ headers = request.headers
109
+ body = self.call("DescribeAllocationUnitDetail", params, headers=headers)
110
+ response = json.loads(body)
111
+ model = models.DescribeAllocationUnitDetailResponse()
112
+ model._deserialize(response["Response"])
113
+ return model
114
+ except Exception as e:
115
+ if isinstance(e, TencentCloudSDKException):
116
+ raise
117
+ else:
118
+ raise TencentCloudSDKException(type(e).__name__, str(e))
119
+
120
+
98
121
  def DescribeBillAdjustInfo(self, request):
99
122
  """This API is used to check whether the current UIN has any adjustment, enabling customers to proactively obtain the adjustment status faster.
100
123
 
@@ -7647,6 +7647,220 @@ class DescribeAccountBalanceResponse(AbstractModel):
7647
7647
  self._RequestId = params.get("RequestId")
7648
7648
 
7649
7649
 
7650
+ class DescribeAllocationUnitDetailRequest(AbstractModel):
7651
+ """DescribeAllocationUnitDetail request structure.
7652
+
7653
+ """
7654
+
7655
+ def __init__(self):
7656
+ r"""
7657
+ :param _Id: ID of the queried cost allocation unit.
7658
+ :type Id: int
7659
+ :param _Month: Month, the current month by default if not provided.
7660
+ :type Month: str
7661
+ """
7662
+ self._Id = None
7663
+ self._Month = None
7664
+
7665
+ @property
7666
+ def Id(self):
7667
+ """ID of the queried cost allocation unit.
7668
+ :rtype: int
7669
+ """
7670
+ return self._Id
7671
+
7672
+ @Id.setter
7673
+ def Id(self, Id):
7674
+ self._Id = Id
7675
+
7676
+ @property
7677
+ def Month(self):
7678
+ """Month, the current month by default if not provided.
7679
+ :rtype: str
7680
+ """
7681
+ return self._Month
7682
+
7683
+ @Month.setter
7684
+ def Month(self, Month):
7685
+ self._Month = Month
7686
+
7687
+
7688
+ def _deserialize(self, params):
7689
+ self._Id = params.get("Id")
7690
+ self._Month = params.get("Month")
7691
+ memeber_set = set(params.keys())
7692
+ for name, value in vars(self).items():
7693
+ property_name = name[1:]
7694
+ if property_name in memeber_set:
7695
+ memeber_set.remove(property_name)
7696
+ if len(memeber_set) > 0:
7697
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
7698
+
7699
+
7700
+
7701
+ class DescribeAllocationUnitDetailResponse(AbstractModel):
7702
+ """DescribeAllocationUnitDetail response structure.
7703
+
7704
+ """
7705
+
7706
+ def __init__(self):
7707
+ r"""
7708
+ :param _Id: ID of a cost allocation unit.
7709
+ :type Id: int
7710
+ :param _Uin: Associated UIN of the cost allocation unit.
7711
+ :type Uin: str
7712
+ :param _Name: Specifies the name of a cost allocation unit.
7713
+ :type Name: str
7714
+ :param _ParentId: Cost allocation unit parent node ID.
7715
+ :type ParentId: int
7716
+ :param _SourceName: Source organization name.
7717
+ :type SourceName: str
7718
+ :param _SourceId: Source organization ID.
7719
+ :type SourceId: str
7720
+ :param _Remark: Specifies remark description.
7721
+ :type Remark: str
7722
+ :param _TreeNodeUniqKey: Cost allocation unit identifier.
7723
+ :type TreeNodeUniqKey: str
7724
+ :param _RuleId: If a cost allocation unit is set with an collection rule, return the collection rule ID. if no collection rule is set, do not return.
7725
+ :type RuleId: int
7726
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
7727
+ :type RequestId: str
7728
+ """
7729
+ self._Id = None
7730
+ self._Uin = None
7731
+ self._Name = None
7732
+ self._ParentId = None
7733
+ self._SourceName = None
7734
+ self._SourceId = None
7735
+ self._Remark = None
7736
+ self._TreeNodeUniqKey = None
7737
+ self._RuleId = None
7738
+ self._RequestId = None
7739
+
7740
+ @property
7741
+ def Id(self):
7742
+ """ID of a cost allocation unit.
7743
+ :rtype: int
7744
+ """
7745
+ return self._Id
7746
+
7747
+ @Id.setter
7748
+ def Id(self, Id):
7749
+ self._Id = Id
7750
+
7751
+ @property
7752
+ def Uin(self):
7753
+ """Associated UIN of the cost allocation unit.
7754
+ :rtype: str
7755
+ """
7756
+ return self._Uin
7757
+
7758
+ @Uin.setter
7759
+ def Uin(self, Uin):
7760
+ self._Uin = Uin
7761
+
7762
+ @property
7763
+ def Name(self):
7764
+ """Specifies the name of a cost allocation unit.
7765
+ :rtype: str
7766
+ """
7767
+ return self._Name
7768
+
7769
+ @Name.setter
7770
+ def Name(self, Name):
7771
+ self._Name = Name
7772
+
7773
+ @property
7774
+ def ParentId(self):
7775
+ """Cost allocation unit parent node ID.
7776
+ :rtype: int
7777
+ """
7778
+ return self._ParentId
7779
+
7780
+ @ParentId.setter
7781
+ def ParentId(self, ParentId):
7782
+ self._ParentId = ParentId
7783
+
7784
+ @property
7785
+ def SourceName(self):
7786
+ """Source organization name.
7787
+ :rtype: str
7788
+ """
7789
+ return self._SourceName
7790
+
7791
+ @SourceName.setter
7792
+ def SourceName(self, SourceName):
7793
+ self._SourceName = SourceName
7794
+
7795
+ @property
7796
+ def SourceId(self):
7797
+ """Source organization ID.
7798
+ :rtype: str
7799
+ """
7800
+ return self._SourceId
7801
+
7802
+ @SourceId.setter
7803
+ def SourceId(self, SourceId):
7804
+ self._SourceId = SourceId
7805
+
7806
+ @property
7807
+ def Remark(self):
7808
+ """Specifies remark description.
7809
+ :rtype: str
7810
+ """
7811
+ return self._Remark
7812
+
7813
+ @Remark.setter
7814
+ def Remark(self, Remark):
7815
+ self._Remark = Remark
7816
+
7817
+ @property
7818
+ def TreeNodeUniqKey(self):
7819
+ """Cost allocation unit identifier.
7820
+ :rtype: str
7821
+ """
7822
+ return self._TreeNodeUniqKey
7823
+
7824
+ @TreeNodeUniqKey.setter
7825
+ def TreeNodeUniqKey(self, TreeNodeUniqKey):
7826
+ self._TreeNodeUniqKey = TreeNodeUniqKey
7827
+
7828
+ @property
7829
+ def RuleId(self):
7830
+ """If a cost allocation unit is set with an collection rule, return the collection rule ID. if no collection rule is set, do not return.
7831
+ :rtype: int
7832
+ """
7833
+ return self._RuleId
7834
+
7835
+ @RuleId.setter
7836
+ def RuleId(self, RuleId):
7837
+ self._RuleId = RuleId
7838
+
7839
+ @property
7840
+ def RequestId(self):
7841
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
7842
+ :rtype: str
7843
+ """
7844
+ return self._RequestId
7845
+
7846
+ @RequestId.setter
7847
+ def RequestId(self, RequestId):
7848
+ self._RequestId = RequestId
7849
+
7850
+
7851
+ def _deserialize(self, params):
7852
+ self._Id = params.get("Id")
7853
+ self._Uin = params.get("Uin")
7854
+ self._Name = params.get("Name")
7855
+ self._ParentId = params.get("ParentId")
7856
+ self._SourceName = params.get("SourceName")
7857
+ self._SourceId = params.get("SourceId")
7858
+ self._Remark = params.get("Remark")
7859
+ self._TreeNodeUniqKey = params.get("TreeNodeUniqKey")
7860
+ self._RuleId = params.get("RuleId")
7861
+ self._RequestId = params.get("RequestId")
7862
+
7863
+
7650
7864
  class DescribeBillAdjustInfoRequest(AbstractModel):
7651
7865
  """DescribeBillAdjustInfo request structure.
7652
7866
 
@@ -6837,13 +6837,14 @@ class QuerySubAgentsDetailV2Request(AbstractModel):
6837
6837
  :param _PageSize: Number of items per page. supports up to 100.
6838
6838
  :type PageSize: int
6839
6839
  :param _FilterType: Filter criteria, support the following filter parameters.
6840
- Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.
6841
- Name: filter criteria based on customer name.
6840
+ Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.The following are the definitions of filtering items:
6841
+
6842
+ Name: specifies second-level reseller name.
6842
6843
  SubAgentUin: specifies the uin of the second-level reseller.
6843
- Remark: remark.
6844
+ Remark: specifies remark.
6844
6845
  Mobile: specifies the mobile number.
6845
- Specifies the mailbox.
6846
- ClientUin: specifies the sub-customer uin.
6846
+ Email: specifies email address.
6847
+ ClientUin: specifies the Indirect customer uin.
6847
6848
  :type FilterType: str
6848
6849
  :param _Filter: Filter value
6849
6850
  :type Filter: str
@@ -6883,13 +6884,14 @@ acs: ascending.
6883
6884
  @property
6884
6885
  def FilterType(self):
6885
6886
  """Filter criteria, support the following filter parameters.
6886
- Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.
6887
- Name: filter criteria based on customer name.
6887
+ Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.The following are the definitions of filtering items:
6888
+
6889
+ Name: specifies second-level reseller name.
6888
6890
  SubAgentUin: specifies the uin of the second-level reseller.
6889
- Remark: remark.
6891
+ Remark: specifies remark.
6890
6892
  Mobile: specifies the mobile number.
6891
- Specifies the mailbox.
6892
- ClientUin: specifies the sub-customer uin.
6893
+ Email: specifies email address.
6894
+ ClientUin: specifies the Indirect customer uin.
6893
6895
  :rtype: str
6894
6896
  """
6895
6897
  return self._FilterType
@@ -7086,17 +7086,17 @@ Note: this field may return null, indicating that no valid values can be obtaine
7086
7086
 
7087
7087
  class InputSettingInfo(AbstractModel):
7088
7088
  """The input settings.
7089
- The format of an RTMP_PUSH address is ${InputAddress}/${AppName}/${StreamName}.
7089
+ The format of an RTMP_PUSH/RTMPS_PUSH address is ${InputAddress}/${AppName}/${StreamName}.
7090
7090
  The format of an SRT_PUSH address is ${InputAddress}?streamid=${StreamName},h=${InputDomain}.
7091
7091
 
7092
7092
  """
7093
7093
 
7094
7094
  def __init__(self):
7095
7095
  r"""
7096
- :param _AppName: Application name, which is valid if `Type` is `RTMP_PUSH` and can contain 1-32 letters and digits
7096
+ :param _AppName: Application name, which is valid if `Type` is `RTMP_PUSH` or `RTMPS_PUSH`, and can contain 1-32 letters and digits
7097
7097
  Note: This field may return `null`, indicating that no valid value was found.
7098
7098
  :type AppName: str
7099
- :param _StreamName: Stream name, which is valid if `Type` is `RTMP_PUSH` and can contain 1-32 letters and digits
7099
+ :param _StreamName: Stream name, which is valid if `Type` is `RTMP_PUSH` or `RTMPS_PUSH`, and can contain 1-32 letters and digits
7100
7100
  Note: This field may return `null`, indicating that no valid value was found.
7101
7101
  :type StreamName: str
7102
7102
  :param _SourceUrl: Source URL, which is valid if `Type` is `RTMP_PULL`, `HLS_PULL`, `MP4_PULL`, `RTSP_PULL` or `SRT_PULL`, and can contain 1-512 characters
@@ -7108,8 +7108,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
7108
7108
  :param _SourceType: Source type for stream pulling and relaying. To pull content from private-read COS buckets under the current account, set this parameter to `TencentCOS`; otherwise, leave it empty.
7109
7109
  Note: this field may return `null`, indicating that no valid value was found.
7110
7110
  :type SourceType: str
7111
- :param _DelayTime: Delayed time (ms) for playback, which is valid if `Type` is `RTMP_PUSH`
7112
- Value range: 0 (default) or 10000-600000
7111
+ :param _DelayTime: Delayed time (ms) for playback, which is valid if `Type` is `RTMP_PUSH` or `RTMPS_PUSH`.
7112
+ Value range: 0 (default) or 10000-600000.
7113
7113
  The value must be a multiple of 1,000.
7114
7114
  Note: This field may return `null`, indicating that no valid value was found.
7115
7115
  :type DelayTime: int
@@ -7137,7 +7137,7 @@ Note: This field may return `null`, indicating that no valid value was found.
7137
7137
 
7138
7138
  @property
7139
7139
  def AppName(self):
7140
- """Application name, which is valid if `Type` is `RTMP_PUSH` and can contain 1-32 letters and digits
7140
+ """Application name, which is valid if `Type` is `RTMP_PUSH` or `RTMPS_PUSH`, and can contain 1-32 letters and digits
7141
7141
  Note: This field may return `null`, indicating that no valid value was found.
7142
7142
  :rtype: str
7143
7143
  """
@@ -7149,7 +7149,7 @@ Note: This field may return `null`, indicating that no valid value was found.
7149
7149
 
7150
7150
  @property
7151
7151
  def StreamName(self):
7152
- """Stream name, which is valid if `Type` is `RTMP_PUSH` and can contain 1-32 letters and digits
7152
+ """Stream name, which is valid if `Type` is `RTMP_PUSH` or `RTMPS_PUSH`, and can contain 1-32 letters and digits
7153
7153
  Note: This field may return `null`, indicating that no valid value was found.
7154
7154
  :rtype: str
7155
7155
  """
@@ -7197,8 +7197,8 @@ Note: this field may return `null`, indicating that no valid value was found.
7197
7197
 
7198
7198
  @property
7199
7199
  def DelayTime(self):
7200
- """Delayed time (ms) for playback, which is valid if `Type` is `RTMP_PUSH`
7201
- Value range: 0 (default) or 10000-600000
7200
+ """Delayed time (ms) for playback, which is valid if `Type` is `RTMP_PUSH` or `RTMPS_PUSH`.
7201
+ Value range: 0 (default) or 10000-600000.
7202
7202
  The value must be a multiple of 1,000.
7203
7203
  Note: This field may return `null`, indicating that no valid value was found.
7204
7204
  :rtype: int
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1205
3
+ Version: 3.0.1207
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python-intl-en
6
6
  Author: Tencent Cloud
@@ -1,4 +1,4 @@
1
- tencentcloud/__init__.py,sha256=xLXTGUpd6hgvWMkKXDscXfWmEiJbPih3zHVQ-mrSmeU,630
1
+ tencentcloud/__init__.py,sha256=SzfglIBj9cMdaWld5KH2eBmWMQqKGVrRWvkrkwc_wNs,630
2
2
  tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  tencentcloud/advisor/v20200721/advisor_client.py,sha256=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
@@ -46,9 +46,9 @@ tencentcloud/batch/v20170312/errorcodes.py,sha256=KCF4SIj8Haj6XBUSTVDyNQSPyjWVRy
46
46
  tencentcloud/batch/v20170312/models.py,sha256=VBOuhs4yPE8IMmY4tzA3AjQHyFga4WjK7p-0PEyg0TI,335284
47
47
  tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
- tencentcloud/billing/v20180709/billing_client.py,sha256=r6mZMWgZePzCHkwUI3srnhf_La9ILbZYgsm_Zft4jmY,27978
49
+ tencentcloud/billing/v20180709/billing_client.py,sha256=zP9TTloKyGsSKBj8Av4uvbFiuiN3cwXQLMjq_3744Nk,28947
50
50
  tencentcloud/billing/v20180709/errorcodes.py,sha256=0_fBUU6QDv7eHN-XbnlzTAjC4fungnaoiOpd6IV_Ml4,2102
51
- tencentcloud/billing/v20180709/models.py,sha256=wQ_O4bUh2EgBJ3ObPy7HP4t5fikv5uzaZ_suxr0QMXM,513958
51
+ tencentcloud/billing/v20180709/models.py,sha256=tCwIxvLxE4S5aV9BcTS8Bn2o02VIP6fAeGJmsjf71Sg,519972
52
52
  tencentcloud/cam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  tencentcloud/cam/v20190116/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
54
  tencentcloud/cam/v20190116/cam_client.py,sha256=cQFaz-s6EzqeCpWmIX0Kd_F2xZByDcObmj5c6eoMGAI,75169
@@ -339,7 +339,7 @@ tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
339
339
  tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
340
  tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=ob6XjXp7Alcx0kON4shg4STrhKSTTomJjKjifRV3jJg,8738
341
341
  tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=E4e5Rnmqb4LqhP1rcRJzSunyMNRqM58npGNsidN_3pg,44257
342
- tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=-bDSYblBpnkope7oSm616OL9BusZcRAzQ961TEco8YM,252702
342
+ tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=TszazRNedR1hGWbZbNnlAMMHFnl-jq6XNzerFOVVUk8,252856
343
343
  tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
344
  tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
345
  tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
@@ -384,7 +384,7 @@ tencentcloud/mdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
384
384
  tencentcloud/mdl/v20200326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
385
385
  tencentcloud/mdl/v20200326/errorcodes.py,sha256=UrwmJD3pUUir_wADh17-T-gweDNkYkXPTVuEs4LsMGM,3178
386
386
  tencentcloud/mdl/v20200326/mdl_client.py,sha256=IU-Hnznk_wh-0VEdokS1PsLCvgLOr-JEfTkkBiUK3MI,31829
387
- tencentcloud/mdl/v20200326/models.py,sha256=Lj9NoUdjD8caRWibg2OqazVUgCX2jLe9bfd1e0XbcKQ,410879
387
+ tencentcloud/mdl/v20200326/models.py,sha256=ePhjcCdFAnOj8twRENfLGMUKNSIFGWSeo3zCS_YPB7Y,410994
388
388
  tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
389
  tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
390
  tencentcloud/mdp/v20200527/errorcodes.py,sha256=O-b8jxiEAa2BWaMCv-Wl1gWTikqX5kIAFUq7bGaswpE,2124
@@ -654,7 +654,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
654
654
  tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
655
655
  tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
656
656
  tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
657
- tencentcloud_sdk_python_intl_en-3.0.1205.dist-info/METADATA,sha256=lprzC3n1Y7zQzNAKF6BvehjIqhohTMPadiUm0PXgDQs,1628
658
- tencentcloud_sdk_python_intl_en-3.0.1205.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
659
- tencentcloud_sdk_python_intl_en-3.0.1205.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
660
- tencentcloud_sdk_python_intl_en-3.0.1205.dist-info/RECORD,,
657
+ tencentcloud_sdk_python_intl_en-3.0.1207.dist-info/METADATA,sha256=bxKoKR6yFBQ_PqKOVEdoqI1u4UWcbuAQ1Eqqzt5pdzM,1628
658
+ tencentcloud_sdk_python_intl_en-3.0.1207.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
659
+ tencentcloud_sdk_python_intl_en-3.0.1207.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
660
+ tencentcloud_sdk_python_intl_en-3.0.1207.dist-info/RECORD,,