tencentcloud-sdk-python-intl-en 3.0.1149__py2.py3-none-any.whl → 3.0.1151__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/autoscaling/v20180419/autoscaling_client.py +1 -3
- tencentcloud/ccc/v20200210/models.py +4 -4
- tencentcloud/cvm/v20170312/cvm_client.py +26 -0
- tencentcloud/cvm/v20170312/models.py +81 -2
- tencentcloud/faceid/v20180301/models.py +41 -37
- tencentcloud/ims/v20201229/ims_client.py +1 -7
- tencentcloud/lcic/v20220817/lcic_client.py +1 -3
- tencentcloud/lcic/v20220817/models.py +30 -0
- tencentcloud/mdp/v20200527/mdp_client.py +92 -0
- tencentcloud/mdp/v20200527/models.py +632 -2
- tencentcloud/organization/v20210331/errorcodes.py +60 -0
- tencentcloud/organization/v20210331/models.py +528 -0
- tencentcloud/organization/v20210331/organization_client.py +92 -0
- tencentcloud/tcss/v20201101/tcss_client.py +1 -3
- tencentcloud/tms/v20201229/models.py +181 -0
- {tencentcloud_sdk_python_intl_en-3.0.1149.dist-info → tencentcloud_sdk_python_intl_en-3.0.1151.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1149.dist-info → tencentcloud_sdk_python_intl_en-3.0.1151.dist-info}/RECORD +20 -20
- {tencentcloud_sdk_python_intl_en-3.0.1149.dist-info → tencentcloud_sdk_python_intl_en-3.0.1151.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1149.dist-info → tencentcloud_sdk_python_intl_en-3.0.1151.dist-info}/top_level.txt +0 -0
|
@@ -72,6 +72,29 @@ class OrganizationClient(AbstractClient):
|
|
|
72
72
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
|
+
def AddOrganizationMemberEmail(self, request):
|
|
76
|
+
"""This API is used to add an organization member's mailbox.
|
|
77
|
+
|
|
78
|
+
:param request: Request instance for AddOrganizationMemberEmail.
|
|
79
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.AddOrganizationMemberEmailRequest`
|
|
80
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.AddOrganizationMemberEmailResponse`
|
|
81
|
+
|
|
82
|
+
"""
|
|
83
|
+
try:
|
|
84
|
+
params = request._serialize()
|
|
85
|
+
headers = request.headers
|
|
86
|
+
body = self.call("AddOrganizationMemberEmail", params, headers=headers)
|
|
87
|
+
response = json.loads(body)
|
|
88
|
+
model = models.AddOrganizationMemberEmailResponse()
|
|
89
|
+
model._deserialize(response["Response"])
|
|
90
|
+
return model
|
|
91
|
+
except Exception as e:
|
|
92
|
+
if isinstance(e, TencentCloudSDKException):
|
|
93
|
+
raise
|
|
94
|
+
else:
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
|
+
|
|
97
|
+
|
|
75
98
|
def AddOrganizationNode(self, request):
|
|
76
99
|
"""This API is used to add an organization node.
|
|
77
100
|
|
|
@@ -1038,6 +1061,29 @@ class OrganizationClient(AbstractClient):
|
|
|
1038
1061
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1039
1062
|
|
|
1040
1063
|
|
|
1064
|
+
def DescribeOrganizationMemberEmailBind(self, request):
|
|
1065
|
+
"""This API is used to query detailed information about member mailbox binding.
|
|
1066
|
+
|
|
1067
|
+
:param request: Request instance for DescribeOrganizationMemberEmailBind.
|
|
1068
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.DescribeOrganizationMemberEmailBindRequest`
|
|
1069
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.DescribeOrganizationMemberEmailBindResponse`
|
|
1070
|
+
|
|
1071
|
+
"""
|
|
1072
|
+
try:
|
|
1073
|
+
params = request._serialize()
|
|
1074
|
+
headers = request.headers
|
|
1075
|
+
body = self.call("DescribeOrganizationMemberEmailBind", params, headers=headers)
|
|
1076
|
+
response = json.loads(body)
|
|
1077
|
+
model = models.DescribeOrganizationMemberEmailBindResponse()
|
|
1078
|
+
model._deserialize(response["Response"])
|
|
1079
|
+
return model
|
|
1080
|
+
except Exception as e:
|
|
1081
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1082
|
+
raise
|
|
1083
|
+
else:
|
|
1084
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1085
|
+
|
|
1086
|
+
|
|
1041
1087
|
def DescribeOrganizationMemberPolicies(self, request):
|
|
1042
1088
|
"""This API is used to get the list of authorization policies of an organization member.
|
|
1043
1089
|
|
|
@@ -2004,6 +2050,29 @@ class OrganizationClient(AbstractClient):
|
|
|
2004
2050
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2005
2051
|
|
|
2006
2052
|
|
|
2053
|
+
def SendOrgMemberAccountBindEmail(self, request):
|
|
2054
|
+
"""This API is used to resend an email for activating the member's bound mailbox.
|
|
2055
|
+
|
|
2056
|
+
:param request: Request instance for SendOrgMemberAccountBindEmail.
|
|
2057
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.SendOrgMemberAccountBindEmailRequest`
|
|
2058
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.SendOrgMemberAccountBindEmailResponse`
|
|
2059
|
+
|
|
2060
|
+
"""
|
|
2061
|
+
try:
|
|
2062
|
+
params = request._serialize()
|
|
2063
|
+
headers = request.headers
|
|
2064
|
+
body = self.call("SendOrgMemberAccountBindEmail", params, headers=headers)
|
|
2065
|
+
response = json.loads(body)
|
|
2066
|
+
model = models.SendOrgMemberAccountBindEmailResponse()
|
|
2067
|
+
model._deserialize(response["Response"])
|
|
2068
|
+
return model
|
|
2069
|
+
except Exception as e:
|
|
2070
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2071
|
+
raise
|
|
2072
|
+
else:
|
|
2073
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2074
|
+
|
|
2075
|
+
|
|
2007
2076
|
def SetExternalSAMLIdentityProvider(self, request):
|
|
2008
2077
|
"""This API is used to configure the SAML identity provider information.
|
|
2009
2078
|
|
|
@@ -2119,6 +2188,29 @@ class OrganizationClient(AbstractClient):
|
|
|
2119
2188
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2120
2189
|
|
|
2121
2190
|
|
|
2191
|
+
def UpdateOrganizationMemberEmailBind(self, request):
|
|
2192
|
+
"""This API is used to modify the mailbox of a bound member.
|
|
2193
|
+
|
|
2194
|
+
:param request: Request instance for UpdateOrganizationMemberEmailBind.
|
|
2195
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.UpdateOrganizationMemberEmailBindRequest`
|
|
2196
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.UpdateOrganizationMemberEmailBindResponse`
|
|
2197
|
+
|
|
2198
|
+
"""
|
|
2199
|
+
try:
|
|
2200
|
+
params = request._serialize()
|
|
2201
|
+
headers = request.headers
|
|
2202
|
+
body = self.call("UpdateOrganizationMemberEmailBind", params, headers=headers)
|
|
2203
|
+
response = json.loads(body)
|
|
2204
|
+
model = models.UpdateOrganizationMemberEmailBindResponse()
|
|
2205
|
+
model._deserialize(response["Response"])
|
|
2206
|
+
return model
|
|
2207
|
+
except Exception as e:
|
|
2208
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2209
|
+
raise
|
|
2210
|
+
else:
|
|
2211
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2212
|
+
|
|
2213
|
+
|
|
2122
2214
|
def UpdateOrganizationNode(self, request):
|
|
2123
2215
|
"""This API is used to update an organization node.
|
|
2124
2216
|
|
|
@@ -1479,9 +1479,7 @@ class TcssClient(AbstractClient):
|
|
|
1479
1479
|
|
|
1480
1480
|
|
|
1481
1481
|
def DeleteCompliancePolicyItemFromWhitelist(self, request):
|
|
1482
|
-
"""
|
|
1483
|
-
|
|
1484
|
-
This API is used to remove the specified check item from the allowlist.
|
|
1482
|
+
"""This API is used to remove the specified check item from the allowlist.
|
|
1485
1483
|
|
|
1486
1484
|
:param request: Request instance for DeleteCompliancePolicyItemFromWhitelist.
|
|
1487
1485
|
:type request: :class:`tencentcloud.tcss.v20201101.models.DeleteCompliancePolicyItemFromWhitelistRequest`
|
|
@@ -376,6 +376,155 @@ class RiskDetails(AbstractModel):
|
|
|
376
376
|
|
|
377
377
|
|
|
378
378
|
|
|
379
|
+
class SentimentAnalysis(AbstractModel):
|
|
380
|
+
"""
|
|
381
|
+
|
|
382
|
+
"""
|
|
383
|
+
|
|
384
|
+
def __init__(self):
|
|
385
|
+
r"""
|
|
386
|
+
:param _Label:
|
|
387
|
+
:type Label: str
|
|
388
|
+
:param _Score:
|
|
389
|
+
:type Score: int
|
|
390
|
+
:param _Detail:
|
|
391
|
+
:type Detail: :class:`tencentcloud.tms.v20201229.models.SentimentDetail`
|
|
392
|
+
:param _Code:
|
|
393
|
+
:type Code: str
|
|
394
|
+
:param _Message:
|
|
395
|
+
:type Message: str
|
|
396
|
+
"""
|
|
397
|
+
self._Label = None
|
|
398
|
+
self._Score = None
|
|
399
|
+
self._Detail = None
|
|
400
|
+
self._Code = None
|
|
401
|
+
self._Message = None
|
|
402
|
+
|
|
403
|
+
@property
|
|
404
|
+
def Label(self):
|
|
405
|
+
"""
|
|
406
|
+
:rtype: str
|
|
407
|
+
"""
|
|
408
|
+
return self._Label
|
|
409
|
+
|
|
410
|
+
@Label.setter
|
|
411
|
+
def Label(self, Label):
|
|
412
|
+
self._Label = Label
|
|
413
|
+
|
|
414
|
+
@property
|
|
415
|
+
def Score(self):
|
|
416
|
+
"""
|
|
417
|
+
:rtype: int
|
|
418
|
+
"""
|
|
419
|
+
return self._Score
|
|
420
|
+
|
|
421
|
+
@Score.setter
|
|
422
|
+
def Score(self, Score):
|
|
423
|
+
self._Score = Score
|
|
424
|
+
|
|
425
|
+
@property
|
|
426
|
+
def Detail(self):
|
|
427
|
+
"""
|
|
428
|
+
:rtype: :class:`tencentcloud.tms.v20201229.models.SentimentDetail`
|
|
429
|
+
"""
|
|
430
|
+
return self._Detail
|
|
431
|
+
|
|
432
|
+
@Detail.setter
|
|
433
|
+
def Detail(self, Detail):
|
|
434
|
+
self._Detail = Detail
|
|
435
|
+
|
|
436
|
+
@property
|
|
437
|
+
def Code(self):
|
|
438
|
+
"""
|
|
439
|
+
:rtype: str
|
|
440
|
+
"""
|
|
441
|
+
return self._Code
|
|
442
|
+
|
|
443
|
+
@Code.setter
|
|
444
|
+
def Code(self, Code):
|
|
445
|
+
self._Code = Code
|
|
446
|
+
|
|
447
|
+
@property
|
|
448
|
+
def Message(self):
|
|
449
|
+
"""
|
|
450
|
+
:rtype: str
|
|
451
|
+
"""
|
|
452
|
+
return self._Message
|
|
453
|
+
|
|
454
|
+
@Message.setter
|
|
455
|
+
def Message(self, Message):
|
|
456
|
+
self._Message = Message
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
def _deserialize(self, params):
|
|
460
|
+
self._Label = params.get("Label")
|
|
461
|
+
self._Score = params.get("Score")
|
|
462
|
+
if params.get("Detail") is not None:
|
|
463
|
+
self._Detail = SentimentDetail()
|
|
464
|
+
self._Detail._deserialize(params.get("Detail"))
|
|
465
|
+
self._Code = params.get("Code")
|
|
466
|
+
self._Message = params.get("Message")
|
|
467
|
+
memeber_set = set(params.keys())
|
|
468
|
+
for name, value in vars(self).items():
|
|
469
|
+
property_name = name[1:]
|
|
470
|
+
if property_name in memeber_set:
|
|
471
|
+
memeber_set.remove(property_name)
|
|
472
|
+
if len(memeber_set) > 0:
|
|
473
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
class SentimentDetail(AbstractModel):
|
|
478
|
+
"""
|
|
479
|
+
|
|
480
|
+
"""
|
|
481
|
+
|
|
482
|
+
def __init__(self):
|
|
483
|
+
r"""
|
|
484
|
+
:param _Positive:
|
|
485
|
+
:type Positive: int
|
|
486
|
+
:param _Negative:
|
|
487
|
+
:type Negative: int
|
|
488
|
+
"""
|
|
489
|
+
self._Positive = None
|
|
490
|
+
self._Negative = None
|
|
491
|
+
|
|
492
|
+
@property
|
|
493
|
+
def Positive(self):
|
|
494
|
+
"""
|
|
495
|
+
:rtype: int
|
|
496
|
+
"""
|
|
497
|
+
return self._Positive
|
|
498
|
+
|
|
499
|
+
@Positive.setter
|
|
500
|
+
def Positive(self, Positive):
|
|
501
|
+
self._Positive = Positive
|
|
502
|
+
|
|
503
|
+
@property
|
|
504
|
+
def Negative(self):
|
|
505
|
+
"""
|
|
506
|
+
:rtype: int
|
|
507
|
+
"""
|
|
508
|
+
return self._Negative
|
|
509
|
+
|
|
510
|
+
@Negative.setter
|
|
511
|
+
def Negative(self, Negative):
|
|
512
|
+
self._Negative = Negative
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
def _deserialize(self, params):
|
|
516
|
+
self._Positive = params.get("Positive")
|
|
517
|
+
self._Negative = params.get("Negative")
|
|
518
|
+
memeber_set = set(params.keys())
|
|
519
|
+
for name, value in vars(self).items():
|
|
520
|
+
property_name = name[1:]
|
|
521
|
+
if property_name in memeber_set:
|
|
522
|
+
memeber_set.remove(property_name)
|
|
523
|
+
if len(memeber_set) > 0:
|
|
524
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
379
528
|
class Tag(AbstractModel):
|
|
380
529
|
"""Returns the keywords, label, sub-label and the score.
|
|
381
530
|
|
|
@@ -465,12 +614,15 @@ class TextModerationRequest(AbstractModel):
|
|
|
465
614
|
:type User: :class:`tencentcloud.tms.v20201229.models.User`
|
|
466
615
|
:param _Device: This field indicates the device information related with the object to be moderated, which can be used to identify violating devices at risk.
|
|
467
616
|
:type Device: :class:`tencentcloud.tms.v20201229.models.Device`
|
|
617
|
+
:param _SourceLanguage: This field Indicates the original language of the content.The enumeration values are ("en", "zh", ""), where en means English, zh means Chinese, and an empty string means the default language is Chinese. It is recommended to enter "en" only when the language of the content is clearly "English".
|
|
618
|
+
:type SourceLanguage: str
|
|
468
619
|
"""
|
|
469
620
|
self._Content = None
|
|
470
621
|
self._BizType = None
|
|
471
622
|
self._DataId = None
|
|
472
623
|
self._User = None
|
|
473
624
|
self._Device = None
|
|
625
|
+
self._SourceLanguage = None
|
|
474
626
|
|
|
475
627
|
@property
|
|
476
628
|
def Content(self):
|
|
@@ -527,6 +679,17 @@ class TextModerationRequest(AbstractModel):
|
|
|
527
679
|
def Device(self, Device):
|
|
528
680
|
self._Device = Device
|
|
529
681
|
|
|
682
|
+
@property
|
|
683
|
+
def SourceLanguage(self):
|
|
684
|
+
"""This field Indicates the original language of the content.The enumeration values are ("en", "zh", ""), where en means English, zh means Chinese, and an empty string means the default language is Chinese. It is recommended to enter "en" only when the language of the content is clearly "English".
|
|
685
|
+
:rtype: str
|
|
686
|
+
"""
|
|
687
|
+
return self._SourceLanguage
|
|
688
|
+
|
|
689
|
+
@SourceLanguage.setter
|
|
690
|
+
def SourceLanguage(self, SourceLanguage):
|
|
691
|
+
self._SourceLanguage = SourceLanguage
|
|
692
|
+
|
|
530
693
|
|
|
531
694
|
def _deserialize(self, params):
|
|
532
695
|
self._Content = params.get("Content")
|
|
@@ -538,6 +701,7 @@ class TextModerationRequest(AbstractModel):
|
|
|
538
701
|
if params.get("Device") is not None:
|
|
539
702
|
self._Device = Device()
|
|
540
703
|
self._Device._deserialize(params.get("Device"))
|
|
704
|
+
self._SourceLanguage = params.get("SourceLanguage")
|
|
541
705
|
memeber_set = set(params.keys())
|
|
542
706
|
for name, value in vars(self).items():
|
|
543
707
|
property_name = name[1:]
|
|
@@ -584,6 +748,8 @@ Note: This field may return `null`, indicating that no valid value can be found.
|
|
|
584
748
|
:param _ContextText: Returns the context text.
|
|
585
749
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
586
750
|
:type ContextText: str
|
|
751
|
+
:param _SentimentAnalysis:
|
|
752
|
+
:type SentimentAnalysis: :class:`tencentcloud.tms.v20201229.models.SentimentAnalysis`
|
|
587
753
|
: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.
|
|
588
754
|
:type RequestId: str
|
|
589
755
|
"""
|
|
@@ -598,6 +764,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
598
764
|
self._DataId = None
|
|
599
765
|
self._SubLabel = None
|
|
600
766
|
self._ContextText = None
|
|
767
|
+
self._SentimentAnalysis = None
|
|
601
768
|
self._RequestId = None
|
|
602
769
|
|
|
603
770
|
@property
|
|
@@ -728,6 +895,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
728
895
|
def ContextText(self, ContextText):
|
|
729
896
|
self._ContextText = ContextText
|
|
730
897
|
|
|
898
|
+
@property
|
|
899
|
+
def SentimentAnalysis(self):
|
|
900
|
+
"""
|
|
901
|
+
:rtype: :class:`tencentcloud.tms.v20201229.models.SentimentAnalysis`
|
|
902
|
+
"""
|
|
903
|
+
return self._SentimentAnalysis
|
|
904
|
+
|
|
905
|
+
@SentimentAnalysis.setter
|
|
906
|
+
def SentimentAnalysis(self, SentimentAnalysis):
|
|
907
|
+
self._SentimentAnalysis = SentimentAnalysis
|
|
908
|
+
|
|
731
909
|
@property
|
|
732
910
|
def RequestId(self):
|
|
733
911
|
"""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.
|
|
@@ -762,6 +940,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
762
940
|
self._DataId = params.get("DataId")
|
|
763
941
|
self._SubLabel = params.get("SubLabel")
|
|
764
942
|
self._ContextText = params.get("ContextText")
|
|
943
|
+
if params.get("SentimentAnalysis") is not None:
|
|
944
|
+
self._SentimentAnalysis = SentimentAnalysis()
|
|
945
|
+
self._SentimentAnalysis._deserialize(params.get("SentimentAnalysis"))
|
|
765
946
|
self._RequestId = params.get("RequestId")
|
|
766
947
|
|
|
767
948
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=mLFm4C-YoqQLK5gQI1j0rq5Lp9uYnPX2dE1D-FWh6HM,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
|
|
@@ -36,7 +36,7 @@ tencentcloud/asr/v20190614/errorcodes.py,sha256=y8eFeNb2JQvBLARMuU472FUDJKvqKxnI
|
|
|
36
36
|
tencentcloud/asr/v20190614/models.py,sha256=C9wN0sIcnBhCyHGUFxDdJgKaIXuHStoomOocpbB2Qko,59798
|
|
37
37
|
tencentcloud/autoscaling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
38
|
tencentcloud/autoscaling/v20180419/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=
|
|
39
|
+
tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=DfbR-yf63KyQfpJ0REWH3jhcGCm81Y4vGo4E5Es0sec,73330
|
|
40
40
|
tencentcloud/autoscaling/v20180419/errorcodes.py,sha256=EnO0NtPCX0cHZg4gwcuFy0h0lpGYXj7IxKOPyumtZss,23895
|
|
41
41
|
tencentcloud/autoscaling/v20180419/models.py,sha256=0DCz-zVAJd5bZH16zlqxmLXGiVOL3ZCB3EkEOpzvNvc,623782
|
|
42
42
|
tencentcloud/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -73,7 +73,7 @@ tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
73
73
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
tencentcloud/ccc/v20200210/ccc_client.py,sha256=-ZyofAg3diEYZFervLPHVzWFgDlGxk5_UXKjNYuYlPM,56045
|
|
75
75
|
tencentcloud/ccc/v20200210/errorcodes.py,sha256=XICQQkQDibda1CsDd16637h37WQFQVAn80I_Hs1xYMY,5923
|
|
76
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
|
76
|
+
tencentcloud/ccc/v20200210/models.py,sha256=Yz4GLDC_4s7z08QLr_qYF9ngCiCjuTVqHMD_kkDQ4EU,424273
|
|
77
77
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
78
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
79
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=lsVv0haXhHe9XbWFlQc65RbthqZKIGqdfZTcBqW7BEE,137214
|
|
@@ -184,9 +184,9 @@ tencentcloud/csip/v20221121/errorcodes.py,sha256=BtrJ2Ezz21uWHzoEJED1bUeiBgp3zuf
|
|
|
184
184
|
tencentcloud/csip/v20221121/models.py,sha256=hAdedmdDrD4HWsZQb7SdqtymGVFHoXVZYqkjYeZV5Ms,480806
|
|
185
185
|
tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
|
-
tencentcloud/cvm/v20170312/cvm_client.py,sha256=
|
|
187
|
+
tencentcloud/cvm/v20170312/cvm_client.py,sha256=mg6PWwHdBUwaUqtyc23m5f1FMHr63T-cbD3gWBuT5ek,94174
|
|
188
188
|
tencentcloud/cvm/v20170312/errorcodes.py,sha256=A-ckhQyCbsJtJ1And4c5-INIb6OBekV99rpARLv_jGo,52495
|
|
189
|
-
tencentcloud/cvm/v20170312/models.py,sha256=
|
|
189
|
+
tencentcloud/cvm/v20170312/models.py,sha256=_DbSfGtf6n_z718G6213NpSes2NF6Ftf6iylXQ8HGPk,755599
|
|
190
190
|
tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
191
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
192
192
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=XlAOIbfCE2PH5kdpATOrUkuE7eZd74lqbvhm2UDECi0,444132
|
|
@@ -294,7 +294,7 @@ tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
294
294
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
295
295
|
tencentcloud/faceid/v20180301/errorcodes.py,sha256=if59ahLlNuG4TVb3s0bhJCMW1xLyzLjogKgDud_YkTA,9962
|
|
296
296
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=Zto1akPPCqRbpysgrABFKtz3f-x0Rb-G8pfnPe15RtU,24130
|
|
297
|
-
tencentcloud/faceid/v20180301/models.py,sha256=
|
|
297
|
+
tencentcloud/faceid/v20180301/models.py,sha256=7puxv9ibETrgOP6YGVqqTL7Idixcmxt75ZV0lh0eNZY,383563
|
|
298
298
|
tencentcloud/gaap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
299
|
tencentcloud/gaap/v20180529/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
300
300
|
tencentcloud/gaap/v20180529/errorcodes.py,sha256=hco_fu2P-boFi-3-kcpWCYfaay9RrwmhwHLqzvry2xM,11142
|
|
@@ -328,7 +328,7 @@ tencentcloud/iai/v20200303/models.py,sha256=-iUeIIN56n9gPbWBIRi0N18mqimDX5GRNKp5
|
|
|
328
328
|
tencentcloud/ims/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
329
|
tencentcloud/ims/v20201229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
330
|
tencentcloud/ims/v20201229/errorcodes.py,sha256=n9s6tHq60CJXD9e8RHZmq03SVK2PEaOzlu2zp-w_ahQ,3861
|
|
331
|
-
tencentcloud/ims/v20201229/ims_client.py,sha256=
|
|
331
|
+
tencentcloud/ims/v20201229/ims_client.py,sha256=ZDBh61rO_hpnA3UCzDqZ4M-DRYSVtT0TeVr2jbAPvkg,4378
|
|
332
332
|
tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WDxxD5F10,89276
|
|
333
333
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
334
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -353,8 +353,8 @@ tencentcloud/kms/v20190118/models.py,sha256=Iu_VWmEuSMD4VKtrH4V0r7XiyxCCeGSWpVkt
|
|
|
353
353
|
tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
354
|
tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
355
|
tencentcloud/lcic/v20220817/errorcodes.py,sha256=PYKhl5BSZ9afW4HiUf539p933Wnw9eMpgR0tQG1hXoI,4709
|
|
356
|
-
tencentcloud/lcic/v20220817/lcic_client.py,sha256=
|
|
357
|
-
tencentcloud/lcic/v20220817/models.py,sha256=
|
|
356
|
+
tencentcloud/lcic/v20220817/lcic_client.py,sha256=fUdELQvcLxntBHF8P9rNiTN1Z8aySpxLuA8FpxZYruw,51293
|
|
357
|
+
tencentcloud/lcic/v20220817/models.py,sha256=krn5aBPALXQQ5AenLw3Q36gD_Ja7FhUeHs1ZzZRBcD4,336206
|
|
358
358
|
tencentcloud/lighthouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
tencentcloud/lighthouse/v20200324/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=ySLIhkvL8EnRjrKTJ5CUYkc2U4ZOZke9irtQZCxaJog,26605
|
|
@@ -383,8 +383,8 @@ tencentcloud/mdl/v20200326/models.py,sha256=DEvLIC6MDrgWGXYDzl9S_pxbTObpc5s0Jj2j
|
|
|
383
383
|
tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
384
384
|
tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
385
385
|
tencentcloud/mdp/v20200527/errorcodes.py,sha256=O-b8jxiEAa2BWaMCv-Wl1gWTikqX5kIAFUq7bGaswpE,2124
|
|
386
|
-
tencentcloud/mdp/v20200527/mdp_client.py,sha256=
|
|
387
|
-
tencentcloud/mdp/v20200527/models.py,sha256=
|
|
386
|
+
tencentcloud/mdp/v20200527/mdp_client.py,sha256=6aagxGQgmvbaKKCOSH9_E_P_Efxr66Acnb4tdeza00E,54349
|
|
387
|
+
tencentcloud/mdp/v20200527/models.py,sha256=iY_V3Z-WXd9CoR12sF7WXWQu6xUfpKbl3HDzk-sVlz4,313371
|
|
388
388
|
tencentcloud/mongodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
389
|
tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
390
|
tencentcloud/mongodb/v20190725/errorcodes.py,sha256=LvtN-o92px054vlJUUqSpJXIH7f9LEsQoOl8N9lcEC4,7128
|
|
@@ -421,9 +421,9 @@ tencentcloud/organization/v20181225/errorcodes.py,sha256=RyViSKl1FdBR9DcokPap_Ob
|
|
|
421
421
|
tencentcloud/organization/v20181225/models.py,sha256=KoeKmyuF1HELRamZSCXBIiYMEUgNy86HXoUMPKbMAXU,59866
|
|
422
422
|
tencentcloud/organization/v20181225/organization_client.py,sha256=iekwSlwoTumBlka-0WOuJybN4PP7HraeSgJzSkdM4z4,20328
|
|
423
423
|
tencentcloud/organization/v20210331/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
tencentcloud/organization/v20210331/errorcodes.py,sha256=
|
|
425
|
-
tencentcloud/organization/v20210331/models.py,sha256=
|
|
426
|
-
tencentcloud/organization/v20210331/organization_client.py,sha256=
|
|
424
|
+
tencentcloud/organization/v20210331/errorcodes.py,sha256=wikv2KigYd0DDCR9BIxSxvjfm9eXuM-BNIX9CEhBQRY,32887
|
|
425
|
+
tencentcloud/organization/v20210331/models.py,sha256=yI5nALGXdeC3z3nXt2O7axEWk-ehT43qJ5cgpEMYGHo,614979
|
|
426
|
+
tencentcloud/organization/v20210331/organization_client.py,sha256=VMl1AyaIChu6WZVYIn-84KTthMOIT_OvkJb245cpIEs,101575
|
|
427
427
|
tencentcloud/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
428
|
tencentcloud/postgres/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
429
|
tencentcloud/postgres/v20170312/errorcodes.py,sha256=C4rjoBMWVsvdkyo2ymAq_HEyaole_TqgeB_wjZG7hlw,23085
|
|
@@ -527,7 +527,7 @@ tencentcloud/tcss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
527
527
|
tencentcloud/tcss/v20201101/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
528
528
|
tencentcloud/tcss/v20201101/errorcodes.py,sha256=IkdH_SZM0pejSt4YWyvUdQlXsj8gW1wwJnU7uhQr9r4,4266
|
|
529
529
|
tencentcloud/tcss/v20201101/models.py,sha256=kviLrP9SVsMaazGW_TveEkWnSCEmZMP2R2czr5EdBVk,2223726
|
|
530
|
-
tencentcloud/tcss/v20201101/tcss_client.py,sha256=
|
|
530
|
+
tencentcloud/tcss/v20201101/tcss_client.py,sha256=OspiLjZz8iIuGa8JVxoD1mTmSHbJK6D1nZ5adLTWDNA,327538
|
|
531
531
|
tencentcloud/tdid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
532
532
|
tencentcloud/tdid/v20210519/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
533
533
|
tencentcloud/tdid/v20210519/errorcodes.py,sha256=54oNU7iyfhylbxdxVpmfo6VSSeuM4og2zIxLRh6FwD8,1838
|
|
@@ -573,7 +573,7 @@ tencentcloud/tke/v20220501/tke_client.py,sha256=Fcfze5EXabYkyxCqd4MoKq5ssLUKAU1d
|
|
|
573
573
|
tencentcloud/tms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
574
574
|
tencentcloud/tms/v20201229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
575
575
|
tencentcloud/tms/v20201229/errorcodes.py,sha256=0eX6a9ju5tj-LokvwX2w-I1drjySv2b7jQNyL21UnZo,1823
|
|
576
|
-
tencentcloud/tms/v20201229/models.py,sha256=
|
|
576
|
+
tencentcloud/tms/v20201229/models.py,sha256=mN1fiMChfpoXF_tVmIMHs8B9q-fHdgHsDOuQf87DJPk,47647
|
|
577
577
|
tencentcloud/tms/v20201229/tms_client.py,sha256=La5oZmCZOp8Az1LfCvf3fZOZa_MTg9sP-1WhzSYgjis,2559
|
|
578
578
|
tencentcloud/tmt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
579
579
|
tencentcloud/tmt/v20180321/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -634,7 +634,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
634
634
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
635
635
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
636
636
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
637
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
638
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
639
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
640
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
637
|
+
tencentcloud_sdk_python_intl_en-3.0.1151.dist-info/METADATA,sha256=ydpKVzCOjYklJwLRD02Wad8gmo5Ll7oj6Ohvz-g-ZZY,1628
|
|
638
|
+
tencentcloud_sdk_python_intl_en-3.0.1151.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
639
|
+
tencentcloud_sdk_python_intl_en-3.0.1151.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
640
|
+
tencentcloud_sdk_python_intl_en-3.0.1151.dist-info/RECORD,,
|
|
File without changes
|