tencentcloud-sdk-python-intl-en 3.0.1132__py2.py3-none-any.whl → 3.0.1134__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 +25 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +219 -0
- tencentcloud/mdp/v20200527/errorcodes.py +1 -1
- tencentcloud/mdp/v20200527/mdp_client.py +115 -0
- tencentcloud/mdp/v20200527/models.py +692 -36
- {tencentcloud_sdk_python_intl_en-3.0.1132.dist-info → tencentcloud_sdk_python_intl_en-3.0.1134.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1132.dist-info → tencentcloud_sdk_python_intl_en-3.0.1134.dist-info}/RECORD +10 -10
- {tencentcloud_sdk_python_intl_en-3.0.1132.dist-info → tencentcloud_sdk_python_intl_en-3.0.1134.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1132.dist-info → tencentcloud_sdk_python_intl_en-3.0.1134.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -572,6 +572,31 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
|
572
572
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
573
573
|
|
|
574
574
|
|
|
575
|
+
def QueryCustomerBillingQuota(self, request):
|
|
576
|
+
"""Description: This API is used for a sub-customer to real-time query its own total credit and remaining credit in USD.
|
|
577
|
+
|
|
578
|
+
Callable roles: Sub-customer
|
|
579
|
+
|
|
580
|
+
:param request: Request instance for QueryCustomerBillingQuota.
|
|
581
|
+
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.QueryCustomerBillingQuotaRequest`
|
|
582
|
+
:rtype: :class:`tencentcloud.intlpartnersmgt.v20220928.models.QueryCustomerBillingQuotaResponse`
|
|
583
|
+
|
|
584
|
+
"""
|
|
585
|
+
try:
|
|
586
|
+
params = request._serialize()
|
|
587
|
+
headers = request.headers
|
|
588
|
+
body = self.call("QueryCustomerBillingQuota", params, headers=headers)
|
|
589
|
+
response = json.loads(body)
|
|
590
|
+
model = models.QueryCustomerBillingQuotaResponse()
|
|
591
|
+
model._deserialize(response["Response"])
|
|
592
|
+
return model
|
|
593
|
+
except Exception as e:
|
|
594
|
+
if isinstance(e, TencentCloudSDKException):
|
|
595
|
+
raise
|
|
596
|
+
else:
|
|
597
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
598
|
+
|
|
599
|
+
|
|
575
600
|
def QueryCustomersCredit(self, request):
|
|
576
601
|
"""This API is used for a partner to the credits and basic information of cutomers.
|
|
577
602
|
|
|
@@ -4828,6 +4828,225 @@ class QueryCreditQuotaResponse(AbstractModel):
|
|
|
4828
4828
|
self._RequestId = params.get("RequestId")
|
|
4829
4829
|
|
|
4830
4830
|
|
|
4831
|
+
class QueryCustomerBillingQuotaData(AbstractModel):
|
|
4832
|
+
"""Sub-customer credit balance data
|
|
4833
|
+
|
|
4834
|
+
"""
|
|
4835
|
+
|
|
4836
|
+
def __init__(self):
|
|
4837
|
+
r"""
|
|
4838
|
+
:param _TotalCredit: Total credit limit (unit: cny), accurate down to two decimal places.
|
|
4839
|
+
:type TotalCredit: float
|
|
4840
|
+
:param _RemainingCredit: Remaining credit limit (unit: cny), accurate down to two decimal places.
|
|
4841
|
+
:type RemainingCredit: float
|
|
4842
|
+
:param _RemainingVoucher: Remaining total voucher amount (unit: cny), accurate down to two decimal places.
|
|
4843
|
+
:type RemainingVoucher: float
|
|
4844
|
+
:param _Force: Forced status
|
|
4845
|
+
.
|
|
4846
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4847
|
+
:type Force: int
|
|
4848
|
+
:param _PrepayFrozen: Prepaid frozen amount.
|
|
4849
|
+
:type PrepayFrozen: float
|
|
4850
|
+
:param _PostpayFrozen: Postpaid frozen amount.
|
|
4851
|
+
:type PostpayFrozen: float
|
|
4852
|
+
"""
|
|
4853
|
+
self._TotalCredit = None
|
|
4854
|
+
self._RemainingCredit = None
|
|
4855
|
+
self._RemainingVoucher = None
|
|
4856
|
+
self._Force = None
|
|
4857
|
+
self._PrepayFrozen = None
|
|
4858
|
+
self._PostpayFrozen = None
|
|
4859
|
+
|
|
4860
|
+
@property
|
|
4861
|
+
def TotalCredit(self):
|
|
4862
|
+
"""Total credit limit (unit: cny), accurate down to two decimal places.
|
|
4863
|
+
:rtype: float
|
|
4864
|
+
"""
|
|
4865
|
+
return self._TotalCredit
|
|
4866
|
+
|
|
4867
|
+
@TotalCredit.setter
|
|
4868
|
+
def TotalCredit(self, TotalCredit):
|
|
4869
|
+
self._TotalCredit = TotalCredit
|
|
4870
|
+
|
|
4871
|
+
@property
|
|
4872
|
+
def RemainingCredit(self):
|
|
4873
|
+
"""Remaining credit limit (unit: cny), accurate down to two decimal places.
|
|
4874
|
+
:rtype: float
|
|
4875
|
+
"""
|
|
4876
|
+
return self._RemainingCredit
|
|
4877
|
+
|
|
4878
|
+
@RemainingCredit.setter
|
|
4879
|
+
def RemainingCredit(self, RemainingCredit):
|
|
4880
|
+
self._RemainingCredit = RemainingCredit
|
|
4881
|
+
|
|
4882
|
+
@property
|
|
4883
|
+
def RemainingVoucher(self):
|
|
4884
|
+
"""Remaining total voucher amount (unit: cny), accurate down to two decimal places.
|
|
4885
|
+
:rtype: float
|
|
4886
|
+
"""
|
|
4887
|
+
return self._RemainingVoucher
|
|
4888
|
+
|
|
4889
|
+
@RemainingVoucher.setter
|
|
4890
|
+
def RemainingVoucher(self, RemainingVoucher):
|
|
4891
|
+
self._RemainingVoucher = RemainingVoucher
|
|
4892
|
+
|
|
4893
|
+
@property
|
|
4894
|
+
def Force(self):
|
|
4895
|
+
"""Forced status
|
|
4896
|
+
.
|
|
4897
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4898
|
+
:rtype: int
|
|
4899
|
+
"""
|
|
4900
|
+
return self._Force
|
|
4901
|
+
|
|
4902
|
+
@Force.setter
|
|
4903
|
+
def Force(self, Force):
|
|
4904
|
+
self._Force = Force
|
|
4905
|
+
|
|
4906
|
+
@property
|
|
4907
|
+
def PrepayFrozen(self):
|
|
4908
|
+
"""Prepaid frozen amount.
|
|
4909
|
+
:rtype: float
|
|
4910
|
+
"""
|
|
4911
|
+
return self._PrepayFrozen
|
|
4912
|
+
|
|
4913
|
+
@PrepayFrozen.setter
|
|
4914
|
+
def PrepayFrozen(self, PrepayFrozen):
|
|
4915
|
+
self._PrepayFrozen = PrepayFrozen
|
|
4916
|
+
|
|
4917
|
+
@property
|
|
4918
|
+
def PostpayFrozen(self):
|
|
4919
|
+
"""Postpaid frozen amount.
|
|
4920
|
+
:rtype: float
|
|
4921
|
+
"""
|
|
4922
|
+
return self._PostpayFrozen
|
|
4923
|
+
|
|
4924
|
+
@PostpayFrozen.setter
|
|
4925
|
+
def PostpayFrozen(self, PostpayFrozen):
|
|
4926
|
+
self._PostpayFrozen = PostpayFrozen
|
|
4927
|
+
|
|
4928
|
+
|
|
4929
|
+
def _deserialize(self, params):
|
|
4930
|
+
self._TotalCredit = params.get("TotalCredit")
|
|
4931
|
+
self._RemainingCredit = params.get("RemainingCredit")
|
|
4932
|
+
self._RemainingVoucher = params.get("RemainingVoucher")
|
|
4933
|
+
self._Force = params.get("Force")
|
|
4934
|
+
self._PrepayFrozen = params.get("PrepayFrozen")
|
|
4935
|
+
self._PostpayFrozen = params.get("PostpayFrozen")
|
|
4936
|
+
memeber_set = set(params.keys())
|
|
4937
|
+
for name, value in vars(self).items():
|
|
4938
|
+
property_name = name[1:]
|
|
4939
|
+
if property_name in memeber_set:
|
|
4940
|
+
memeber_set.remove(property_name)
|
|
4941
|
+
if len(memeber_set) > 0:
|
|
4942
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4943
|
+
|
|
4944
|
+
|
|
4945
|
+
|
|
4946
|
+
class QueryCustomerBillingQuotaRequest(AbstractModel):
|
|
4947
|
+
"""QueryCustomerBillingQuota request structure.
|
|
4948
|
+
|
|
4949
|
+
"""
|
|
4950
|
+
|
|
4951
|
+
def __init__(self):
|
|
4952
|
+
r"""
|
|
4953
|
+
:param _EventId: Event id, used to tag the request event, usually a random number.
|
|
4954
|
+
:type EventId: int
|
|
4955
|
+
:param _ComponentName: Source of the request.
|
|
4956
|
+
:type ComponentName: str
|
|
4957
|
+
"""
|
|
4958
|
+
self._EventId = None
|
|
4959
|
+
self._ComponentName = None
|
|
4960
|
+
|
|
4961
|
+
@property
|
|
4962
|
+
def EventId(self):
|
|
4963
|
+
warnings.warn("parameter `EventId` is deprecated", DeprecationWarning)
|
|
4964
|
+
|
|
4965
|
+
"""Event id, used to tag the request event, usually a random number.
|
|
4966
|
+
:rtype: int
|
|
4967
|
+
"""
|
|
4968
|
+
return self._EventId
|
|
4969
|
+
|
|
4970
|
+
@EventId.setter
|
|
4971
|
+
def EventId(self, EventId):
|
|
4972
|
+
warnings.warn("parameter `EventId` is deprecated", DeprecationWarning)
|
|
4973
|
+
|
|
4974
|
+
self._EventId = EventId
|
|
4975
|
+
|
|
4976
|
+
@property
|
|
4977
|
+
def ComponentName(self):
|
|
4978
|
+
warnings.warn("parameter `ComponentName` is deprecated", DeprecationWarning)
|
|
4979
|
+
|
|
4980
|
+
"""Source of the request.
|
|
4981
|
+
:rtype: str
|
|
4982
|
+
"""
|
|
4983
|
+
return self._ComponentName
|
|
4984
|
+
|
|
4985
|
+
@ComponentName.setter
|
|
4986
|
+
def ComponentName(self, ComponentName):
|
|
4987
|
+
warnings.warn("parameter `ComponentName` is deprecated", DeprecationWarning)
|
|
4988
|
+
|
|
4989
|
+
self._ComponentName = ComponentName
|
|
4990
|
+
|
|
4991
|
+
|
|
4992
|
+
def _deserialize(self, params):
|
|
4993
|
+
self._EventId = params.get("EventId")
|
|
4994
|
+
self._ComponentName = params.get("ComponentName")
|
|
4995
|
+
memeber_set = set(params.keys())
|
|
4996
|
+
for name, value in vars(self).items():
|
|
4997
|
+
property_name = name[1:]
|
|
4998
|
+
if property_name in memeber_set:
|
|
4999
|
+
memeber_set.remove(property_name)
|
|
5000
|
+
if len(memeber_set) > 0:
|
|
5001
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5002
|
+
|
|
5003
|
+
|
|
5004
|
+
|
|
5005
|
+
class QueryCustomerBillingQuotaResponse(AbstractModel):
|
|
5006
|
+
"""QueryCustomerBillingQuota response structure.
|
|
5007
|
+
|
|
5008
|
+
"""
|
|
5009
|
+
|
|
5010
|
+
def __init__(self):
|
|
5011
|
+
r"""
|
|
5012
|
+
:param _Data: Limit data.
|
|
5013
|
+
:type Data: :class:`tencentcloud.intlpartnersmgt.v20220928.models.QueryCustomerBillingQuotaData`
|
|
5014
|
+
: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.
|
|
5015
|
+
:type RequestId: str
|
|
5016
|
+
"""
|
|
5017
|
+
self._Data = None
|
|
5018
|
+
self._RequestId = None
|
|
5019
|
+
|
|
5020
|
+
@property
|
|
5021
|
+
def Data(self):
|
|
5022
|
+
"""Limit data.
|
|
5023
|
+
:rtype: :class:`tencentcloud.intlpartnersmgt.v20220928.models.QueryCustomerBillingQuotaData`
|
|
5024
|
+
"""
|
|
5025
|
+
return self._Data
|
|
5026
|
+
|
|
5027
|
+
@Data.setter
|
|
5028
|
+
def Data(self, Data):
|
|
5029
|
+
self._Data = Data
|
|
5030
|
+
|
|
5031
|
+
@property
|
|
5032
|
+
def RequestId(self):
|
|
5033
|
+
"""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.
|
|
5034
|
+
:rtype: str
|
|
5035
|
+
"""
|
|
5036
|
+
return self._RequestId
|
|
5037
|
+
|
|
5038
|
+
@RequestId.setter
|
|
5039
|
+
def RequestId(self, RequestId):
|
|
5040
|
+
self._RequestId = RequestId
|
|
5041
|
+
|
|
5042
|
+
|
|
5043
|
+
def _deserialize(self, params):
|
|
5044
|
+
if params.get("Data") is not None:
|
|
5045
|
+
self._Data = QueryCustomerBillingQuotaData()
|
|
5046
|
+
self._Data._deserialize(params.get("Data"))
|
|
5047
|
+
self._RequestId = params.get("RequestId")
|
|
5048
|
+
|
|
5049
|
+
|
|
4831
5050
|
class QueryCustomersCreditData(AbstractModel):
|
|
4832
5051
|
"""Complex type of output parameters for querying customer's credit
|
|
4833
5052
|
|
|
@@ -62,7 +62,7 @@ INVALIDPARAMETER_POINTS = 'InvalidParameter.Points'
|
|
|
62
62
|
# Invalid protocol.
|
|
63
63
|
INVALIDPARAMETER_PROTOCOL = 'InvalidParameter.Protocol'
|
|
64
64
|
|
|
65
|
-
#
|
|
65
|
+
# Invalid ad insertion configuration parameters.
|
|
66
66
|
INVALIDPARAMETER_SSAIINFO = 'InvalidParameter.SSAIInfo'
|
|
67
67
|
|
|
68
68
|
# Invalid `Url`.
|
|
@@ -164,6 +164,29 @@ class MdpClient(AbstractClient):
|
|
|
164
164
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
165
165
|
|
|
166
166
|
|
|
167
|
+
def CreateStreamPackageSSAIChannel(self, request):
|
|
168
|
+
"""CreateStreamPackageSSAIChannel
|
|
169
|
+
|
|
170
|
+
:param request: Request instance for CreateStreamPackageSSAIChannel.
|
|
171
|
+
:type request: :class:`tencentcloud.mdp.v20200527.models.CreateStreamPackageSSAIChannelRequest`
|
|
172
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.CreateStreamPackageSSAIChannelResponse`
|
|
173
|
+
|
|
174
|
+
"""
|
|
175
|
+
try:
|
|
176
|
+
params = request._serialize()
|
|
177
|
+
headers = request.headers
|
|
178
|
+
body = self.call("CreateStreamPackageSSAIChannel", params, headers=headers)
|
|
179
|
+
response = json.loads(body)
|
|
180
|
+
model = models.CreateStreamPackageSSAIChannelResponse()
|
|
181
|
+
model._deserialize(response["Response"])
|
|
182
|
+
return model
|
|
183
|
+
except Exception as e:
|
|
184
|
+
if isinstance(e, TencentCloudSDKException):
|
|
185
|
+
raise
|
|
186
|
+
else:
|
|
187
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
188
|
+
|
|
189
|
+
|
|
167
190
|
def CreateStreamPackageSource(self, request):
|
|
168
191
|
"""Create channel linear assembly Source.
|
|
169
192
|
|
|
@@ -394,6 +417,29 @@ class MdpClient(AbstractClient):
|
|
|
394
417
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
395
418
|
|
|
396
419
|
|
|
420
|
+
def DeleteStreamPackageSSAIChannel(self, request):
|
|
421
|
+
"""DeleteStreamPackageSSAIChannel
|
|
422
|
+
|
|
423
|
+
:param request: Request instance for DeleteStreamPackageSSAIChannel.
|
|
424
|
+
:type request: :class:`tencentcloud.mdp.v20200527.models.DeleteStreamPackageSSAIChannelRequest`
|
|
425
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.DeleteStreamPackageSSAIChannelResponse`
|
|
426
|
+
|
|
427
|
+
"""
|
|
428
|
+
try:
|
|
429
|
+
params = request._serialize()
|
|
430
|
+
headers = request.headers
|
|
431
|
+
body = self.call("DeleteStreamPackageSSAIChannel", params, headers=headers)
|
|
432
|
+
response = json.loads(body)
|
|
433
|
+
model = models.DeleteStreamPackageSSAIChannelResponse()
|
|
434
|
+
model._deserialize(response["Response"])
|
|
435
|
+
return model
|
|
436
|
+
except Exception as e:
|
|
437
|
+
if isinstance(e, TencentCloudSDKException):
|
|
438
|
+
raise
|
|
439
|
+
else:
|
|
440
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
441
|
+
|
|
442
|
+
|
|
397
443
|
def DeleteStreamPackageSource(self, request):
|
|
398
444
|
"""Delete channel linear assembly Source.
|
|
399
445
|
|
|
@@ -670,6 +716,52 @@ class MdpClient(AbstractClient):
|
|
|
670
716
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
671
717
|
|
|
672
718
|
|
|
719
|
+
def DescribeStreamPackageSSAIChannel(self, request):
|
|
720
|
+
"""DescribeStreamPackageSSAIChannel
|
|
721
|
+
|
|
722
|
+
:param request: Request instance for DescribeStreamPackageSSAIChannel.
|
|
723
|
+
:type request: :class:`tencentcloud.mdp.v20200527.models.DescribeStreamPackageSSAIChannelRequest`
|
|
724
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.DescribeStreamPackageSSAIChannelResponse`
|
|
725
|
+
|
|
726
|
+
"""
|
|
727
|
+
try:
|
|
728
|
+
params = request._serialize()
|
|
729
|
+
headers = request.headers
|
|
730
|
+
body = self.call("DescribeStreamPackageSSAIChannel", params, headers=headers)
|
|
731
|
+
response = json.loads(body)
|
|
732
|
+
model = models.DescribeStreamPackageSSAIChannelResponse()
|
|
733
|
+
model._deserialize(response["Response"])
|
|
734
|
+
return model
|
|
735
|
+
except Exception as e:
|
|
736
|
+
if isinstance(e, TencentCloudSDKException):
|
|
737
|
+
raise
|
|
738
|
+
else:
|
|
739
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
def DescribeStreamPackageSSAIChannels(self, request):
|
|
743
|
+
"""DescribeStreamPackageSSAIChannels
|
|
744
|
+
|
|
745
|
+
:param request: Request instance for DescribeStreamPackageSSAIChannels.
|
|
746
|
+
:type request: :class:`tencentcloud.mdp.v20200527.models.DescribeStreamPackageSSAIChannelsRequest`
|
|
747
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.DescribeStreamPackageSSAIChannelsResponse`
|
|
748
|
+
|
|
749
|
+
"""
|
|
750
|
+
try:
|
|
751
|
+
params = request._serialize()
|
|
752
|
+
headers = request.headers
|
|
753
|
+
body = self.call("DescribeStreamPackageSSAIChannels", params, headers=headers)
|
|
754
|
+
response = json.loads(body)
|
|
755
|
+
model = models.DescribeStreamPackageSSAIChannelsResponse()
|
|
756
|
+
model._deserialize(response["Response"])
|
|
757
|
+
return model
|
|
758
|
+
except Exception as e:
|
|
759
|
+
if isinstance(e, TencentCloudSDKException):
|
|
760
|
+
raise
|
|
761
|
+
else:
|
|
762
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
763
|
+
|
|
764
|
+
|
|
673
765
|
def DescribeStreamPackageSource(self, request):
|
|
674
766
|
"""Query channel linear assembly Source information.
|
|
675
767
|
|
|
@@ -923,6 +1015,29 @@ class MdpClient(AbstractClient):
|
|
|
923
1015
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
924
1016
|
|
|
925
1017
|
|
|
1018
|
+
def ModifyStreamPackageSSAIChannel(self, request):
|
|
1019
|
+
"""ModifyStreamPackageSSAIChannel
|
|
1020
|
+
|
|
1021
|
+
:param request: Request instance for ModifyStreamPackageSSAIChannel.
|
|
1022
|
+
:type request: :class:`tencentcloud.mdp.v20200527.models.ModifyStreamPackageSSAIChannelRequest`
|
|
1023
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.ModifyStreamPackageSSAIChannelResponse`
|
|
1024
|
+
|
|
1025
|
+
"""
|
|
1026
|
+
try:
|
|
1027
|
+
params = request._serialize()
|
|
1028
|
+
headers = request.headers
|
|
1029
|
+
body = self.call("ModifyStreamPackageSSAIChannel", params, headers=headers)
|
|
1030
|
+
response = json.loads(body)
|
|
1031
|
+
model = models.ModifyStreamPackageSSAIChannelResponse()
|
|
1032
|
+
model._deserialize(response["Response"])
|
|
1033
|
+
return model
|
|
1034
|
+
except Exception as e:
|
|
1035
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1036
|
+
raise
|
|
1037
|
+
else:
|
|
1038
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1039
|
+
|
|
1040
|
+
|
|
926
1041
|
def ModifyStreamPackageSource(self, request):
|
|
927
1042
|
"""Modify channel linear assembly Source configuration.
|
|
928
1043
|
|
|
@@ -1517,6 +1517,119 @@ class CreateStreamPackageLinearAssemblyProgramResponse(AbstractModel):
|
|
|
1517
1517
|
self._RequestId = params.get("RequestId")
|
|
1518
1518
|
|
|
1519
1519
|
|
|
1520
|
+
class CreateStreamPackageSSAIChannelRequest(AbstractModel):
|
|
1521
|
+
"""CreateStreamPackageSSAIChannel request structure.
|
|
1522
|
+
|
|
1523
|
+
"""
|
|
1524
|
+
|
|
1525
|
+
def __init__(self):
|
|
1526
|
+
r"""
|
|
1527
|
+
:param _Name: Ad insertion configuration name, globally unique, cannot be repeated with other configurations
|
|
1528
|
+
:type Name: str
|
|
1529
|
+
:param _ContentSource: Source stream url prefix
|
|
1530
|
+
:type ContentSource: str
|
|
1531
|
+
:param _SSAIInfo: Ad insertion configuration information
|
|
1532
|
+
:type SSAIInfo: :class:`tencentcloud.mdp.v20200527.models.SSAIConf`
|
|
1533
|
+
"""
|
|
1534
|
+
self._Name = None
|
|
1535
|
+
self._ContentSource = None
|
|
1536
|
+
self._SSAIInfo = None
|
|
1537
|
+
|
|
1538
|
+
@property
|
|
1539
|
+
def Name(self):
|
|
1540
|
+
"""Ad insertion configuration name, globally unique, cannot be repeated with other configurations
|
|
1541
|
+
:rtype: str
|
|
1542
|
+
"""
|
|
1543
|
+
return self._Name
|
|
1544
|
+
|
|
1545
|
+
@Name.setter
|
|
1546
|
+
def Name(self, Name):
|
|
1547
|
+
self._Name = Name
|
|
1548
|
+
|
|
1549
|
+
@property
|
|
1550
|
+
def ContentSource(self):
|
|
1551
|
+
"""Source stream url prefix
|
|
1552
|
+
:rtype: str
|
|
1553
|
+
"""
|
|
1554
|
+
return self._ContentSource
|
|
1555
|
+
|
|
1556
|
+
@ContentSource.setter
|
|
1557
|
+
def ContentSource(self, ContentSource):
|
|
1558
|
+
self._ContentSource = ContentSource
|
|
1559
|
+
|
|
1560
|
+
@property
|
|
1561
|
+
def SSAIInfo(self):
|
|
1562
|
+
"""Ad insertion configuration information
|
|
1563
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.SSAIConf`
|
|
1564
|
+
"""
|
|
1565
|
+
return self._SSAIInfo
|
|
1566
|
+
|
|
1567
|
+
@SSAIInfo.setter
|
|
1568
|
+
def SSAIInfo(self, SSAIInfo):
|
|
1569
|
+
self._SSAIInfo = SSAIInfo
|
|
1570
|
+
|
|
1571
|
+
|
|
1572
|
+
def _deserialize(self, params):
|
|
1573
|
+
self._Name = params.get("Name")
|
|
1574
|
+
self._ContentSource = params.get("ContentSource")
|
|
1575
|
+
if params.get("SSAIInfo") is not None:
|
|
1576
|
+
self._SSAIInfo = SSAIConf()
|
|
1577
|
+
self._SSAIInfo._deserialize(params.get("SSAIInfo"))
|
|
1578
|
+
memeber_set = set(params.keys())
|
|
1579
|
+
for name, value in vars(self).items():
|
|
1580
|
+
property_name = name[1:]
|
|
1581
|
+
if property_name in memeber_set:
|
|
1582
|
+
memeber_set.remove(property_name)
|
|
1583
|
+
if len(memeber_set) > 0:
|
|
1584
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1585
|
+
|
|
1586
|
+
|
|
1587
|
+
|
|
1588
|
+
class CreateStreamPackageSSAIChannelResponse(AbstractModel):
|
|
1589
|
+
"""CreateStreamPackageSSAIChannel response structure.
|
|
1590
|
+
|
|
1591
|
+
"""
|
|
1592
|
+
|
|
1593
|
+
def __init__(self):
|
|
1594
|
+
r"""
|
|
1595
|
+
:param _Info: Ad insertion configuration information
|
|
1596
|
+
:type Info: :class:`tencentcloud.mdp.v20200527.models.SSAIChannelInfo`
|
|
1597
|
+
: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.
|
|
1598
|
+
:type RequestId: str
|
|
1599
|
+
"""
|
|
1600
|
+
self._Info = None
|
|
1601
|
+
self._RequestId = None
|
|
1602
|
+
|
|
1603
|
+
@property
|
|
1604
|
+
def Info(self):
|
|
1605
|
+
"""Ad insertion configuration information
|
|
1606
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.SSAIChannelInfo`
|
|
1607
|
+
"""
|
|
1608
|
+
return self._Info
|
|
1609
|
+
|
|
1610
|
+
@Info.setter
|
|
1611
|
+
def Info(self, Info):
|
|
1612
|
+
self._Info = Info
|
|
1613
|
+
|
|
1614
|
+
@property
|
|
1615
|
+
def RequestId(self):
|
|
1616
|
+
"""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.
|
|
1617
|
+
:rtype: str
|
|
1618
|
+
"""
|
|
1619
|
+
return self._RequestId
|
|
1620
|
+
|
|
1621
|
+
@RequestId.setter
|
|
1622
|
+
def RequestId(self, RequestId):
|
|
1623
|
+
self._RequestId = RequestId
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
def _deserialize(self, params):
|
|
1627
|
+
if params.get("Info") is not None:
|
|
1628
|
+
self._Info = SSAIChannelInfo()
|
|
1629
|
+
self._Info._deserialize(params.get("Info"))
|
|
1630
|
+
self._RequestId = params.get("RequestId")
|
|
1631
|
+
|
|
1632
|
+
|
|
1520
1633
|
class CreateStreamPackageSourceLocationRequest(AbstractModel):
|
|
1521
1634
|
"""CreateStreamPackageSourceLocation request structure.
|
|
1522
1635
|
|
|
@@ -2439,6 +2552,70 @@ class DeleteStreamPackageLinearAssemblyProgramsResponse(AbstractModel):
|
|
|
2439
2552
|
self._RequestId = params.get("RequestId")
|
|
2440
2553
|
|
|
2441
2554
|
|
|
2555
|
+
class DeleteStreamPackageSSAIChannelRequest(AbstractModel):
|
|
2556
|
+
"""DeleteStreamPackageSSAIChannel request structure.
|
|
2557
|
+
|
|
2558
|
+
"""
|
|
2559
|
+
|
|
2560
|
+
def __init__(self):
|
|
2561
|
+
r"""
|
|
2562
|
+
:param _ID: Ad insertion configuration ID that needs to be deleted
|
|
2563
|
+
:type ID: str
|
|
2564
|
+
"""
|
|
2565
|
+
self._ID = None
|
|
2566
|
+
|
|
2567
|
+
@property
|
|
2568
|
+
def ID(self):
|
|
2569
|
+
"""Ad insertion configuration ID that needs to be deleted
|
|
2570
|
+
:rtype: str
|
|
2571
|
+
"""
|
|
2572
|
+
return self._ID
|
|
2573
|
+
|
|
2574
|
+
@ID.setter
|
|
2575
|
+
def ID(self, ID):
|
|
2576
|
+
self._ID = ID
|
|
2577
|
+
|
|
2578
|
+
|
|
2579
|
+
def _deserialize(self, params):
|
|
2580
|
+
self._ID = params.get("ID")
|
|
2581
|
+
memeber_set = set(params.keys())
|
|
2582
|
+
for name, value in vars(self).items():
|
|
2583
|
+
property_name = name[1:]
|
|
2584
|
+
if property_name in memeber_set:
|
|
2585
|
+
memeber_set.remove(property_name)
|
|
2586
|
+
if len(memeber_set) > 0:
|
|
2587
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2588
|
+
|
|
2589
|
+
|
|
2590
|
+
|
|
2591
|
+
class DeleteStreamPackageSSAIChannelResponse(AbstractModel):
|
|
2592
|
+
"""DeleteStreamPackageSSAIChannel response structure.
|
|
2593
|
+
|
|
2594
|
+
"""
|
|
2595
|
+
|
|
2596
|
+
def __init__(self):
|
|
2597
|
+
r"""
|
|
2598
|
+
: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.
|
|
2599
|
+
:type RequestId: str
|
|
2600
|
+
"""
|
|
2601
|
+
self._RequestId = None
|
|
2602
|
+
|
|
2603
|
+
@property
|
|
2604
|
+
def RequestId(self):
|
|
2605
|
+
"""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.
|
|
2606
|
+
:rtype: str
|
|
2607
|
+
"""
|
|
2608
|
+
return self._RequestId
|
|
2609
|
+
|
|
2610
|
+
@RequestId.setter
|
|
2611
|
+
def RequestId(self, RequestId):
|
|
2612
|
+
self._RequestId = RequestId
|
|
2613
|
+
|
|
2614
|
+
|
|
2615
|
+
def _deserialize(self, params):
|
|
2616
|
+
self._RequestId = params.get("RequestId")
|
|
2617
|
+
|
|
2618
|
+
|
|
2442
2619
|
class DeleteStreamPackageSourceLocationRequest(AbstractModel):
|
|
2443
2620
|
"""DeleteStreamPackageSourceLocation request structure.
|
|
2444
2621
|
|
|
@@ -3834,13 +4011,238 @@ class DescribeStreamPackageLinearAssemblyProgramsResponse(AbstractModel):
|
|
|
3834
4011
|
if params.get("Infos") is not None:
|
|
3835
4012
|
self._Infos = []
|
|
3836
4013
|
for item in params.get("Infos"):
|
|
3837
|
-
obj = LinearAssemblyProgramInfo()
|
|
4014
|
+
obj = LinearAssemblyProgramInfo()
|
|
4015
|
+
obj._deserialize(item)
|
|
4016
|
+
self._Infos.append(obj)
|
|
4017
|
+
self._PageNum = params.get("PageNum")
|
|
4018
|
+
self._PageSize = params.get("PageSize")
|
|
4019
|
+
self._TotalNum = params.get("TotalNum")
|
|
4020
|
+
self._TotalPage = params.get("TotalPage")
|
|
4021
|
+
self._RequestId = params.get("RequestId")
|
|
4022
|
+
|
|
4023
|
+
|
|
4024
|
+
class DescribeStreamPackageSSAIChannelRequest(AbstractModel):
|
|
4025
|
+
"""DescribeStreamPackageSSAIChannel request structure.
|
|
4026
|
+
|
|
4027
|
+
"""
|
|
4028
|
+
|
|
4029
|
+
def __init__(self):
|
|
4030
|
+
r"""
|
|
4031
|
+
:param _ID: Ad insertion configuration ID
|
|
4032
|
+
:type ID: str
|
|
4033
|
+
"""
|
|
4034
|
+
self._ID = None
|
|
4035
|
+
|
|
4036
|
+
@property
|
|
4037
|
+
def ID(self):
|
|
4038
|
+
"""Ad insertion configuration ID
|
|
4039
|
+
:rtype: str
|
|
4040
|
+
"""
|
|
4041
|
+
return self._ID
|
|
4042
|
+
|
|
4043
|
+
@ID.setter
|
|
4044
|
+
def ID(self, ID):
|
|
4045
|
+
self._ID = ID
|
|
4046
|
+
|
|
4047
|
+
|
|
4048
|
+
def _deserialize(self, params):
|
|
4049
|
+
self._ID = params.get("ID")
|
|
4050
|
+
memeber_set = set(params.keys())
|
|
4051
|
+
for name, value in vars(self).items():
|
|
4052
|
+
property_name = name[1:]
|
|
4053
|
+
if property_name in memeber_set:
|
|
4054
|
+
memeber_set.remove(property_name)
|
|
4055
|
+
if len(memeber_set) > 0:
|
|
4056
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4057
|
+
|
|
4058
|
+
|
|
4059
|
+
|
|
4060
|
+
class DescribeStreamPackageSSAIChannelResponse(AbstractModel):
|
|
4061
|
+
"""DescribeStreamPackageSSAIChannel response structure.
|
|
4062
|
+
|
|
4063
|
+
"""
|
|
4064
|
+
|
|
4065
|
+
def __init__(self):
|
|
4066
|
+
r"""
|
|
4067
|
+
:param _Info: Ad insertion configuration information
|
|
4068
|
+
:type Info: :class:`tencentcloud.mdp.v20200527.models.SSAIChannelInfo`
|
|
4069
|
+
: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.
|
|
4070
|
+
:type RequestId: str
|
|
4071
|
+
"""
|
|
4072
|
+
self._Info = None
|
|
4073
|
+
self._RequestId = None
|
|
4074
|
+
|
|
4075
|
+
@property
|
|
4076
|
+
def Info(self):
|
|
4077
|
+
"""Ad insertion configuration information
|
|
4078
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.SSAIChannelInfo`
|
|
4079
|
+
"""
|
|
4080
|
+
return self._Info
|
|
4081
|
+
|
|
4082
|
+
@Info.setter
|
|
4083
|
+
def Info(self, Info):
|
|
4084
|
+
self._Info = Info
|
|
4085
|
+
|
|
4086
|
+
@property
|
|
4087
|
+
def RequestId(self):
|
|
4088
|
+
"""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.
|
|
4089
|
+
:rtype: str
|
|
4090
|
+
"""
|
|
4091
|
+
return self._RequestId
|
|
4092
|
+
|
|
4093
|
+
@RequestId.setter
|
|
4094
|
+
def RequestId(self, RequestId):
|
|
4095
|
+
self._RequestId = RequestId
|
|
4096
|
+
|
|
4097
|
+
|
|
4098
|
+
def _deserialize(self, params):
|
|
4099
|
+
if params.get("Info") is not None:
|
|
4100
|
+
self._Info = SSAIChannelInfo()
|
|
4101
|
+
self._Info._deserialize(params.get("Info"))
|
|
4102
|
+
self._RequestId = params.get("RequestId")
|
|
4103
|
+
|
|
4104
|
+
|
|
4105
|
+
class DescribeStreamPackageSSAIChannelsRequest(AbstractModel):
|
|
4106
|
+
"""DescribeStreamPackageSSAIChannels request structure.
|
|
4107
|
+
|
|
4108
|
+
"""
|
|
4109
|
+
|
|
4110
|
+
def __init__(self):
|
|
4111
|
+
r"""
|
|
4112
|
+
:param _PageNum: Page number, default is 1
|
|
4113
|
+
:type PageNum: int
|
|
4114
|
+
:param _PageSize: Page size, default is 10
|
|
4115
|
+
:type PageSize: int
|
|
4116
|
+
"""
|
|
4117
|
+
self._PageNum = None
|
|
4118
|
+
self._PageSize = None
|
|
4119
|
+
|
|
4120
|
+
@property
|
|
4121
|
+
def PageNum(self):
|
|
4122
|
+
"""Page number, default is 1
|
|
4123
|
+
:rtype: int
|
|
4124
|
+
"""
|
|
4125
|
+
return self._PageNum
|
|
4126
|
+
|
|
4127
|
+
@PageNum.setter
|
|
4128
|
+
def PageNum(self, PageNum):
|
|
4129
|
+
self._PageNum = PageNum
|
|
4130
|
+
|
|
4131
|
+
@property
|
|
4132
|
+
def PageSize(self):
|
|
4133
|
+
"""Page size, default is 10
|
|
4134
|
+
:rtype: int
|
|
4135
|
+
"""
|
|
4136
|
+
return self._PageSize
|
|
4137
|
+
|
|
4138
|
+
@PageSize.setter
|
|
4139
|
+
def PageSize(self, PageSize):
|
|
4140
|
+
self._PageSize = PageSize
|
|
4141
|
+
|
|
4142
|
+
|
|
4143
|
+
def _deserialize(self, params):
|
|
4144
|
+
self._PageNum = params.get("PageNum")
|
|
4145
|
+
self._PageSize = params.get("PageSize")
|
|
4146
|
+
memeber_set = set(params.keys())
|
|
4147
|
+
for name, value in vars(self).items():
|
|
4148
|
+
property_name = name[1:]
|
|
4149
|
+
if property_name in memeber_set:
|
|
4150
|
+
memeber_set.remove(property_name)
|
|
4151
|
+
if len(memeber_set) > 0:
|
|
4152
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4153
|
+
|
|
4154
|
+
|
|
4155
|
+
|
|
4156
|
+
class DescribeStreamPackageSSAIChannelsResponse(AbstractModel):
|
|
4157
|
+
"""DescribeStreamPackageSSAIChannels response structure.
|
|
4158
|
+
|
|
4159
|
+
"""
|
|
4160
|
+
|
|
4161
|
+
def __init__(self):
|
|
4162
|
+
r"""
|
|
4163
|
+
:param _Infos: Ad insertion configuration information.
|
|
4164
|
+
:type Infos: list of SSAIChannelInfo
|
|
4165
|
+
:param _PageNum: Page number
|
|
4166
|
+
:type PageNum: int
|
|
4167
|
+
:param _PageSize: Page size
|
|
4168
|
+
:type PageSize: int
|
|
4169
|
+
:param _TotalNum: Total number
|
|
4170
|
+
:type TotalNum: int
|
|
4171
|
+
: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.
|
|
4172
|
+
:type RequestId: str
|
|
4173
|
+
"""
|
|
4174
|
+
self._Infos = None
|
|
4175
|
+
self._PageNum = None
|
|
4176
|
+
self._PageSize = None
|
|
4177
|
+
self._TotalNum = None
|
|
4178
|
+
self._RequestId = None
|
|
4179
|
+
|
|
4180
|
+
@property
|
|
4181
|
+
def Infos(self):
|
|
4182
|
+
"""Ad insertion configuration information.
|
|
4183
|
+
:rtype: list of SSAIChannelInfo
|
|
4184
|
+
"""
|
|
4185
|
+
return self._Infos
|
|
4186
|
+
|
|
4187
|
+
@Infos.setter
|
|
4188
|
+
def Infos(self, Infos):
|
|
4189
|
+
self._Infos = Infos
|
|
4190
|
+
|
|
4191
|
+
@property
|
|
4192
|
+
def PageNum(self):
|
|
4193
|
+
"""Page number
|
|
4194
|
+
:rtype: int
|
|
4195
|
+
"""
|
|
4196
|
+
return self._PageNum
|
|
4197
|
+
|
|
4198
|
+
@PageNum.setter
|
|
4199
|
+
def PageNum(self, PageNum):
|
|
4200
|
+
self._PageNum = PageNum
|
|
4201
|
+
|
|
4202
|
+
@property
|
|
4203
|
+
def PageSize(self):
|
|
4204
|
+
"""Page size
|
|
4205
|
+
:rtype: int
|
|
4206
|
+
"""
|
|
4207
|
+
return self._PageSize
|
|
4208
|
+
|
|
4209
|
+
@PageSize.setter
|
|
4210
|
+
def PageSize(self, PageSize):
|
|
4211
|
+
self._PageSize = PageSize
|
|
4212
|
+
|
|
4213
|
+
@property
|
|
4214
|
+
def TotalNum(self):
|
|
4215
|
+
"""Total number
|
|
4216
|
+
:rtype: int
|
|
4217
|
+
"""
|
|
4218
|
+
return self._TotalNum
|
|
4219
|
+
|
|
4220
|
+
@TotalNum.setter
|
|
4221
|
+
def TotalNum(self, TotalNum):
|
|
4222
|
+
self._TotalNum = TotalNum
|
|
4223
|
+
|
|
4224
|
+
@property
|
|
4225
|
+
def RequestId(self):
|
|
4226
|
+
"""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.
|
|
4227
|
+
:rtype: str
|
|
4228
|
+
"""
|
|
4229
|
+
return self._RequestId
|
|
4230
|
+
|
|
4231
|
+
@RequestId.setter
|
|
4232
|
+
def RequestId(self, RequestId):
|
|
4233
|
+
self._RequestId = RequestId
|
|
4234
|
+
|
|
4235
|
+
|
|
4236
|
+
def _deserialize(self, params):
|
|
4237
|
+
if params.get("Infos") is not None:
|
|
4238
|
+
self._Infos = []
|
|
4239
|
+
for item in params.get("Infos"):
|
|
4240
|
+
obj = SSAIChannelInfo()
|
|
3838
4241
|
obj._deserialize(item)
|
|
3839
4242
|
self._Infos.append(obj)
|
|
3840
4243
|
self._PageNum = params.get("PageNum")
|
|
3841
4244
|
self._PageSize = params.get("PageSize")
|
|
3842
4245
|
self._TotalNum = params.get("TotalNum")
|
|
3843
|
-
self._TotalPage = params.get("TotalPage")
|
|
3844
4246
|
self._RequestId = params.get("RequestId")
|
|
3845
4247
|
|
|
3846
4248
|
|
|
@@ -6569,6 +6971,117 @@ class ModifyStreamPackageLinearAssemblyProgramResponse(AbstractModel):
|
|
|
6569
6971
|
self._RequestId = params.get("RequestId")
|
|
6570
6972
|
|
|
6571
6973
|
|
|
6974
|
+
class ModifyStreamPackageSSAIChannelRequest(AbstractModel):
|
|
6975
|
+
"""ModifyStreamPackageSSAIChannel request structure.
|
|
6976
|
+
|
|
6977
|
+
"""
|
|
6978
|
+
|
|
6979
|
+
def __init__(self):
|
|
6980
|
+
r"""
|
|
6981
|
+
:param _Name: Ad insertion configuration name, globally unique, cannot be repeated.
|
|
6982
|
+
:type Name: str
|
|
6983
|
+
:param _ContentSource: Content source prefix.
|
|
6984
|
+
:type ContentSource: str
|
|
6985
|
+
:param _SSAIInfo: Ad insertion configuration information
|
|
6986
|
+
:type SSAIInfo: :class:`tencentcloud.mdp.v20200527.models.SSAIConf`
|
|
6987
|
+
:param _ID: Ad insertion configuration ID
|
|
6988
|
+
:type ID: str
|
|
6989
|
+
"""
|
|
6990
|
+
self._Name = None
|
|
6991
|
+
self._ContentSource = None
|
|
6992
|
+
self._SSAIInfo = None
|
|
6993
|
+
self._ID = None
|
|
6994
|
+
|
|
6995
|
+
@property
|
|
6996
|
+
def Name(self):
|
|
6997
|
+
"""Ad insertion configuration name, globally unique, cannot be repeated.
|
|
6998
|
+
:rtype: str
|
|
6999
|
+
"""
|
|
7000
|
+
return self._Name
|
|
7001
|
+
|
|
7002
|
+
@Name.setter
|
|
7003
|
+
def Name(self, Name):
|
|
7004
|
+
self._Name = Name
|
|
7005
|
+
|
|
7006
|
+
@property
|
|
7007
|
+
def ContentSource(self):
|
|
7008
|
+
"""Content source prefix.
|
|
7009
|
+
:rtype: str
|
|
7010
|
+
"""
|
|
7011
|
+
return self._ContentSource
|
|
7012
|
+
|
|
7013
|
+
@ContentSource.setter
|
|
7014
|
+
def ContentSource(self, ContentSource):
|
|
7015
|
+
self._ContentSource = ContentSource
|
|
7016
|
+
|
|
7017
|
+
@property
|
|
7018
|
+
def SSAIInfo(self):
|
|
7019
|
+
"""Ad insertion configuration information
|
|
7020
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.SSAIConf`
|
|
7021
|
+
"""
|
|
7022
|
+
return self._SSAIInfo
|
|
7023
|
+
|
|
7024
|
+
@SSAIInfo.setter
|
|
7025
|
+
def SSAIInfo(self, SSAIInfo):
|
|
7026
|
+
self._SSAIInfo = SSAIInfo
|
|
7027
|
+
|
|
7028
|
+
@property
|
|
7029
|
+
def ID(self):
|
|
7030
|
+
"""Ad insertion configuration ID
|
|
7031
|
+
:rtype: str
|
|
7032
|
+
"""
|
|
7033
|
+
return self._ID
|
|
7034
|
+
|
|
7035
|
+
@ID.setter
|
|
7036
|
+
def ID(self, ID):
|
|
7037
|
+
self._ID = ID
|
|
7038
|
+
|
|
7039
|
+
|
|
7040
|
+
def _deserialize(self, params):
|
|
7041
|
+
self._Name = params.get("Name")
|
|
7042
|
+
self._ContentSource = params.get("ContentSource")
|
|
7043
|
+
if params.get("SSAIInfo") is not None:
|
|
7044
|
+
self._SSAIInfo = SSAIConf()
|
|
7045
|
+
self._SSAIInfo._deserialize(params.get("SSAIInfo"))
|
|
7046
|
+
self._ID = params.get("ID")
|
|
7047
|
+
memeber_set = set(params.keys())
|
|
7048
|
+
for name, value in vars(self).items():
|
|
7049
|
+
property_name = name[1:]
|
|
7050
|
+
if property_name in memeber_set:
|
|
7051
|
+
memeber_set.remove(property_name)
|
|
7052
|
+
if len(memeber_set) > 0:
|
|
7053
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7054
|
+
|
|
7055
|
+
|
|
7056
|
+
|
|
7057
|
+
class ModifyStreamPackageSSAIChannelResponse(AbstractModel):
|
|
7058
|
+
"""ModifyStreamPackageSSAIChannel response structure.
|
|
7059
|
+
|
|
7060
|
+
"""
|
|
7061
|
+
|
|
7062
|
+
def __init__(self):
|
|
7063
|
+
r"""
|
|
7064
|
+
: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.
|
|
7065
|
+
:type RequestId: str
|
|
7066
|
+
"""
|
|
7067
|
+
self._RequestId = None
|
|
7068
|
+
|
|
7069
|
+
@property
|
|
7070
|
+
def RequestId(self):
|
|
7071
|
+
"""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.
|
|
7072
|
+
:rtype: str
|
|
7073
|
+
"""
|
|
7074
|
+
return self._RequestId
|
|
7075
|
+
|
|
7076
|
+
@RequestId.setter
|
|
7077
|
+
def RequestId(self, RequestId):
|
|
7078
|
+
self._RequestId = RequestId
|
|
7079
|
+
|
|
7080
|
+
|
|
7081
|
+
def _deserialize(self, params):
|
|
7082
|
+
self._RequestId = params.get("RequestId")
|
|
7083
|
+
|
|
7084
|
+
|
|
6572
7085
|
class ModifyStreamPackageSourceLocationRequest(AbstractModel):
|
|
6573
7086
|
"""ModifyStreamPackageSourceLocation request structure.
|
|
6574
7087
|
|
|
@@ -7763,6 +8276,119 @@ class ProgramScheduleInfo(AbstractModel):
|
|
|
7763
8276
|
|
|
7764
8277
|
|
|
7765
8278
|
|
|
8279
|
+
class SSAIChannelInfo(AbstractModel):
|
|
8280
|
+
"""
|
|
8281
|
+
|
|
8282
|
+
"""
|
|
8283
|
+
|
|
8284
|
+
def __init__(self):
|
|
8285
|
+
r"""
|
|
8286
|
+
:param _ID: SSAI configuration ID, globally unique identifier
|
|
8287
|
+
:type ID: str
|
|
8288
|
+
:param _Name: Configuration name
|
|
8289
|
+
:type Name: str
|
|
8290
|
+
:param _ContentSource: Content source stream prefix
|
|
8291
|
+
:type ContentSource: str
|
|
8292
|
+
:param _PlaybackPrefix: Generated playback address prefix
|
|
8293
|
+
:type PlaybackPrefix: str
|
|
8294
|
+
:param _SSAIInfo: SSAI configuration info
|
|
8295
|
+
:type SSAIInfo: :class:`tencentcloud.mdp.v20200527.models.SSAIConf`
|
|
8296
|
+
:param _Region: Region info
|
|
8297
|
+
:type Region: str
|
|
8298
|
+
"""
|
|
8299
|
+
self._ID = None
|
|
8300
|
+
self._Name = None
|
|
8301
|
+
self._ContentSource = None
|
|
8302
|
+
self._PlaybackPrefix = None
|
|
8303
|
+
self._SSAIInfo = None
|
|
8304
|
+
self._Region = None
|
|
8305
|
+
|
|
8306
|
+
@property
|
|
8307
|
+
def ID(self):
|
|
8308
|
+
"""SSAI configuration ID, globally unique identifier
|
|
8309
|
+
:rtype: str
|
|
8310
|
+
"""
|
|
8311
|
+
return self._ID
|
|
8312
|
+
|
|
8313
|
+
@ID.setter
|
|
8314
|
+
def ID(self, ID):
|
|
8315
|
+
self._ID = ID
|
|
8316
|
+
|
|
8317
|
+
@property
|
|
8318
|
+
def Name(self):
|
|
8319
|
+
"""Configuration name
|
|
8320
|
+
:rtype: str
|
|
8321
|
+
"""
|
|
8322
|
+
return self._Name
|
|
8323
|
+
|
|
8324
|
+
@Name.setter
|
|
8325
|
+
def Name(self, Name):
|
|
8326
|
+
self._Name = Name
|
|
8327
|
+
|
|
8328
|
+
@property
|
|
8329
|
+
def ContentSource(self):
|
|
8330
|
+
"""Content source stream prefix
|
|
8331
|
+
:rtype: str
|
|
8332
|
+
"""
|
|
8333
|
+
return self._ContentSource
|
|
8334
|
+
|
|
8335
|
+
@ContentSource.setter
|
|
8336
|
+
def ContentSource(self, ContentSource):
|
|
8337
|
+
self._ContentSource = ContentSource
|
|
8338
|
+
|
|
8339
|
+
@property
|
|
8340
|
+
def PlaybackPrefix(self):
|
|
8341
|
+
"""Generated playback address prefix
|
|
8342
|
+
:rtype: str
|
|
8343
|
+
"""
|
|
8344
|
+
return self._PlaybackPrefix
|
|
8345
|
+
|
|
8346
|
+
@PlaybackPrefix.setter
|
|
8347
|
+
def PlaybackPrefix(self, PlaybackPrefix):
|
|
8348
|
+
self._PlaybackPrefix = PlaybackPrefix
|
|
8349
|
+
|
|
8350
|
+
@property
|
|
8351
|
+
def SSAIInfo(self):
|
|
8352
|
+
"""SSAI configuration info
|
|
8353
|
+
:rtype: :class:`tencentcloud.mdp.v20200527.models.SSAIConf`
|
|
8354
|
+
"""
|
|
8355
|
+
return self._SSAIInfo
|
|
8356
|
+
|
|
8357
|
+
@SSAIInfo.setter
|
|
8358
|
+
def SSAIInfo(self, SSAIInfo):
|
|
8359
|
+
self._SSAIInfo = SSAIInfo
|
|
8360
|
+
|
|
8361
|
+
@property
|
|
8362
|
+
def Region(self):
|
|
8363
|
+
"""Region info
|
|
8364
|
+
:rtype: str
|
|
8365
|
+
"""
|
|
8366
|
+
return self._Region
|
|
8367
|
+
|
|
8368
|
+
@Region.setter
|
|
8369
|
+
def Region(self, Region):
|
|
8370
|
+
self._Region = Region
|
|
8371
|
+
|
|
8372
|
+
|
|
8373
|
+
def _deserialize(self, params):
|
|
8374
|
+
self._ID = params.get("ID")
|
|
8375
|
+
self._Name = params.get("Name")
|
|
8376
|
+
self._ContentSource = params.get("ContentSource")
|
|
8377
|
+
self._PlaybackPrefix = params.get("PlaybackPrefix")
|
|
8378
|
+
if params.get("SSAIInfo") is not None:
|
|
8379
|
+
self._SSAIInfo = SSAIConf()
|
|
8380
|
+
self._SSAIInfo._deserialize(params.get("SSAIInfo"))
|
|
8381
|
+
self._Region = params.get("Region")
|
|
8382
|
+
memeber_set = set(params.keys())
|
|
8383
|
+
for name, value in vars(self).items():
|
|
8384
|
+
property_name = name[1:]
|
|
8385
|
+
if property_name in memeber_set:
|
|
8386
|
+
memeber_set.remove(property_name)
|
|
8387
|
+
if len(memeber_set) > 0:
|
|
8388
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8389
|
+
|
|
8390
|
+
|
|
8391
|
+
|
|
7766
8392
|
class SSAIConf(AbstractModel):
|
|
7767
8393
|
"""SSAI ad insertion configuration.
|
|
7768
8394
|
|
|
@@ -7774,18 +8400,18 @@ class SSAIConf(AbstractModel):
|
|
|
7774
8400
|
:type AdsUrl: str
|
|
7775
8401
|
:param _ConfigAliases: Parameter configuration.
|
|
7776
8402
|
:type ConfigAliases: list of ConfigAliasesInfo
|
|
7777
|
-
:param _SlateAd: Default advertising url.
|
|
7778
|
-
:type SlateAd: str
|
|
7779
|
-
:param _Threshold: Maximum unfilled duration, unit: seconds.
|
|
7780
|
-
:type Threshold: int
|
|
7781
|
-
:param _DashMPDLocation: Whether to enable mpd location, true corresponds to enable, false corresponds to disable.
|
|
7782
|
-
:type DashMPDLocation: bool
|
|
7783
8403
|
:param _AdMarkerPassthrough: Whether to enable transparent transmission of advertising tags.
|
|
7784
8404
|
:type AdMarkerPassthrough: bool
|
|
7785
8405
|
:param _SCTE35AdType: How to process tags in advertisements, optional values: [1,2]
|
|
7786
8406
|
1: Process all SCTE-35 type tags - all (default)
|
|
7787
8407
|
2: SCTE-35enhanced, parse some types.
|
|
7788
8408
|
:type SCTE35AdType: int
|
|
8409
|
+
:param _SlateAd: Default advertising url.
|
|
8410
|
+
:type SlateAd: str
|
|
8411
|
+
:param _Threshold: Maximum unfilled duration, unit: seconds.
|
|
8412
|
+
:type Threshold: int
|
|
8413
|
+
:param _DashMPDLocation: Whether to enable mpd location, true corresponds to enable, false corresponds to disable.
|
|
8414
|
+
:type DashMPDLocation: bool
|
|
7789
8415
|
:param _AdTriggers: The type of tag that is regarded as an advertisement, optional values: [1,8]
|
|
7790
8416
|
1. Splice insert
|
|
7791
8417
|
2. Provider advertisement
|
|
@@ -7802,16 +8428,22 @@ class SSAIConf(AbstractModel):
|
|
|
7802
8428
|
3:Unrestricted
|
|
7803
8429
|
4.Both.
|
|
7804
8430
|
:type DeliveryRestrictions: int
|
|
8431
|
+
:param _SourceCDNPrefix: Source CDN prefix, needs to start with http:// or https://
|
|
8432
|
+
:type SourceCDNPrefix: str
|
|
8433
|
+
:param _AdCDNPrefix: Advertising CDN prefix needs to start with http:// or https://
|
|
8434
|
+
:type AdCDNPrefix: str
|
|
7805
8435
|
"""
|
|
7806
8436
|
self._AdsUrl = None
|
|
7807
8437
|
self._ConfigAliases = None
|
|
8438
|
+
self._AdMarkerPassthrough = None
|
|
8439
|
+
self._SCTE35AdType = None
|
|
7808
8440
|
self._SlateAd = None
|
|
7809
8441
|
self._Threshold = None
|
|
7810
8442
|
self._DashMPDLocation = None
|
|
7811
|
-
self._AdMarkerPassthrough = None
|
|
7812
|
-
self._SCTE35AdType = None
|
|
7813
8443
|
self._AdTriggers = None
|
|
7814
8444
|
self._DeliveryRestrictions = None
|
|
8445
|
+
self._SourceCDNPrefix = None
|
|
8446
|
+
self._AdCDNPrefix = None
|
|
7815
8447
|
|
|
7816
8448
|
@property
|
|
7817
8449
|
def AdsUrl(self):
|
|
@@ -7835,6 +8467,30 @@ class SSAIConf(AbstractModel):
|
|
|
7835
8467
|
def ConfigAliases(self, ConfigAliases):
|
|
7836
8468
|
self._ConfigAliases = ConfigAliases
|
|
7837
8469
|
|
|
8470
|
+
@property
|
|
8471
|
+
def AdMarkerPassthrough(self):
|
|
8472
|
+
"""Whether to enable transparent transmission of advertising tags.
|
|
8473
|
+
:rtype: bool
|
|
8474
|
+
"""
|
|
8475
|
+
return self._AdMarkerPassthrough
|
|
8476
|
+
|
|
8477
|
+
@AdMarkerPassthrough.setter
|
|
8478
|
+
def AdMarkerPassthrough(self, AdMarkerPassthrough):
|
|
8479
|
+
self._AdMarkerPassthrough = AdMarkerPassthrough
|
|
8480
|
+
|
|
8481
|
+
@property
|
|
8482
|
+
def SCTE35AdType(self):
|
|
8483
|
+
"""How to process tags in advertisements, optional values: [1,2]
|
|
8484
|
+
1: Process all SCTE-35 type tags - all (default)
|
|
8485
|
+
2: SCTE-35enhanced, parse some types.
|
|
8486
|
+
:rtype: int
|
|
8487
|
+
"""
|
|
8488
|
+
return self._SCTE35AdType
|
|
8489
|
+
|
|
8490
|
+
@SCTE35AdType.setter
|
|
8491
|
+
def SCTE35AdType(self, SCTE35AdType):
|
|
8492
|
+
self._SCTE35AdType = SCTE35AdType
|
|
8493
|
+
|
|
7838
8494
|
@property
|
|
7839
8495
|
def SlateAd(self):
|
|
7840
8496
|
"""Default advertising url.
|
|
@@ -7868,30 +8524,6 @@ class SSAIConf(AbstractModel):
|
|
|
7868
8524
|
def DashMPDLocation(self, DashMPDLocation):
|
|
7869
8525
|
self._DashMPDLocation = DashMPDLocation
|
|
7870
8526
|
|
|
7871
|
-
@property
|
|
7872
|
-
def AdMarkerPassthrough(self):
|
|
7873
|
-
"""Whether to enable transparent transmission of advertising tags.
|
|
7874
|
-
:rtype: bool
|
|
7875
|
-
"""
|
|
7876
|
-
return self._AdMarkerPassthrough
|
|
7877
|
-
|
|
7878
|
-
@AdMarkerPassthrough.setter
|
|
7879
|
-
def AdMarkerPassthrough(self, AdMarkerPassthrough):
|
|
7880
|
-
self._AdMarkerPassthrough = AdMarkerPassthrough
|
|
7881
|
-
|
|
7882
|
-
@property
|
|
7883
|
-
def SCTE35AdType(self):
|
|
7884
|
-
"""How to process tags in advertisements, optional values: [1,2]
|
|
7885
|
-
1: Process all SCTE-35 type tags - all (default)
|
|
7886
|
-
2: SCTE-35enhanced, parse some types.
|
|
7887
|
-
:rtype: int
|
|
7888
|
-
"""
|
|
7889
|
-
return self._SCTE35AdType
|
|
7890
|
-
|
|
7891
|
-
@SCTE35AdType.setter
|
|
7892
|
-
def SCTE35AdType(self, SCTE35AdType):
|
|
7893
|
-
self._SCTE35AdType = SCTE35AdType
|
|
7894
|
-
|
|
7895
8527
|
@property
|
|
7896
8528
|
def AdTriggers(self):
|
|
7897
8529
|
"""The type of tag that is regarded as an advertisement, optional values: [1,8]
|
|
@@ -7926,6 +8558,28 @@ class SSAIConf(AbstractModel):
|
|
|
7926
8558
|
def DeliveryRestrictions(self, DeliveryRestrictions):
|
|
7927
8559
|
self._DeliveryRestrictions = DeliveryRestrictions
|
|
7928
8560
|
|
|
8561
|
+
@property
|
|
8562
|
+
def SourceCDNPrefix(self):
|
|
8563
|
+
"""Source CDN prefix, needs to start with http:// or https://
|
|
8564
|
+
:rtype: str
|
|
8565
|
+
"""
|
|
8566
|
+
return self._SourceCDNPrefix
|
|
8567
|
+
|
|
8568
|
+
@SourceCDNPrefix.setter
|
|
8569
|
+
def SourceCDNPrefix(self, SourceCDNPrefix):
|
|
8570
|
+
self._SourceCDNPrefix = SourceCDNPrefix
|
|
8571
|
+
|
|
8572
|
+
@property
|
|
8573
|
+
def AdCDNPrefix(self):
|
|
8574
|
+
"""Advertising CDN prefix needs to start with http:// or https://
|
|
8575
|
+
:rtype: str
|
|
8576
|
+
"""
|
|
8577
|
+
return self._AdCDNPrefix
|
|
8578
|
+
|
|
8579
|
+
@AdCDNPrefix.setter
|
|
8580
|
+
def AdCDNPrefix(self, AdCDNPrefix):
|
|
8581
|
+
self._AdCDNPrefix = AdCDNPrefix
|
|
8582
|
+
|
|
7929
8583
|
|
|
7930
8584
|
def _deserialize(self, params):
|
|
7931
8585
|
self._AdsUrl = params.get("AdsUrl")
|
|
@@ -7935,13 +8589,15 @@ class SSAIConf(AbstractModel):
|
|
|
7935
8589
|
obj = ConfigAliasesInfo()
|
|
7936
8590
|
obj._deserialize(item)
|
|
7937
8591
|
self._ConfigAliases.append(obj)
|
|
8592
|
+
self._AdMarkerPassthrough = params.get("AdMarkerPassthrough")
|
|
8593
|
+
self._SCTE35AdType = params.get("SCTE35AdType")
|
|
7938
8594
|
self._SlateAd = params.get("SlateAd")
|
|
7939
8595
|
self._Threshold = params.get("Threshold")
|
|
7940
8596
|
self._DashMPDLocation = params.get("DashMPDLocation")
|
|
7941
|
-
self._AdMarkerPassthrough = params.get("AdMarkerPassthrough")
|
|
7942
|
-
self._SCTE35AdType = params.get("SCTE35AdType")
|
|
7943
8597
|
self._AdTriggers = params.get("AdTriggers")
|
|
7944
8598
|
self._DeliveryRestrictions = params.get("DeliveryRestrictions")
|
|
8599
|
+
self._SourceCDNPrefix = params.get("SourceCDNPrefix")
|
|
8600
|
+
self._AdCDNPrefix = params.get("AdCDNPrefix")
|
|
7945
8601
|
memeber_set = set(params.keys())
|
|
7946
8602
|
for name, value in vars(self).items():
|
|
7947
8603
|
property_name = name[1:]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=4jWBdOBwsp4D7gEhz6RnyJCtE1X8fzE578OE5DMJKPY,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
|
|
@@ -323,8 +323,8 @@ tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WD
|
|
|
323
323
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
324
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
325
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=G9y1MiiDR13Gzkshs3rEi8CZiUueBH2TnjjxCgBGJr8,6967
|
|
326
|
-
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=
|
|
327
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
326
|
+
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=eJpf_rep4yl9Fl7yvUhbavRfSXSev9OTsEWNKGlyaVg,35838
|
|
327
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=TbgPnlQR46UlOMbnl1NQC2F3E9UWcncHpNKcV5bxKTg,219644
|
|
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
|
|
@@ -372,9 +372,9 @@ tencentcloud/mdl/v20200326/mdl_client.py,sha256=3hHmKmAZAWVEgjl5lwG__gMfzUa_ySv8
|
|
|
372
372
|
tencentcloud/mdl/v20200326/models.py,sha256=DEvLIC6MDrgWGXYDzl9S_pxbTObpc5s0Jj2jQm0uXxc,419877
|
|
373
373
|
tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
374
374
|
tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
|
-
tencentcloud/mdp/v20200527/errorcodes.py,sha256=
|
|
376
|
-
tencentcloud/mdp/v20200527/mdp_client.py,sha256=
|
|
377
|
-
tencentcloud/mdp/v20200527/models.py,sha256=
|
|
375
|
+
tencentcloud/mdp/v20200527/errorcodes.py,sha256=O-b8jxiEAa2BWaMCv-Wl1gWTikqX5kIAFUq7bGaswpE,2124
|
|
376
|
+
tencentcloud/mdp/v20200527/mdp_client.py,sha256=dd1qaTgGw5lvTwMHPEWO-rZ7RFJhEH7OgzE7YhsJ6Ew,50123
|
|
377
|
+
tencentcloud/mdp/v20200527/models.py,sha256=Hll_PZLs-cGNgIg9zavP0EAJAAapYtBltoRtK6WTQDc,292212
|
|
378
378
|
tencentcloud/mongodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
379
379
|
tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
380
380
|
tencentcloud/mongodb/v20190725/errorcodes.py,sha256=LvtN-o92px054vlJUUqSpJXIH7f9LEsQoOl8N9lcEC4,7128
|
|
@@ -619,7 +619,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
619
619
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
620
620
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
621
621
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
622
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
623
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
624
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
625
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
622
|
+
tencentcloud_sdk_python_intl_en-3.0.1134.dist-info/METADATA,sha256=V-XScItRYfJ-Dg2g32--0bIH6mYpz-mK0sc3Bso15MQ,1628
|
|
623
|
+
tencentcloud_sdk_python_intl_en-3.0.1134.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
624
|
+
tencentcloud_sdk_python_intl_en-3.0.1134.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
625
|
+
tencentcloud_sdk_python_intl_en-3.0.1134.dist-info/RECORD,,
|
|
File without changes
|