tencentcloud-sdk-python-intl-en 3.0.1184__py2.py3-none-any.whl → 3.0.1185__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 +1 -1
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +24 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +109 -0
- {tencentcloud_sdk_python_intl_en-3.0.1184.dist-info → tencentcloud_sdk_python_intl_en-3.0.1185.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1184.dist-info → tencentcloud_sdk_python_intl_en-3.0.1185.dist-info}/RECORD +7 -7
- {tencentcloud_sdk_python_intl_en-3.0.1184.dist-info → tencentcloud_sdk_python_intl_en-3.0.1185.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1184.dist-info → tencentcloud_sdk_python_intl_en-3.0.1185.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -426,6 +426,30 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
|
426
426
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
427
427
|
|
|
428
428
|
|
|
429
|
+
def DescribeRebateDownloadUrl(self, request):
|
|
430
|
+
"""This API is used to download the commission bill file by resellers/agents. The file URL is returned.
|
|
431
|
+
Resellers/Agents can call this API.
|
|
432
|
+
|
|
433
|
+
:param request: Request instance for DescribeRebateDownloadUrl.
|
|
434
|
+
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeRebateDownloadUrlRequest`
|
|
435
|
+
:rtype: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeRebateDownloadUrlResponse`
|
|
436
|
+
|
|
437
|
+
"""
|
|
438
|
+
try:
|
|
439
|
+
params = request._serialize()
|
|
440
|
+
headers = request.headers
|
|
441
|
+
body = self.call("DescribeRebateDownloadUrl", params, headers=headers)
|
|
442
|
+
response = json.loads(body)
|
|
443
|
+
model = models.DescribeRebateDownloadUrlResponse()
|
|
444
|
+
model._deserialize(response["Response"])
|
|
445
|
+
return model
|
|
446
|
+
except Exception as e:
|
|
447
|
+
if isinstance(e, TencentCloudSDKException):
|
|
448
|
+
raise
|
|
449
|
+
else:
|
|
450
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
451
|
+
|
|
452
|
+
|
|
429
453
|
def ForceQN(self, request):
|
|
430
454
|
"""Forced Service Suspension settings and cancellation can be used only after the reseller is whitelisted.
|
|
431
455
|
|
|
@@ -3816,6 +3816,115 @@ class DescribeCustomerUinResponse(AbstractModel):
|
|
|
3816
3816
|
self._RequestId = params.get("RequestId")
|
|
3817
3817
|
|
|
3818
3818
|
|
|
3819
|
+
class DescribeRebateDownloadUrlRequest(AbstractModel):
|
|
3820
|
+
"""DescribeRebateDownloadUrl request structure.
|
|
3821
|
+
|
|
3822
|
+
"""
|
|
3823
|
+
|
|
3824
|
+
def __init__(self):
|
|
3825
|
+
r"""
|
|
3826
|
+
:param _Month: Month of the commission bill. Format: YYYY-MM.
|
|
3827
|
+
:type Month: str
|
|
3828
|
+
:param _FileType: Bill file type. Valid value: CommissionDetail.
|
|
3829
|
+
:type FileType: str
|
|
3830
|
+
"""
|
|
3831
|
+
self._Month = None
|
|
3832
|
+
self._FileType = None
|
|
3833
|
+
|
|
3834
|
+
@property
|
|
3835
|
+
def Month(self):
|
|
3836
|
+
"""Month of the commission bill. Format: YYYY-MM.
|
|
3837
|
+
:rtype: str
|
|
3838
|
+
"""
|
|
3839
|
+
return self._Month
|
|
3840
|
+
|
|
3841
|
+
@Month.setter
|
|
3842
|
+
def Month(self, Month):
|
|
3843
|
+
self._Month = Month
|
|
3844
|
+
|
|
3845
|
+
@property
|
|
3846
|
+
def FileType(self):
|
|
3847
|
+
"""Bill file type. Valid value: CommissionDetail.
|
|
3848
|
+
:rtype: str
|
|
3849
|
+
"""
|
|
3850
|
+
return self._FileType
|
|
3851
|
+
|
|
3852
|
+
@FileType.setter
|
|
3853
|
+
def FileType(self, FileType):
|
|
3854
|
+
self._FileType = FileType
|
|
3855
|
+
|
|
3856
|
+
|
|
3857
|
+
def _deserialize(self, params):
|
|
3858
|
+
self._Month = params.get("Month")
|
|
3859
|
+
self._FileType = params.get("FileType")
|
|
3860
|
+
memeber_set = set(params.keys())
|
|
3861
|
+
for name, value in vars(self).items():
|
|
3862
|
+
property_name = name[1:]
|
|
3863
|
+
if property_name in memeber_set:
|
|
3864
|
+
memeber_set.remove(property_name)
|
|
3865
|
+
if len(memeber_set) > 0:
|
|
3866
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
3867
|
+
|
|
3868
|
+
|
|
3869
|
+
|
|
3870
|
+
class DescribeRebateDownloadUrlResponse(AbstractModel):
|
|
3871
|
+
"""DescribeRebateDownloadUrl response structure.
|
|
3872
|
+
|
|
3873
|
+
"""
|
|
3874
|
+
|
|
3875
|
+
def __init__(self):
|
|
3876
|
+
r"""
|
|
3877
|
+
:param _DownloadUrl: File download link, with a file validity period of 1 hour.
|
|
3878
|
+
:type DownloadUrl: str
|
|
3879
|
+
:param _Ready: File generation status. 0: generating; 1: generated.
|
|
3880
|
+
:type Ready: int
|
|
3881
|
+
: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.
|
|
3882
|
+
:type RequestId: str
|
|
3883
|
+
"""
|
|
3884
|
+
self._DownloadUrl = None
|
|
3885
|
+
self._Ready = None
|
|
3886
|
+
self._RequestId = None
|
|
3887
|
+
|
|
3888
|
+
@property
|
|
3889
|
+
def DownloadUrl(self):
|
|
3890
|
+
"""File download link, with a file validity period of 1 hour.
|
|
3891
|
+
:rtype: str
|
|
3892
|
+
"""
|
|
3893
|
+
return self._DownloadUrl
|
|
3894
|
+
|
|
3895
|
+
@DownloadUrl.setter
|
|
3896
|
+
def DownloadUrl(self, DownloadUrl):
|
|
3897
|
+
self._DownloadUrl = DownloadUrl
|
|
3898
|
+
|
|
3899
|
+
@property
|
|
3900
|
+
def Ready(self):
|
|
3901
|
+
"""File generation status. 0: generating; 1: generated.
|
|
3902
|
+
:rtype: int
|
|
3903
|
+
"""
|
|
3904
|
+
return self._Ready
|
|
3905
|
+
|
|
3906
|
+
@Ready.setter
|
|
3907
|
+
def Ready(self, Ready):
|
|
3908
|
+
self._Ready = Ready
|
|
3909
|
+
|
|
3910
|
+
@property
|
|
3911
|
+
def RequestId(self):
|
|
3912
|
+
"""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.
|
|
3913
|
+
:rtype: str
|
|
3914
|
+
"""
|
|
3915
|
+
return self._RequestId
|
|
3916
|
+
|
|
3917
|
+
@RequestId.setter
|
|
3918
|
+
def RequestId(self, RequestId):
|
|
3919
|
+
self._RequestId = RequestId
|
|
3920
|
+
|
|
3921
|
+
|
|
3922
|
+
def _deserialize(self, params):
|
|
3923
|
+
self._DownloadUrl = params.get("DownloadUrl")
|
|
3924
|
+
self._Ready = params.get("Ready")
|
|
3925
|
+
self._RequestId = params.get("RequestId")
|
|
3926
|
+
|
|
3927
|
+
|
|
3819
3928
|
class ForceQNRequest(AbstractModel):
|
|
3820
3929
|
"""ForceQN request structure.
|
|
3821
3930
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=xUNyTmenpyxhr5iRVSfiaglh1SpoF87coPDiygbJ-nc,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
|
|
@@ -338,8 +338,8 @@ tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WD
|
|
|
338
338
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
339
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
340
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=f9sXktgBjr7zMgXP7ggnhZPC2w4q4dsfo8QuCj_881I,7590
|
|
341
|
-
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256
|
|
342
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
341
|
+
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=-uiDQA031vqO_2HBs0lR5hWdFEDhSYC4e97SrcIfSrw,41026
|
|
342
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=0A1N8o0EFLuCnW4n8N0gtHBoyMNqDLg5xNZ-39my9E8,230781
|
|
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
|
|
@@ -644,7 +644,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
644
644
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
645
645
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
646
646
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
647
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
648
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
649
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
650
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
647
|
+
tencentcloud_sdk_python_intl_en-3.0.1185.dist-info/METADATA,sha256=oPoCQjYpdqxCQBrr2A9VcEhYgE4oHHYalwL43_4ayyA,1628
|
|
648
|
+
tencentcloud_sdk_python_intl_en-3.0.1185.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
649
|
+
tencentcloud_sdk_python_intl_en-3.0.1185.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
650
|
+
tencentcloud_sdk_python_intl_en-3.0.1185.dist-info/RECORD,,
|
|
File without changes
|