tencentcloud-sdk-python-intl-en 3.0.1101__py2.py3-none-any.whl → 3.0.1102__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/errorcodes.py +3 -0
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +28 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +79 -0
- tencentcloud/organization/v20210331/models.py +4 -4
- {tencentcloud_sdk_python_intl_en-3.0.1101.dist-info → tencentcloud_sdk_python_intl_en-3.0.1102.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1101.dist-info → tencentcloud_sdk_python_intl_en-3.0.1102.dist-info}/RECORD +9 -9
- {tencentcloud_sdk_python_intl_en-3.0.1101.dist-info → tencentcloud_sdk_python_intl_en-3.0.1102.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1101.dist-info → tencentcloud_sdk_python_intl_en-3.0.1102.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -29,6 +29,9 @@ FAILEDOPERATION_MAILISREGISTERED = 'FailedOperation.MailIsRegistered'
|
|
|
29
29
|
# The number of registered accounts for the current mobile number has reached the maximum limit. Please change the phone number and try again.
|
|
30
30
|
FAILEDOPERATION_PHONEBINDUPPER = 'FailedOperation.PhoneBindUpper'
|
|
31
31
|
|
|
32
|
+
# The interval between sending invitation links is less than three minutes. Please try again later.
|
|
33
|
+
FAILEDOPERATION_SENDMAILLIMIT180 = 'FailedOperation.SendMailLimit180'
|
|
34
|
+
|
|
32
35
|
# Verification codes are sent too frequently. Please try again later.
|
|
33
36
|
FAILEDOPERATION_SENDVERIFYCODELIMIT = 'FailedOperation.SendVerifyCodeLimit'
|
|
34
37
|
|
|
@@ -102,6 +102,34 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
|
102
102
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
103
103
|
|
|
104
104
|
|
|
105
|
+
def CreateAndSendClientInvitationMail(self, request):
|
|
106
|
+
"""This API is used to apply for the allowlist. If needed, please contact your business representative.Directions:
|
|
107
|
+
1.This API is used to create an invitation link, which you can send to a specified email address.
|
|
108
|
+
2.Customer need to click the invitation link in the email, fill in and submit the required information.
|
|
109
|
+
3.You can review the customer's application in customer management after submission.
|
|
110
|
+
|
|
111
|
+
Note:This API is used to manually send the invitation link to the customer if the specified email does not receive it.
|
|
112
|
+
|
|
113
|
+
:param request: Request instance for CreateAndSendClientInvitationMail.
|
|
114
|
+
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.CreateAndSendClientInvitationMailRequest`
|
|
115
|
+
:rtype: :class:`tencentcloud.intlpartnersmgt.v20220928.models.CreateAndSendClientInvitationMailResponse`
|
|
116
|
+
|
|
117
|
+
"""
|
|
118
|
+
try:
|
|
119
|
+
params = request._serialize()
|
|
120
|
+
headers = request.headers
|
|
121
|
+
body = self.call("CreateAndSendClientInvitationMail", params, headers=headers)
|
|
122
|
+
response = json.loads(body)
|
|
123
|
+
model = models.CreateAndSendClientInvitationMailResponse()
|
|
124
|
+
model._deserialize(response["Response"])
|
|
125
|
+
return model
|
|
126
|
+
except Exception as e:
|
|
127
|
+
if isinstance(e, TencentCloudSDKException):
|
|
128
|
+
raise
|
|
129
|
+
else:
|
|
130
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
131
|
+
|
|
132
|
+
|
|
105
133
|
def DescribeBillDetail(self, request):
|
|
106
134
|
"""This API is used to query bill details by customers.
|
|
107
135
|
|
|
@@ -1440,6 +1440,85 @@ class CreateAccountResponse(AbstractModel):
|
|
|
1440
1440
|
self._RequestId = params.get("RequestId")
|
|
1441
1441
|
|
|
1442
1442
|
|
|
1443
|
+
class CreateAndSendClientInvitationMailRequest(AbstractModel):
|
|
1444
|
+
"""CreateAndSendClientInvitationMail request structure.
|
|
1445
|
+
|
|
1446
|
+
"""
|
|
1447
|
+
|
|
1448
|
+
def __init__(self):
|
|
1449
|
+
r"""
|
|
1450
|
+
:param _Email: Email address that receives the customer invitation link.
|
|
1451
|
+
:type Email: str
|
|
1452
|
+
"""
|
|
1453
|
+
self._Email = None
|
|
1454
|
+
|
|
1455
|
+
@property
|
|
1456
|
+
def Email(self):
|
|
1457
|
+
"""Email address that receives the customer invitation link.
|
|
1458
|
+
:rtype: str
|
|
1459
|
+
"""
|
|
1460
|
+
return self._Email
|
|
1461
|
+
|
|
1462
|
+
@Email.setter
|
|
1463
|
+
def Email(self, Email):
|
|
1464
|
+
self._Email = Email
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
def _deserialize(self, params):
|
|
1468
|
+
self._Email = params.get("Email")
|
|
1469
|
+
memeber_set = set(params.keys())
|
|
1470
|
+
for name, value in vars(self).items():
|
|
1471
|
+
property_name = name[1:]
|
|
1472
|
+
if property_name in memeber_set:
|
|
1473
|
+
memeber_set.remove(property_name)
|
|
1474
|
+
if len(memeber_set) > 0:
|
|
1475
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
|
|
1479
|
+
class CreateAndSendClientInvitationMailResponse(AbstractModel):
|
|
1480
|
+
"""CreateAndSendClientInvitationMail response structure.
|
|
1481
|
+
|
|
1482
|
+
"""
|
|
1483
|
+
|
|
1484
|
+
def __init__(self):
|
|
1485
|
+
r"""
|
|
1486
|
+
:param _InvitationLink: Specifies the invitation link for the customer.
|
|
1487
|
+
:type InvitationLink: str
|
|
1488
|
+
: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.
|
|
1489
|
+
:type RequestId: str
|
|
1490
|
+
"""
|
|
1491
|
+
self._InvitationLink = None
|
|
1492
|
+
self._RequestId = None
|
|
1493
|
+
|
|
1494
|
+
@property
|
|
1495
|
+
def InvitationLink(self):
|
|
1496
|
+
"""Specifies the invitation link for the customer.
|
|
1497
|
+
:rtype: str
|
|
1498
|
+
"""
|
|
1499
|
+
return self._InvitationLink
|
|
1500
|
+
|
|
1501
|
+
@InvitationLink.setter
|
|
1502
|
+
def InvitationLink(self, InvitationLink):
|
|
1503
|
+
self._InvitationLink = InvitationLink
|
|
1504
|
+
|
|
1505
|
+
@property
|
|
1506
|
+
def RequestId(self):
|
|
1507
|
+
"""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.
|
|
1508
|
+
:rtype: str
|
|
1509
|
+
"""
|
|
1510
|
+
return self._RequestId
|
|
1511
|
+
|
|
1512
|
+
@RequestId.setter
|
|
1513
|
+
def RequestId(self, RequestId):
|
|
1514
|
+
self._RequestId = RequestId
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
def _deserialize(self, params):
|
|
1518
|
+
self._InvitationLink = params.get("InvitationLink")
|
|
1519
|
+
self._RequestId = params.get("RequestId")
|
|
1520
|
+
|
|
1521
|
+
|
|
1443
1522
|
class CustomerBillDetailData(AbstractModel):
|
|
1444
1523
|
"""Customer bill details
|
|
1445
1524
|
|
|
@@ -1370,7 +1370,7 @@ class CreateOrganizationMemberRequest(AbstractModel):
|
|
|
1370
1370
|
:type Name: str
|
|
1371
1371
|
:param _PolicyType: Relationship policy. Valid value: `Financial`.
|
|
1372
1372
|
:type PolicyType: str
|
|
1373
|
-
:param _PermissionIds:
|
|
1373
|
+
:param _PermissionIds: Member Finanace Authorization. Valid values: 1: View Bills. 2: View Balance. 4: Consolidate Bills. 5: Invoice. 6: Inherit Offer. 7: Pay On Behalf. 8: Cost Explorer. 9: Budget Management. 1, 2 and 7 are required.
|
|
1374
1374
|
:type PermissionIds: list of int non-negative
|
|
1375
1375
|
:param _NodeId: Node ID of the member's department, which can be obtained through [DescribeOrganizationNodes](https://intl.cloud.tencent.com/document/product/850/82926?from_cn_redirect=1).
|
|
1376
1376
|
:type NodeId: int
|
|
@@ -1425,7 +1425,7 @@ class CreateOrganizationMemberRequest(AbstractModel):
|
|
|
1425
1425
|
|
|
1426
1426
|
@property
|
|
1427
1427
|
def PermissionIds(self):
|
|
1428
|
-
"""
|
|
1428
|
+
"""Member Finanace Authorization. Valid values: 1: View Bills. 2: View Balance. 4: Consolidate Bills. 5: Invoice. 6: Inherit Offer. 7: Pay On Behalf. 8: Cost Explorer. 9: Budget Management. 1, 2 and 7 are required.
|
|
1429
1429
|
:rtype: list of int non-negative
|
|
1430
1430
|
"""
|
|
1431
1431
|
return self._PermissionIds
|
|
@@ -6197,7 +6197,7 @@ class InviteOrganizationMemberRequest(AbstractModel):
|
|
|
6197
6197
|
:type Name: str
|
|
6198
6198
|
:param _PolicyType: Relationship policy. Valid value: `Financial`.
|
|
6199
6199
|
:type PolicyType: str
|
|
6200
|
-
:param _PermissionIds:
|
|
6200
|
+
:param _PermissionIds: Member Finanace Authorization. Valid values: 1: View Bills. 2: View Balance. 4: Consolidate Bills. 5: Invoice. 6: Inherit Offer. 7: Pay On Behalf. 8: Cost Explorer. 9: Budget Management. 1 and 2 are required.
|
|
6201
6201
|
:type PermissionIds: list of int non-negative
|
|
6202
6202
|
:param _NodeId: Node ID of the member's department, which can be obtained through [DescribeOrganizationNodes](https://intl.cloud.tencent.com/document/product/850/82926?from_cn_redirect=1).
|
|
6203
6203
|
:type NodeId: int
|
|
@@ -6261,7 +6261,7 @@ class InviteOrganizationMemberRequest(AbstractModel):
|
|
|
6261
6261
|
|
|
6262
6262
|
@property
|
|
6263
6263
|
def PermissionIds(self):
|
|
6264
|
-
"""
|
|
6264
|
+
"""Member Finanace Authorization. Valid values: 1: View Bills. 2: View Balance. 4: Consolidate Bills. 5: Invoice. 6: Inherit Offer. 7: Pay On Behalf. 8: Cost Explorer. 9: Budget Management. 1 and 2 are required.
|
|
6265
6265
|
:rtype: list of int non-negative
|
|
6266
6266
|
"""
|
|
6267
6267
|
return self._PermissionIds
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=cRo0T6AReg0i9V6OO837-VMwfMfrIgZQygDB1UVQHvc,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=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -322,9 +322,9 @@ tencentcloud/ims/v20201229/ims_client.py,sha256=93jgAU4o9X_1q6qFZAs_IC08d6hsnO50
|
|
|
322
322
|
tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WDxxD5F10,89276
|
|
323
323
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
324
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
|
-
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=
|
|
326
|
-
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=
|
|
327
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
325
|
+
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=eazVeg5nmU-4wX7XlJS_LUI_dGPd2x0ITg4E7BVSQLY,5674
|
|
326
|
+
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=Q-9lRpTLcvZwgXtNp-tXzOSHKy5hIAvcI_OtVBUOzuc,31061
|
|
327
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=vHXUQ2sX1jwHlkxPkrjRNbV39CUwa-iGIosgbm0gN-o,195771
|
|
328
328
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
329
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
330
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
|
|
@@ -412,7 +412,7 @@ tencentcloud/organization/v20181225/models.py,sha256=KoeKmyuF1HELRamZSCXBIiYMEUg
|
|
|
412
412
|
tencentcloud/organization/v20181225/organization_client.py,sha256=iekwSlwoTumBlka-0WOuJybN4PP7HraeSgJzSkdM4z4,20328
|
|
413
413
|
tencentcloud/organization/v20210331/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
414
|
tencentcloud/organization/v20210331/errorcodes.py,sha256=BVw1cP-h1OQyhkLPdrEeFx8lTjEsNFY3U3jpm0HigSQ,28554
|
|
415
|
-
tencentcloud/organization/v20210331/models.py,sha256=
|
|
415
|
+
tencentcloud/organization/v20210331/models.py,sha256=_H_xenOGbGO9-TMTTtwSdVP8L3_HREEJd53uUIe8Zyc,540011
|
|
416
416
|
tencentcloud/organization/v20210331/organization_client.py,sha256=JMpq_W6rtV5ADwkxdN1SpiyL6gPfUm1OXFEQszo6MSE,85229
|
|
417
417
|
tencentcloud/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
418
418
|
tencentcloud/postgres/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -609,7 +609,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
609
609
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
610
610
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
611
611
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
612
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
613
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
614
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
615
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
612
|
+
tencentcloud_sdk_python_intl_en-3.0.1102.dist-info/METADATA,sha256=XuqNg8mRInNiBTVZ59-ixp9Cj8hpXEq3OGeLC63ZGlI,1628
|
|
613
|
+
tencentcloud_sdk_python_intl_en-3.0.1102.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
614
|
+
tencentcloud_sdk_python_intl_en-3.0.1102.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
615
|
+
tencentcloud_sdk_python_intl_en-3.0.1102.dist-info/RECORD,,
|
|
File without changes
|