tencentcloud-sdk-python-intl-en 3.0.1243__py2.py3-none-any.whl → 3.0.1245__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +0 -2
- tencentcloud/autoscaling/v20180419/models.py +12 -16
- tencentcloud/billing/v20180709/billing_client.py +23 -0
- tencentcloud/billing/v20180709/errorcodes.py +27 -0
- tencentcloud/billing/v20180709/models.py +184 -0
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/errorcodes.py +12 -0
- tencentcloud/cynosdb/v20190107/models.py +186 -0
- tencentcloud/faceid/v20180301/models.py +35 -36
- tencentcloud/ims/v20201229/ims_client.py +1 -1
- tencentcloud/ims/v20201229/models.py +15 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +4 -2
- tencentcloud/mps/v20190612/models.py +9 -5
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/tms/v20201229/models.py +15 -0
- tencentcloud/tms/v20201229/tms_client.py +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1243.dist-info → tencentcloud_sdk_python_intl_en-3.0.1245.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1243.dist-info → tencentcloud_sdk_python_intl_en-3.0.1245.dist-info}/RECORD +21 -21
- {tencentcloud_sdk_python_intl_en-3.0.1243.dist-info → tencentcloud_sdk_python_intl_en-3.0.1245.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1243.dist-info → tencentcloud_sdk_python_intl_en-3.0.1245.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -177,8 +177,6 @@ class AutoscalingClient(AbstractClient):
|
|
177
177
|
def CreateAutoScalingGroupFromInstance(self, request):
|
178
178
|
"""This API is used to create launch configurations and scaling groups based on an instance.
|
179
179
|
|
180
|
-
Note: for a scaling group that is created based on a monthly-subscribed instance, the instances added for scale-out are pay-as-you-go instance.
|
181
|
-
|
182
180
|
:param request: Request instance for CreateAutoScalingGroupFromInstance.
|
183
181
|
:type request: :class:`tencentcloud.autoscaling.v20180419.models.CreateAutoScalingGroupFromInstanceRequest`
|
184
182
|
:rtype: :class:`tencentcloud.autoscaling.v20180419.models.CreateAutoScalingGroupFromInstanceResponse`
|
@@ -1908,7 +1908,7 @@ class CreateAutoScalingGroupFromInstanceRequest(AbstractModel):
|
|
1908
1908
|
|
1909
1909
|
def __init__(self):
|
1910
1910
|
r"""
|
1911
|
-
:param _AutoScalingGroupName: The scaling group name. It must be unique under your account. The name can only contain letters, numbers, underscore, hyphen
|
1911
|
+
:param _AutoScalingGroupName: The scaling group name. It must be unique under your account. The name can only contain letters, numbers, underscore, hyphen "-" and periods. It cannot exceed 55 bytes.
|
1912
1912
|
:type AutoScalingGroupName: str
|
1913
1913
|
:param _InstanceId: Instance ID. you can get the instance ID by logging in to the [console](https://console.cloud.tencent.com/cvm/index) or making an api call to [DescribeInstances](https://intl.cloud.tencent.com/document/api/213/15728?from_cn_redirect=1) and retrieving the `InstanceId` from the returned information.
|
1914
1914
|
:type InstanceId: str
|
@@ -1930,7 +1930,7 @@ class CreateAutoScalingGroupFromInstanceRequest(AbstractModel):
|
|
1930
1930
|
|
1931
1931
|
@property
|
1932
1932
|
def AutoScalingGroupName(self):
|
1933
|
-
"""The scaling group name. It must be unique under your account. The name can only contain letters, numbers, underscore, hyphen
|
1933
|
+
"""The scaling group name. It must be unique under your account. The name can only contain letters, numbers, underscore, hyphen "-" and periods. It cannot exceed 55 bytes.
|
1934
1934
|
:rtype: str
|
1935
1935
|
"""
|
1936
1936
|
return self._AutoScalingGroupName
|
@@ -8158,28 +8158,26 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
8158
8158
|
:param _BandwidthPackageId: Bandwidth package ID. You can obtain the ID from the `BandwidthPackageId` field in the response of the [DescribeBandwidthPackages](https://intl.cloud.tencent.com/document/api/215/19209?from_cn_redirect=1) API.
|
8159
8159
|
Note: this field may return null, indicating that no valid value was found.
|
8160
8160
|
:type BandwidthPackageId: str
|
8161
|
-
:param _InternetServiceProvider: Describes the line type. For details, refer to [EIP Product Overview](https://
|
8161
|
+
:param _InternetServiceProvider: Describes the line type. For details, refer to [EIP Product Overview](https://www.tencentcloud.com/document/product/213/5733). default value: `BGP`.
|
8162
8162
|
|
8163
8163
|
<Li>BGP: general bgp line.</li>
|
8164
8164
|
For a user who has enabled the static single-line IP allowlist, valid values include:
|
8165
8165
|
<li>CMCC: China Mobile</li> <li>CTCC: China Telecom</li> <li>CUCC: China Unicom</li>
|
8166
8166
|
Note: Only certain regions support static single-line IP addresses.
|
8167
8167
|
|
8168
|
-
|
8169
8168
|
:type InternetServiceProvider: str
|
8170
8169
|
:param _IPv4AddressType: Type of public IP address.
|
8171
8170
|
|
8172
|
-
<li> WanIP: Ordinary public IP address. </li> <li> HighQualityEIP: High Quality EIP is supported only in Singapore and Hong Kong. </li> <li> AntiDDoSEIP: Anti-DDoS IP is supported only in specific regions. For details, see [EIP Product Overview](https://
|
8171
|
+
<li> WanIP: Ordinary public IP address. </li> <li> HighQualityEIP: High Quality EIP is supported only in Singapore and Hong Kong. </li> <li> AntiDDoSEIP: Anti-DDoS IP is supported only in specific regions. For details, see [EIP Product Overview](https://www.tencentcloud.com/document/product/213/5733). </li>
|
8172
|
+
Specify the type of public IPv4 address to assign a public IPv4 address to the resource. HighQualityEIP and AntiDDoSEIP features are gradually released in select regions. For usage, [submit a ticket for consultation](https://console.tencentcloud.com/workorder).
|
8173
8173
|
:type IPv4AddressType: str
|
8174
8174
|
:param _AntiDDoSPackageId: Anti-DDoS service package ID. This is required when you want to request an Anti-DDoS IP.
|
8175
8175
|
:type AntiDDoSPackageId: str
|
8176
|
-
:param _IsKeepEIP: Whether to delete the bound EIP when the instance is destroyed.
|
8176
|
+
:param _IsKeepEIP: Whether to delete the bound EIP(HighQualityEIP and AntiDDoSEIP) when the instance is destroyed.
|
8177
8177
|
|
8178
8178
|
Range of values:
|
8179
8179
|
|
8180
|
-
<li>TRUE: retain the EIP</li> <li>FALSE: not retain the EIP</li>
|
8181
|
-
|
8182
|
-
Note that when the IPv4AddressType field specifies the EIP type, the default behavior is not to retain the EIP.
|
8180
|
+
<li>TRUE: retain the EIP</li> <li>FALSE: not retain the EIP</li>Note that when the IPv4AddressType field specifies the EIP type, the default behavior is not to retain the EIP.
|
8183
8181
|
WanIP is unaffected by this field and will always be deleted with the instance.
|
8184
8182
|
Changing this field configuration will take effect immediately for resources already bound to a scaling group.
|
8185
8183
|
:type IsKeepEIP: bool
|
@@ -8243,14 +8241,13 @@ Note: this field may return null, indicating that no valid value was found.
|
|
8243
8241
|
|
8244
8242
|
@property
|
8245
8243
|
def InternetServiceProvider(self):
|
8246
|
-
"""Describes the line type. For details, refer to [EIP Product Overview](https://
|
8244
|
+
"""Describes the line type. For details, refer to [EIP Product Overview](https://www.tencentcloud.com/document/product/213/5733). default value: `BGP`.
|
8247
8245
|
|
8248
8246
|
<Li>BGP: general bgp line.</li>
|
8249
8247
|
For a user who has enabled the static single-line IP allowlist, valid values include:
|
8250
8248
|
<li>CMCC: China Mobile</li> <li>CTCC: China Telecom</li> <li>CUCC: China Unicom</li>
|
8251
8249
|
Note: Only certain regions support static single-line IP addresses.
|
8252
8250
|
|
8253
|
-
|
8254
8251
|
:rtype: str
|
8255
8252
|
"""
|
8256
8253
|
return self._InternetServiceProvider
|
@@ -8263,7 +8260,8 @@ Note: Only certain regions support static single-line IP addresses.
|
|
8263
8260
|
def IPv4AddressType(self):
|
8264
8261
|
"""Type of public IP address.
|
8265
8262
|
|
8266
|
-
<li> WanIP: Ordinary public IP address. </li> <li> HighQualityEIP: High Quality EIP is supported only in Singapore and Hong Kong. </li> <li> AntiDDoSEIP: Anti-DDoS IP is supported only in specific regions. For details, see [EIP Product Overview](https://
|
8263
|
+
<li> WanIP: Ordinary public IP address. </li> <li> HighQualityEIP: High Quality EIP is supported only in Singapore and Hong Kong. </li> <li> AntiDDoSEIP: Anti-DDoS IP is supported only in specific regions. For details, see [EIP Product Overview](https://www.tencentcloud.com/document/product/213/5733). </li>
|
8264
|
+
Specify the type of public IPv4 address to assign a public IPv4 address to the resource. HighQualityEIP and AntiDDoSEIP features are gradually released in select regions. For usage, [submit a ticket for consultation](https://console.tencentcloud.com/workorder).
|
8267
8265
|
:rtype: str
|
8268
8266
|
"""
|
8269
8267
|
return self._IPv4AddressType
|
@@ -8285,13 +8283,11 @@ Note: Only certain regions support static single-line IP addresses.
|
|
8285
8283
|
|
8286
8284
|
@property
|
8287
8285
|
def IsKeepEIP(self):
|
8288
|
-
"""Whether to delete the bound EIP when the instance is destroyed.
|
8286
|
+
"""Whether to delete the bound EIP(HighQualityEIP and AntiDDoSEIP) when the instance is destroyed.
|
8289
8287
|
|
8290
8288
|
Range of values:
|
8291
8289
|
|
8292
|
-
<li>TRUE: retain the EIP</li> <li>FALSE: not retain the EIP</li>
|
8293
|
-
|
8294
|
-
Note that when the IPv4AddressType field specifies the EIP type, the default behavior is not to retain the EIP.
|
8290
|
+
<li>TRUE: retain the EIP</li> <li>FALSE: not retain the EIP</li>Note that when the IPv4AddressType field specifies the EIP type, the default behavior is not to retain the EIP.
|
8295
8291
|
WanIP is unaffected by this field and will always be deleted with the instance.
|
8296
8292
|
Changing this field configuration will take effect immediately for resources already bound to a scaling group.
|
8297
8293
|
:rtype: bool
|
@@ -966,6 +966,29 @@ class BillingClient(AbstractClient):
|
|
966
966
|
model = models.ModifyGatherRuleResponse()
|
967
967
|
model._deserialize(response["Response"])
|
968
968
|
return model
|
969
|
+
except Exception as e:
|
970
|
+
if isinstance(e, TencentCloudSDKException):
|
971
|
+
raise
|
972
|
+
else:
|
973
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
974
|
+
|
975
|
+
|
976
|
+
def PayDeals(self, request):
|
977
|
+
"""This API is used to pay for an order.
|
978
|
+
|
979
|
+
:param request: Request instance for PayDeals.
|
980
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.PayDealsRequest`
|
981
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.PayDealsResponse`
|
982
|
+
|
983
|
+
"""
|
984
|
+
try:
|
985
|
+
params = request._serialize()
|
986
|
+
headers = request.headers
|
987
|
+
body = self.call("PayDeals", params, headers=headers)
|
988
|
+
response = json.loads(body)
|
989
|
+
model = models.PayDealsResponse()
|
990
|
+
model._deserialize(response["Response"])
|
991
|
+
return model
|
969
992
|
except Exception as e:
|
970
993
|
if isinstance(e, TencentCloudSDKException):
|
971
994
|
raise
|
@@ -20,15 +20,36 @@ AUTHFAILURE_UNAUTHORIZEDOPERATION = 'AuthFailure.UnauthorizedOperation'
|
|
20
20
|
# Operation failed.
|
21
21
|
FAILEDOPERATION = 'FailedOperation'
|
22
22
|
|
23
|
+
# The proxy payment device cannot be downgraded.
|
24
|
+
FAILEDOPERATION_AGENTPAYDEALCANNOTDOWN = 'FailedOperation.AgentPayDealCannotDown'
|
25
|
+
|
26
|
+
# The account balance is insufficient.
|
27
|
+
FAILEDOPERATION_BALANCEINSUFFICIENT = 'FailedOperation.BalanceInsufficient'
|
28
|
+
|
23
29
|
# Invalid App ID.
|
24
30
|
FAILEDOPERATION_INVALIDAPPID = 'FailedOperation.InvalidAppId'
|
25
31
|
|
32
|
+
# Order status error. Only unpaid orders support payment.
|
33
|
+
FAILEDOPERATION_INVALIDDEAL = 'FailedOperation.InvalidDeal'
|
34
|
+
|
35
|
+
# Vouchers are not available.
|
36
|
+
FAILEDOPERATION_INVALIDVOUCHER = 'FailedOperation.InvalidVoucher'
|
37
|
+
|
38
|
+
# Orders purchased together must be paid simultaneously.
|
39
|
+
FAILEDOPERATION_NEEDPAYTOGETER = 'FailedOperation.NeedPayTogeter'
|
40
|
+
|
41
|
+
# Package orders must be purchased together.
|
42
|
+
FAILEDOPERATION_NEEDPAYTOGETHER = 'FailedOperation.NeedPayTogether'
|
43
|
+
|
26
44
|
# The quantity exceeds the maximum limit.
|
27
45
|
FAILEDOPERATION_NUMLIMITERROR = 'FailedOperation.NumLimitError'
|
28
46
|
|
29
47
|
# Payment failed. Please contact Tencent Cloud to resolve this issue.
|
30
48
|
FAILEDOPERATION_PAYPRICEERROR = 'FailedOperation.PayPriceError'
|
31
49
|
|
50
|
+
# Payment succeeded but shipment failed. Please contact the cloud platform staff for handling.
|
51
|
+
FAILEDOPERATION_PAYSUCCDELIVERFAILED = 'FailedOperation.PaySuccDeliverFailed'
|
52
|
+
|
32
53
|
# Failed to get the number of data entries.
|
33
54
|
FAILEDOPERATION_QUERYCOUNTFAILED = 'FailedOperation.QueryCountFailed'
|
34
55
|
|
@@ -68,5 +89,11 @@ OPERATIONDENIED = 'OperationDenied'
|
|
68
89
|
# The account does not have CAM permission.
|
69
90
|
UNAUTHORIZEDOPERATION_CAMNOAUTH = 'UnauthorizedOperation.CamNoAuth'
|
70
91
|
|
92
|
+
# Due to account security upgrade, purchase cloud resources requires complete real-name information.
|
93
|
+
UNAUTHORIZEDOPERATION_CERTIFICATIONNEEDUPGRADE = 'UnauthorizedOperation.CertificationNeedUpgrade'
|
94
|
+
|
95
|
+
# The account has not been real-name authenticated, and payment failed.
|
96
|
+
UNAUTHORIZEDOPERATION_NOTCERTIFICATION = 'UnauthorizedOperation.NotCertification'
|
97
|
+
|
71
98
|
# Operation unsupported.
|
72
99
|
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
@@ -15612,6 +15612,190 @@ class ModifyGatherRuleResponse(AbstractModel):
|
|
15612
15612
|
self._RequestId = params.get("RequestId")
|
15613
15613
|
|
15614
15614
|
|
15615
|
+
class PayDealsRequest(AbstractModel):
|
15616
|
+
"""PayDeals request structure.
|
15617
|
+
|
15618
|
+
"""
|
15619
|
+
|
15620
|
+
def __init__(self):
|
15621
|
+
r"""
|
15622
|
+
:param _OrderIds: Specifies one or more Sub-order No. that need to pay. must pass either this parameter or the BigDealIds field, but not both.
|
15623
|
+
:type OrderIds: list of str
|
15624
|
+
:param _AutoVoucher: Whether to automatically use a voucher. valid values: 1 (yes), 0 (no). default: 0.
|
15625
|
+
:type AutoVoucher: int
|
15626
|
+
:param _VoucherIds: Voucher ID list. currently only supports specifying one voucher.
|
15627
|
+
:type VoucherIds: list of str
|
15628
|
+
:param _BigDealIds: Specifies one or more Order No. that need to pay. must pass either this parameter or the OrderIds field.
|
15629
|
+
:type BigDealIds: list of str
|
15630
|
+
:param _AgentPay: 0 self pay, 3 group agent, 4 reseller places a product-level payment order for customers. default 0.
|
15631
|
+
:type AgentPay: int
|
15632
|
+
:param _CpsUin: Disregard it.
|
15633
|
+
:type CpsUin: str
|
15634
|
+
"""
|
15635
|
+
self._OrderIds = None
|
15636
|
+
self._AutoVoucher = None
|
15637
|
+
self._VoucherIds = None
|
15638
|
+
self._BigDealIds = None
|
15639
|
+
self._AgentPay = None
|
15640
|
+
self._CpsUin = None
|
15641
|
+
|
15642
|
+
@property
|
15643
|
+
def OrderIds(self):
|
15644
|
+
"""Specifies one or more Sub-order No. that need to pay. must pass either this parameter or the BigDealIds field, but not both.
|
15645
|
+
:rtype: list of str
|
15646
|
+
"""
|
15647
|
+
return self._OrderIds
|
15648
|
+
|
15649
|
+
@OrderIds.setter
|
15650
|
+
def OrderIds(self, OrderIds):
|
15651
|
+
self._OrderIds = OrderIds
|
15652
|
+
|
15653
|
+
@property
|
15654
|
+
def AutoVoucher(self):
|
15655
|
+
"""Whether to automatically use a voucher. valid values: 1 (yes), 0 (no). default: 0.
|
15656
|
+
:rtype: int
|
15657
|
+
"""
|
15658
|
+
return self._AutoVoucher
|
15659
|
+
|
15660
|
+
@AutoVoucher.setter
|
15661
|
+
def AutoVoucher(self, AutoVoucher):
|
15662
|
+
self._AutoVoucher = AutoVoucher
|
15663
|
+
|
15664
|
+
@property
|
15665
|
+
def VoucherIds(self):
|
15666
|
+
"""Voucher ID list. currently only supports specifying one voucher.
|
15667
|
+
:rtype: list of str
|
15668
|
+
"""
|
15669
|
+
return self._VoucherIds
|
15670
|
+
|
15671
|
+
@VoucherIds.setter
|
15672
|
+
def VoucherIds(self, VoucherIds):
|
15673
|
+
self._VoucherIds = VoucherIds
|
15674
|
+
|
15675
|
+
@property
|
15676
|
+
def BigDealIds(self):
|
15677
|
+
"""Specifies one or more Order No. that need to pay. must pass either this parameter or the OrderIds field.
|
15678
|
+
:rtype: list of str
|
15679
|
+
"""
|
15680
|
+
return self._BigDealIds
|
15681
|
+
|
15682
|
+
@BigDealIds.setter
|
15683
|
+
def BigDealIds(self, BigDealIds):
|
15684
|
+
self._BigDealIds = BigDealIds
|
15685
|
+
|
15686
|
+
@property
|
15687
|
+
def AgentPay(self):
|
15688
|
+
"""0 self pay, 3 group agent, 4 reseller places a product-level payment order for customers. default 0.
|
15689
|
+
:rtype: int
|
15690
|
+
"""
|
15691
|
+
return self._AgentPay
|
15692
|
+
|
15693
|
+
@AgentPay.setter
|
15694
|
+
def AgentPay(self, AgentPay):
|
15695
|
+
self._AgentPay = AgentPay
|
15696
|
+
|
15697
|
+
@property
|
15698
|
+
def CpsUin(self):
|
15699
|
+
"""Disregard it.
|
15700
|
+
:rtype: str
|
15701
|
+
"""
|
15702
|
+
return self._CpsUin
|
15703
|
+
|
15704
|
+
@CpsUin.setter
|
15705
|
+
def CpsUin(self, CpsUin):
|
15706
|
+
self._CpsUin = CpsUin
|
15707
|
+
|
15708
|
+
|
15709
|
+
def _deserialize(self, params):
|
15710
|
+
self._OrderIds = params.get("OrderIds")
|
15711
|
+
self._AutoVoucher = params.get("AutoVoucher")
|
15712
|
+
self._VoucherIds = params.get("VoucherIds")
|
15713
|
+
self._BigDealIds = params.get("BigDealIds")
|
15714
|
+
self._AgentPay = params.get("AgentPay")
|
15715
|
+
self._CpsUin = params.get("CpsUin")
|
15716
|
+
memeber_set = set(params.keys())
|
15717
|
+
for name, value in vars(self).items():
|
15718
|
+
property_name = name[1:]
|
15719
|
+
if property_name in memeber_set:
|
15720
|
+
memeber_set.remove(property_name)
|
15721
|
+
if len(memeber_set) > 0:
|
15722
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
15723
|
+
|
15724
|
+
|
15725
|
+
|
15726
|
+
class PayDealsResponse(AbstractModel):
|
15727
|
+
"""PayDeals response structure.
|
15728
|
+
|
15729
|
+
"""
|
15730
|
+
|
15731
|
+
def __init__(self):
|
15732
|
+
r"""
|
15733
|
+
:param _OrderIds: Specifies the array of Sub-order No. with payment successful.
|
15734
|
+
:type OrderIds: list of str
|
15735
|
+
:param _ResourceIds: Specifies the Id array of resources with payment successful.
|
15736
|
+
:type ResourceIds: list of str
|
15737
|
+
:param _BigDealIds: Specifies the array of Order No. with payment successful.
|
15738
|
+
:type BigDealIds: list of str
|
15739
|
+
: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.
|
15740
|
+
:type RequestId: str
|
15741
|
+
"""
|
15742
|
+
self._OrderIds = None
|
15743
|
+
self._ResourceIds = None
|
15744
|
+
self._BigDealIds = None
|
15745
|
+
self._RequestId = None
|
15746
|
+
|
15747
|
+
@property
|
15748
|
+
def OrderIds(self):
|
15749
|
+
"""Specifies the array of Sub-order No. with payment successful.
|
15750
|
+
:rtype: list of str
|
15751
|
+
"""
|
15752
|
+
return self._OrderIds
|
15753
|
+
|
15754
|
+
@OrderIds.setter
|
15755
|
+
def OrderIds(self, OrderIds):
|
15756
|
+
self._OrderIds = OrderIds
|
15757
|
+
|
15758
|
+
@property
|
15759
|
+
def ResourceIds(self):
|
15760
|
+
"""Specifies the Id array of resources with payment successful.
|
15761
|
+
:rtype: list of str
|
15762
|
+
"""
|
15763
|
+
return self._ResourceIds
|
15764
|
+
|
15765
|
+
@ResourceIds.setter
|
15766
|
+
def ResourceIds(self, ResourceIds):
|
15767
|
+
self._ResourceIds = ResourceIds
|
15768
|
+
|
15769
|
+
@property
|
15770
|
+
def BigDealIds(self):
|
15771
|
+
"""Specifies the array of Order No. with payment successful.
|
15772
|
+
:rtype: list of str
|
15773
|
+
"""
|
15774
|
+
return self._BigDealIds
|
15775
|
+
|
15776
|
+
@BigDealIds.setter
|
15777
|
+
def BigDealIds(self, BigDealIds):
|
15778
|
+
self._BigDealIds = BigDealIds
|
15779
|
+
|
15780
|
+
@property
|
15781
|
+
def RequestId(self):
|
15782
|
+
"""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.
|
15783
|
+
:rtype: str
|
15784
|
+
"""
|
15785
|
+
return self._RequestId
|
15786
|
+
|
15787
|
+
@RequestId.setter
|
15788
|
+
def RequestId(self, RequestId):
|
15789
|
+
self._RequestId = RequestId
|
15790
|
+
|
15791
|
+
|
15792
|
+
def _deserialize(self, params):
|
15793
|
+
self._OrderIds = params.get("OrderIds")
|
15794
|
+
self._ResourceIds = params.get("ResourceIds")
|
15795
|
+
self._BigDealIds = params.get("BigDealIds")
|
15796
|
+
self._RequestId = params.get("RequestId")
|
15797
|
+
|
15798
|
+
|
15615
15799
|
class PayModeSummaryOverviewItem(AbstractModel):
|
15616
15800
|
"""Detailed summary of costs by billing mode
|
15617
15801
|
|
@@ -2855,6 +2855,29 @@ class CynosdbClient(AbstractClient):
|
|
2855
2855
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2856
2856
|
|
2857
2857
|
|
2858
|
+
def ReplayInstanceAuditLog(self, request):
|
2859
|
+
"""This API is used to replay instance audit logs.
|
2860
|
+
|
2861
|
+
:param request: Request instance for ReplayInstanceAuditLog.
|
2862
|
+
:type request: :class:`tencentcloud.cynosdb.v20190107.models.ReplayInstanceAuditLogRequest`
|
2863
|
+
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.ReplayInstanceAuditLogResponse`
|
2864
|
+
|
2865
|
+
"""
|
2866
|
+
try:
|
2867
|
+
params = request._serialize()
|
2868
|
+
headers = request.headers
|
2869
|
+
body = self.call("ReplayInstanceAuditLog", params, headers=headers)
|
2870
|
+
response = json.loads(body)
|
2871
|
+
model = models.ReplayInstanceAuditLogResponse()
|
2872
|
+
model._deserialize(response["Response"])
|
2873
|
+
return model
|
2874
|
+
except Exception as e:
|
2875
|
+
if isinstance(e, TencentCloudSDKException):
|
2876
|
+
raise
|
2877
|
+
else:
|
2878
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2879
|
+
|
2880
|
+
|
2858
2881
|
def ResetAccountPassword(self, request):
|
2859
2882
|
"""This API is used to modify the database account password.
|
2860
2883
|
|
@@ -248,6 +248,9 @@ LIMITEXCEEDED_CLUSTERINSTANCELIMIT = 'LimitExceeded.ClusterInstanceLimit'
|
|
248
248
|
# The number of instances exceeds the limit.
|
249
249
|
LIMITEXCEEDED_USERINSTANCELIMIT = 'LimitExceeded.UserInstanceLimit'
|
250
250
|
|
251
|
+
# Audit log is disabled for instance {{1}}. operations cannot be performed.
|
252
|
+
OPERATIONDENIED_AUDITLOGCLOSEDERROR = 'OperationDenied.AuditLogClosedError'
|
253
|
+
|
251
254
|
#
|
252
255
|
OPERATIONDENIED_AUDITSTATUSERROR = 'OperationDenied.AuditStatusError'
|
253
256
|
|
@@ -260,6 +263,9 @@ OPERATIONDENIED_CLUSTEROPNOTALLOWEDERROR = 'OperationDenied.ClusterOpNotAllowedE
|
|
260
263
|
# For the cluster in this status, the operation is not allowed.
|
261
264
|
OPERATIONDENIED_CLUSTERSTATUSDENIEDERROR = 'OperationDenied.ClusterStatusDeniedError'
|
262
265
|
|
266
|
+
# Feature {{1}} is not currently supported.
|
267
|
+
OPERATIONDENIED_FEATURENOTSUPPORTERROR = 'OperationDenied.FeatureNotSupportError'
|
268
|
+
|
263
269
|
# Fail to retrieve the proxy.
|
264
270
|
OPERATIONDENIED_GETPROXYGROUPFAILEDERROR = 'OperationDenied.GetProxyGroupFailedError'
|
265
271
|
|
@@ -275,9 +281,15 @@ OPERATIONDENIED_INSTANCESTATUSLIMITERROR = 'OperationDenied.InstanceStatusLimitE
|
|
275
281
|
# Insufficient account balance.
|
276
282
|
OPERATIONDENIED_INSUFFICIENTBALANCEERROR = 'OperationDenied.InsufficientBalanceError'
|
277
283
|
|
284
|
+
# Not a roll back cluster of {{1}}.
|
285
|
+
OPERATIONDENIED_ISNOTROLLBACKCLUSTERERROR = 'OperationDenied.IsNotRollbackClusterError'
|
286
|
+
|
278
287
|
# Response size exceeds the limit: {{1}}. reduce the query quantity.
|
279
288
|
OPERATIONDENIED_LENGTHOVERLIMIT = 'OperationDenied.LengthOverLimit'
|
280
289
|
|
290
|
+
# The cloned cluster is not within {{1}} days of {{2}}.
|
291
|
+
OPERATIONDENIED_LIMITDAYFORAUDITREPLAYERROR = 'OperationDenied.LimitDayForAuditReplayError'
|
292
|
+
|
281
293
|
# You do not have permission to operate the resource (carry out this operation).
|
282
294
|
OPERATIONDENIED_OPERATIONDENIEDERROR = 'OperationDenied.OperationDeniedError'
|
283
295
|
|
@@ -26956,6 +26956,192 @@ class RemoveClusterSlaveZoneResponse(AbstractModel):
|
|
26956
26956
|
self._RequestId = params.get("RequestId")
|
26957
26957
|
|
26958
26958
|
|
26959
|
+
class ReplayInstanceAuditLogRequest(AbstractModel):
|
26960
|
+
"""ReplayInstanceAuditLog request structure.
|
26961
|
+
|
26962
|
+
"""
|
26963
|
+
|
26964
|
+
def __init__(self):
|
26965
|
+
r"""
|
26966
|
+
:param _SourceClusterId: Source cluster id.
|
26967
|
+
:type SourceClusterId: str
|
26968
|
+
:param _SourceInstanceId: Source instance id.
|
26969
|
+
:type SourceInstanceId: str
|
26970
|
+
:param _TargetClusterId: Target cluster id.
|
26971
|
+
Specifies the target cluster must be a cluster cloned from the original cluster within three days.
|
26972
|
+
:type TargetClusterId: str
|
26973
|
+
:param _TargetInstanceId: Target instance id.
|
26974
|
+
:type TargetInstanceId: str
|
26975
|
+
:param _TargetUserName: Username. host must be % username.
|
26976
|
+
:type TargetUserName: str
|
26977
|
+
:param _TargetPassword: Password.
|
26978
|
+
:type TargetPassword: str
|
26979
|
+
:param _StartTime: Start time. time format: yyyy-DD-mm hh:mm:ss.
|
26980
|
+
:type StartTime: str
|
26981
|
+
:param _EndTime: Specifies the end time in the time format yyyy-DD-mm hh:mm:ss.
|
26982
|
+
:type EndTime: str
|
26983
|
+
"""
|
26984
|
+
self._SourceClusterId = None
|
26985
|
+
self._SourceInstanceId = None
|
26986
|
+
self._TargetClusterId = None
|
26987
|
+
self._TargetInstanceId = None
|
26988
|
+
self._TargetUserName = None
|
26989
|
+
self._TargetPassword = None
|
26990
|
+
self._StartTime = None
|
26991
|
+
self._EndTime = None
|
26992
|
+
|
26993
|
+
@property
|
26994
|
+
def SourceClusterId(self):
|
26995
|
+
"""Source cluster id.
|
26996
|
+
:rtype: str
|
26997
|
+
"""
|
26998
|
+
return self._SourceClusterId
|
26999
|
+
|
27000
|
+
@SourceClusterId.setter
|
27001
|
+
def SourceClusterId(self, SourceClusterId):
|
27002
|
+
self._SourceClusterId = SourceClusterId
|
27003
|
+
|
27004
|
+
@property
|
27005
|
+
def SourceInstanceId(self):
|
27006
|
+
"""Source instance id.
|
27007
|
+
:rtype: str
|
27008
|
+
"""
|
27009
|
+
return self._SourceInstanceId
|
27010
|
+
|
27011
|
+
@SourceInstanceId.setter
|
27012
|
+
def SourceInstanceId(self, SourceInstanceId):
|
27013
|
+
self._SourceInstanceId = SourceInstanceId
|
27014
|
+
|
27015
|
+
@property
|
27016
|
+
def TargetClusterId(self):
|
27017
|
+
"""Target cluster id.
|
27018
|
+
Specifies the target cluster must be a cluster cloned from the original cluster within three days.
|
27019
|
+
:rtype: str
|
27020
|
+
"""
|
27021
|
+
return self._TargetClusterId
|
27022
|
+
|
27023
|
+
@TargetClusterId.setter
|
27024
|
+
def TargetClusterId(self, TargetClusterId):
|
27025
|
+
self._TargetClusterId = TargetClusterId
|
27026
|
+
|
27027
|
+
@property
|
27028
|
+
def TargetInstanceId(self):
|
27029
|
+
"""Target instance id.
|
27030
|
+
:rtype: str
|
27031
|
+
"""
|
27032
|
+
return self._TargetInstanceId
|
27033
|
+
|
27034
|
+
@TargetInstanceId.setter
|
27035
|
+
def TargetInstanceId(self, TargetInstanceId):
|
27036
|
+
self._TargetInstanceId = TargetInstanceId
|
27037
|
+
|
27038
|
+
@property
|
27039
|
+
def TargetUserName(self):
|
27040
|
+
"""Username. host must be % username.
|
27041
|
+
:rtype: str
|
27042
|
+
"""
|
27043
|
+
return self._TargetUserName
|
27044
|
+
|
27045
|
+
@TargetUserName.setter
|
27046
|
+
def TargetUserName(self, TargetUserName):
|
27047
|
+
self._TargetUserName = TargetUserName
|
27048
|
+
|
27049
|
+
@property
|
27050
|
+
def TargetPassword(self):
|
27051
|
+
"""Password.
|
27052
|
+
:rtype: str
|
27053
|
+
"""
|
27054
|
+
return self._TargetPassword
|
27055
|
+
|
27056
|
+
@TargetPassword.setter
|
27057
|
+
def TargetPassword(self, TargetPassword):
|
27058
|
+
self._TargetPassword = TargetPassword
|
27059
|
+
|
27060
|
+
@property
|
27061
|
+
def StartTime(self):
|
27062
|
+
"""Start time. time format: yyyy-DD-mm hh:mm:ss.
|
27063
|
+
:rtype: str
|
27064
|
+
"""
|
27065
|
+
return self._StartTime
|
27066
|
+
|
27067
|
+
@StartTime.setter
|
27068
|
+
def StartTime(self, StartTime):
|
27069
|
+
self._StartTime = StartTime
|
27070
|
+
|
27071
|
+
@property
|
27072
|
+
def EndTime(self):
|
27073
|
+
"""Specifies the end time in the time format yyyy-DD-mm hh:mm:ss.
|
27074
|
+
:rtype: str
|
27075
|
+
"""
|
27076
|
+
return self._EndTime
|
27077
|
+
|
27078
|
+
@EndTime.setter
|
27079
|
+
def EndTime(self, EndTime):
|
27080
|
+
self._EndTime = EndTime
|
27081
|
+
|
27082
|
+
|
27083
|
+
def _deserialize(self, params):
|
27084
|
+
self._SourceClusterId = params.get("SourceClusterId")
|
27085
|
+
self._SourceInstanceId = params.get("SourceInstanceId")
|
27086
|
+
self._TargetClusterId = params.get("TargetClusterId")
|
27087
|
+
self._TargetInstanceId = params.get("TargetInstanceId")
|
27088
|
+
self._TargetUserName = params.get("TargetUserName")
|
27089
|
+
self._TargetPassword = params.get("TargetPassword")
|
27090
|
+
self._StartTime = params.get("StartTime")
|
27091
|
+
self._EndTime = params.get("EndTime")
|
27092
|
+
memeber_set = set(params.keys())
|
27093
|
+
for name, value in vars(self).items():
|
27094
|
+
property_name = name[1:]
|
27095
|
+
if property_name in memeber_set:
|
27096
|
+
memeber_set.remove(property_name)
|
27097
|
+
if len(memeber_set) > 0:
|
27098
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27099
|
+
|
27100
|
+
|
27101
|
+
|
27102
|
+
class ReplayInstanceAuditLogResponse(AbstractModel):
|
27103
|
+
"""ReplayInstanceAuditLog response structure.
|
27104
|
+
|
27105
|
+
"""
|
27106
|
+
|
27107
|
+
def __init__(self):
|
27108
|
+
r"""
|
27109
|
+
:param _TaskId: Task ID.
|
27110
|
+
:type TaskId: int
|
27111
|
+
: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.
|
27112
|
+
:type RequestId: str
|
27113
|
+
"""
|
27114
|
+
self._TaskId = None
|
27115
|
+
self._RequestId = None
|
27116
|
+
|
27117
|
+
@property
|
27118
|
+
def TaskId(self):
|
27119
|
+
"""Task ID.
|
27120
|
+
:rtype: int
|
27121
|
+
"""
|
27122
|
+
return self._TaskId
|
27123
|
+
|
27124
|
+
@TaskId.setter
|
27125
|
+
def TaskId(self, TaskId):
|
27126
|
+
self._TaskId = TaskId
|
27127
|
+
|
27128
|
+
@property
|
27129
|
+
def RequestId(self):
|
27130
|
+
"""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.
|
27131
|
+
:rtype: str
|
27132
|
+
"""
|
27133
|
+
return self._RequestId
|
27134
|
+
|
27135
|
+
@RequestId.setter
|
27136
|
+
def RequestId(self, RequestId):
|
27137
|
+
self._RequestId = RequestId
|
27138
|
+
|
27139
|
+
|
27140
|
+
def _deserialize(self, params):
|
27141
|
+
self._TaskId = params.get("TaskId")
|
27142
|
+
self._RequestId = params.get("RequestId")
|
27143
|
+
|
27144
|
+
|
26959
27145
|
class ResetAccountPasswordRequest(AbstractModel):
|
26960
27146
|
"""ResetAccountPassword request structure.
|
26961
27147
|
|
@@ -801,6 +801,8 @@ Example: xhBQAAACBjSFJNAAB6****AAAASUVORK5CYII=
|
|
801
801
|
:type CompareImageBase64: str
|
802
802
|
:param _Extra: The passthrough parameter of the business, max 1,000 characters, which will be returned in GetWebVerificationResultIntl.
|
803
803
|
:type Extra: str
|
804
|
+
:param _RuleId: The business process ID generated by the console.
|
805
|
+
:type RuleId: str
|
804
806
|
:param _Config: The parameter control the page configuration.
|
805
807
|
Example: {"AutoSkip": true,"CheckMode": 1,"IdCardType": "HKIDCard"}
|
806
808
|
:type Config: :class:`tencentcloud.faceid.v20180301.models.WebVerificationConfigIntl`
|
@@ -808,6 +810,7 @@ Example: {"AutoSkip": true,"CheckMode": 1,"IdCardType": "HKIDCard"}
|
|
808
810
|
self._RedirectURL = None
|
809
811
|
self._CompareImageBase64 = None
|
810
812
|
self._Extra = None
|
813
|
+
self._RuleId = None
|
811
814
|
self._Config = None
|
812
815
|
|
813
816
|
@property
|
@@ -846,6 +849,17 @@ Example: xhBQAAACBjSFJNAAB6****AAAASUVORK5CYII=
|
|
846
849
|
def Extra(self, Extra):
|
847
850
|
self._Extra = Extra
|
848
851
|
|
852
|
+
@property
|
853
|
+
def RuleId(self):
|
854
|
+
"""The business process ID generated by the console.
|
855
|
+
:rtype: str
|
856
|
+
"""
|
857
|
+
return self._RuleId
|
858
|
+
|
859
|
+
@RuleId.setter
|
860
|
+
def RuleId(self, RuleId):
|
861
|
+
self._RuleId = RuleId
|
862
|
+
|
849
863
|
@property
|
850
864
|
def Config(self):
|
851
865
|
"""The parameter control the page configuration.
|
@@ -863,6 +877,7 @@ Example: {"AutoSkip": true,"CheckMode": 1,"IdCardType": "HKIDCard"}
|
|
863
877
|
self._RedirectURL = params.get("RedirectURL")
|
864
878
|
self._CompareImageBase64 = params.get("CompareImageBase64")
|
865
879
|
self._Extra = params.get("Extra")
|
880
|
+
self._RuleId = params.get("RuleId")
|
866
881
|
if params.get("Config") is not None:
|
867
882
|
self._Config = WebVerificationConfigIntl()
|
868
883
|
self._Config._deserialize(params.get("Config"))
|
@@ -10579,9 +10594,9 @@ class WebVerificationConfigIntl(AbstractModel):
|
|
10579
10594
|
Example value: false
|
10580
10595
|
:type AutoSkip: bool
|
10581
10596
|
:param _CheckMode: Detection mode, parameter values are as follows:
|
10582
|
-
1: OCR+
|
10583
|
-
2:
|
10584
|
-
3:
|
10597
|
+
1: OCR+liveness detection & face comparison;
|
10598
|
+
2: Liveness detection & face comparison;
|
10599
|
+
3: Liveness detection;
|
10585
10600
|
4: OCR;
|
10586
10601
|
The default value is 2.
|
10587
10602
|
Example value: 3
|
@@ -10589,24 +10604,16 @@ Example value: 3
|
|
10589
10604
|
:param _IDCardType: The type of lisence used for verification. The following types are supported.
|
10590
10605
|
1.HKIDCard: Hong Kong (China) ID card
|
10591
10606
|
2.MLIDCard: Malaysia ID card
|
10592
|
-
3.
|
10593
|
-
4.PhilippinesVoteID: Philippines
|
10607
|
+
3.IndonesialDCard: Indonesia ID card
|
10608
|
+
4.PhilippinesVoteID: Philippines Vote lD card
|
10594
10609
|
5.PhilippinesDrivingLicense: Philippines driving license
|
10595
10610
|
6.PhilippinesTinID: Philippines TinID card
|
10596
10611
|
7.PhilippinesSSSID: Philippines SSSID card
|
10597
10612
|
8.PhilippinesUMID: Philippines UMID card
|
10598
|
-
9.
|
10599
|
-
10.
|
10600
|
-
11.
|
10601
|
-
12.
|
10602
|
-
13.MLDrivingLicense: Malaysia driving license
|
10603
|
-
14.SingaporeIDCard: Singapore ID card
|
10604
|
-
15.SingaporeDrivingLicense: Singapore driving license
|
10605
|
-
16.JapanIDCard: Japan ID card
|
10606
|
-
17.JapanDrivingLicense: Japan driving license
|
10607
|
-
18.PhilippinesIDCard: Philippines ID card
|
10608
|
-
19.MainlandIDCard: Mainland (China) ID card
|
10609
|
-
20.MacaoIDCard: Macao (China) ID card
|
10613
|
+
9.InternationallDPassport: ID cards of Hong Kong (China), Macao (China) and Taiwan (China), and international passport.
|
10614
|
+
10.ThailandIDCard: Thailand ID card
|
10615
|
+
11.SingaporelDCard: Singapore ID card
|
10616
|
+
12.MainlandIDCard: Mainland (China) ID card
|
10610
10617
|
Example: HKIDCard
|
10611
10618
|
:type IDCardType: str
|
10612
10619
|
:param _DisableCheckOcrWarnings: Whether to turn off document alarms, the default is false (the alarm detection function is turned on). When enabled, the identity authentication process will be intercepted based on the alarm status of the certificate. If you need to use the document authentication function, please contact us.
|
@@ -10617,7 +10624,7 @@ Example: HKIDCard
|
|
10617
10624
|
:type SkipPrivacyPolicy: bool
|
10618
10625
|
:param _IdCardCutReturn: The default value is false. If it is false, the original ID image will be displayed. If it is true, the cut ID image will be displayed.
|
10619
10626
|
:type IdCardCutReturn: bool
|
10620
|
-
:param _ThemeColor: Front-end theme color, in the format of RGB hexadecimal color code. The default value is "#
|
10627
|
+
:param _ThemeColor: Front-end theme color, in the format of RGB hexadecimal color code. The default value is "#2d72f1". If the format is incorrect, the default value color will be used.
|
10621
10628
|
:type ThemeColor: str
|
10622
10629
|
:param _Language: International language, the default value is en (English). Currently supported: th: Thai; en: English; zh-cn: Simplified Chinese; zh-tc: Tradionnal Chinese; id: Bahasa Indonesia.
|
10623
10630
|
:type Language: str
|
@@ -10677,9 +10684,9 @@ Example value: false
|
|
10677
10684
|
@property
|
10678
10685
|
def CheckMode(self):
|
10679
10686
|
"""Detection mode, parameter values are as follows:
|
10680
|
-
1: OCR+
|
10681
|
-
2:
|
10682
|
-
3:
|
10687
|
+
1: OCR+liveness detection & face comparison;
|
10688
|
+
2: Liveness detection & face comparison;
|
10689
|
+
3: Liveness detection;
|
10683
10690
|
4: OCR;
|
10684
10691
|
The default value is 2.
|
10685
10692
|
Example value: 3
|
@@ -10696,24 +10703,16 @@ Example value: 3
|
|
10696
10703
|
"""The type of lisence used for verification. The following types are supported.
|
10697
10704
|
1.HKIDCard: Hong Kong (China) ID card
|
10698
10705
|
2.MLIDCard: Malaysia ID card
|
10699
|
-
3.
|
10700
|
-
4.PhilippinesVoteID: Philippines
|
10706
|
+
3.IndonesialDCard: Indonesia ID card
|
10707
|
+
4.PhilippinesVoteID: Philippines Vote lD card
|
10701
10708
|
5.PhilippinesDrivingLicense: Philippines driving license
|
10702
10709
|
6.PhilippinesTinID: Philippines TinID card
|
10703
10710
|
7.PhilippinesSSSID: Philippines SSSID card
|
10704
10711
|
8.PhilippinesUMID: Philippines UMID card
|
10705
|
-
9.
|
10706
|
-
10.
|
10707
|
-
11.
|
10708
|
-
12.
|
10709
|
-
13.MLDrivingLicense: Malaysia driving license
|
10710
|
-
14.SingaporeIDCard: Singapore ID card
|
10711
|
-
15.SingaporeDrivingLicense: Singapore driving license
|
10712
|
-
16.JapanIDCard: Japan ID card
|
10713
|
-
17.JapanDrivingLicense: Japan driving license
|
10714
|
-
18.PhilippinesIDCard: Philippines ID card
|
10715
|
-
19.MainlandIDCard: Mainland (China) ID card
|
10716
|
-
20.MacaoIDCard: Macao (China) ID card
|
10712
|
+
9.InternationallDPassport: ID cards of Hong Kong (China), Macao (China) and Taiwan (China), and international passport.
|
10713
|
+
10.ThailandIDCard: Thailand ID card
|
10714
|
+
11.SingaporelDCard: Singapore ID card
|
10715
|
+
12.MainlandIDCard: Mainland (China) ID card
|
10717
10716
|
Example: HKIDCard
|
10718
10717
|
:rtype: str
|
10719
10718
|
"""
|
@@ -10769,7 +10768,7 @@ Example: HKIDCard
|
|
10769
10768
|
|
10770
10769
|
@property
|
10771
10770
|
def ThemeColor(self):
|
10772
|
-
"""Front-end theme color, in the format of RGB hexadecimal color code. The default value is "#
|
10771
|
+
"""Front-end theme color, in the format of RGB hexadecimal color code. The default value is "#2d72f1". If the format is incorrect, the default value color will be used.
|
10773
10772
|
:rtype: str
|
10774
10773
|
"""
|
10775
10774
|
return self._ThemeColor
|
@@ -30,7 +30,7 @@ class ImsClient(AbstractClient):
|
|
30
30
|
"""This API is used to submit an image for smart moderation. Before using it, you need to log in to the console with the Tencent Cloud root account [to activate IMS](https://console.cloud.tencent.com/cms/image/package) and adjust the business configuration.
|
31
31
|
### API use instructions
|
32
32
|
- Go to the "[CMS console - IMS](https://console.cloud.tencent.com/cms/image/package)" to activate IMS.
|
33
|
-
- This API is a paid API. For its billing mode, see [IMS Pricing](https://
|
33
|
+
- This API is a paid API. For its billing mode, see [IMS Pricing](https://www.tencentcloud.com/document/product/1122/43810).
|
34
34
|
|
35
35
|
### API feature description
|
36
36
|
- It can detect images or links and recognize content that may be offensive, unsafe, or inappropriate based on the deep learning technology;
|
@@ -184,6 +184,8 @@ class ImageModerationRequest(AbstractModel):
|
|
184
184
|
:type User: :class:`tencentcloud.ims.v20201229.models.User`
|
185
185
|
:param _Device: This field indicates the information of the device that corresponds to the object to be detected. It can be passed in to identify the device involved in the violation.
|
186
186
|
:type Device: :class:`tencentcloud.ims.v20201229.models.Device`
|
187
|
+
:param _Type:
|
188
|
+
:type Type: str
|
187
189
|
"""
|
188
190
|
self._BizType = None
|
189
191
|
self._DataId = None
|
@@ -193,6 +195,7 @@ class ImageModerationRequest(AbstractModel):
|
|
193
195
|
self._MaxFrames = None
|
194
196
|
self._User = None
|
195
197
|
self._Device = None
|
198
|
+
self._Type = None
|
196
199
|
|
197
200
|
@property
|
198
201
|
def BizType(self):
|
@@ -282,6 +285,17 @@ class ImageModerationRequest(AbstractModel):
|
|
282
285
|
def Device(self, Device):
|
283
286
|
self._Device = Device
|
284
287
|
|
288
|
+
@property
|
289
|
+
def Type(self):
|
290
|
+
"""
|
291
|
+
:rtype: str
|
292
|
+
"""
|
293
|
+
return self._Type
|
294
|
+
|
295
|
+
@Type.setter
|
296
|
+
def Type(self, Type):
|
297
|
+
self._Type = Type
|
298
|
+
|
285
299
|
|
286
300
|
def _deserialize(self, params):
|
287
301
|
self._BizType = params.get("BizType")
|
@@ -296,6 +310,7 @@ class ImageModerationRequest(AbstractModel):
|
|
296
310
|
if params.get("Device") is not None:
|
297
311
|
self._Device = Device()
|
298
312
|
self._Device._deserialize(params.get("Device"))
|
313
|
+
self._Type = params.get("Type")
|
299
314
|
memeber_set = set(params.keys())
|
300
315
|
for name, value in vars(self).items():
|
301
316
|
property_name = name[1:]
|
@@ -2894,7 +2894,8 @@ class DescribeCustomerBillDetailByDayRequest(AbstractModel):
|
|
2894
2894
|
Such as "10000000001"
|
2895
2895
|
:type CustomerUin: int
|
2896
2896
|
:param _Date: Date.
|
2897
|
-
Such as" 2025-06-25"
|
2897
|
+
Such as" 2025-06-25".
|
2898
|
+
Please note: Historical daily bill dated before "2025-06-01",cannot be queried.
|
2898
2899
|
:type Date: str
|
2899
2900
|
"""
|
2900
2901
|
self._CustomerUin = None
|
@@ -2915,7 +2916,8 @@ Such as "10000000001"
|
|
2915
2916
|
@property
|
2916
2917
|
def Date(self):
|
2917
2918
|
"""Date.
|
2918
|
-
Such as" 2025-06-25"
|
2919
|
+
Such as" 2025-06-25".
|
2920
|
+
Please note: Historical daily bill dated before "2025-06-01",cannot be queried.
|
2919
2921
|
:rtype: str
|
2920
2922
|
"""
|
2921
2923
|
return self._Date
|
@@ -1174,8 +1174,9 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
1174
1174
|
Common: audio/video type.
|
1175
1175
|
PureAudio: audio-only.
|
1176
1176
|
:type DefinitionType: str
|
1177
|
-
:param _SubtitleTemplate:
|
1178
|
-
|
1177
|
+
:param _SubtitleTemplate: Specifies the subtitle parameter.
|
1178
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
1179
|
+
:type SubtitleTemplate: :class:`tencentcloud.mps.v20190612.models.SubtitleTemplate`
|
1179
1180
|
"""
|
1180
1181
|
self._Definition = None
|
1181
1182
|
self._WatermarkSet = None
|
@@ -1300,8 +1301,9 @@ PureAudio: audio-only.
|
|
1300
1301
|
|
1301
1302
|
@property
|
1302
1303
|
def SubtitleTemplate(self):
|
1303
|
-
"""
|
1304
|
-
|
1304
|
+
"""Specifies the subtitle parameter.
|
1305
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
1306
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.SubtitleTemplate`
|
1305
1307
|
"""
|
1306
1308
|
return self._SubtitleTemplate
|
1307
1309
|
|
@@ -1334,7 +1336,9 @@ PureAudio: audio-only.
|
|
1334
1336
|
self._DrmInfo = DrmInfo()
|
1335
1337
|
self._DrmInfo._deserialize(params.get("DrmInfo"))
|
1336
1338
|
self._DefinitionType = params.get("DefinitionType")
|
1337
|
-
|
1339
|
+
if params.get("SubtitleTemplate") is not None:
|
1340
|
+
self._SubtitleTemplate = SubtitleTemplate()
|
1341
|
+
self._SubtitleTemplate._deserialize(params.get("SubtitleTemplate"))
|
1338
1342
|
memeber_set = set(params.keys())
|
1339
1343
|
for name, value in vars(self).items():
|
1340
1344
|
property_name = name[1:]
|
@@ -38,6 +38,9 @@ INVALIDPARAMETERVALUE_ERRTEXTCONTENTLEN = 'InvalidParameterValue.ErrTextContentL
|
|
38
38
|
# The text in the request is in the incorrect format (base64-encoded text is required).
|
39
39
|
INVALIDPARAMETERVALUE_ERRTEXTCONTENTTYPE = 'InvalidParameterValue.ErrTextContentType'
|
40
40
|
|
41
|
+
#
|
42
|
+
INVALIDPARAMETERVALUE_ERRTYPE = 'InvalidParameterValue.ErrType'
|
43
|
+
|
41
44
|
#
|
42
45
|
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
|
43
46
|
|
@@ -750,6 +750,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
750
750
|
:type ContextText: str
|
751
751
|
:param _SentimentAnalysis:
|
752
752
|
:type SentimentAnalysis: :class:`tencentcloud.tms.v20201229.models.SentimentAnalysis`
|
753
|
+
:param _HitType:
|
754
|
+
:type HitType: str
|
753
755
|
: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.
|
754
756
|
:type RequestId: str
|
755
757
|
"""
|
@@ -765,6 +767,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
765
767
|
self._SubLabel = None
|
766
768
|
self._ContextText = None
|
767
769
|
self._SentimentAnalysis = None
|
770
|
+
self._HitType = None
|
768
771
|
self._RequestId = None
|
769
772
|
|
770
773
|
@property
|
@@ -906,6 +909,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
906
909
|
def SentimentAnalysis(self, SentimentAnalysis):
|
907
910
|
self._SentimentAnalysis = SentimentAnalysis
|
908
911
|
|
912
|
+
@property
|
913
|
+
def HitType(self):
|
914
|
+
"""
|
915
|
+
:rtype: str
|
916
|
+
"""
|
917
|
+
return self._HitType
|
918
|
+
|
919
|
+
@HitType.setter
|
920
|
+
def HitType(self, HitType):
|
921
|
+
self._HitType = HitType
|
922
|
+
|
909
923
|
@property
|
910
924
|
def RequestId(self):
|
911
925
|
"""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.
|
@@ -943,6 +957,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
943
957
|
if params.get("SentimentAnalysis") is not None:
|
944
958
|
self._SentimentAnalysis = SentimentAnalysis()
|
945
959
|
self._SentimentAnalysis._deserialize(params.get("SentimentAnalysis"))
|
960
|
+
self._HitType = params.get("HitType")
|
946
961
|
self._RequestId = params.get("RequestId")
|
947
962
|
|
948
963
|
|
@@ -31,7 +31,7 @@ class TmsClient(AbstractClient):
|
|
31
31
|
|
32
32
|
### Notes
|
33
33
|
- Before invoking this API, be sure you have activated Tencent Cloud Text Moderation System in the [Content Moderation - Text Moderation System](https://console.cloud.tencent.com/cms/text/package) console.
|
34
|
-
- This is a paid API. For the billing details, see [Text Moderation System Pricing](https://
|
34
|
+
- This is a paid API. For the billing details, see [Text Moderation System Pricing](https://www.tencentcloud.com/document/product/1121/43752).
|
35
35
|
|
36
36
|
|
37
37
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
1
|
+
tencentcloud/__init__.py,sha256=W1MPje5uXONY4n8U49L7-mkTXznfRdZEKSJ8LT4ZFoM,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=fiBV7Nao68T0UJdOUt5BxEABWr7mG_J9NPJT2lXDdyw,2897
|
@@ -36,9 +36,9 @@ tencentcloud/asr/v20190614/errorcodes.py,sha256=p4aIO9A3yNbwFK5llvgqMd7tYO2wwRNg
|
|
36
36
|
tencentcloud/asr/v20190614/models.py,sha256=NKa4vZfGgVJmT8otvv-pwr2_1Y-tuOjNBrH1DIRLcyQ,59771
|
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=hzq2rUVFHyMK-wu5XCYBFYy8I4g7XDzaOnLpkDLGycg,75152
|
40
40
|
tencentcloud/autoscaling/v20180419/errorcodes.py,sha256=Cdnc7uQTayXZwO-H21Kp0_bayxywhTIOBIgV3e6Q-tI,24134
|
41
|
-
tencentcloud/autoscaling/v20180419/models.py,sha256=
|
41
|
+
tencentcloud/autoscaling/v20180419/models.py,sha256=MMrPuabHx-z5i7rc9YX9qLhtm5NNQ-2Tsim6LqKygkk,713943
|
42
42
|
tencentcloud/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
43
|
tencentcloud/batch/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
44
|
tencentcloud/batch/v20170312/batch_client.py,sha256=pwyTcjoXkEQtheL1Uhk7qnHGjvn6ksnyYIdg1TFOtH8,29626
|
@@ -46,9 +46,9 @@ tencentcloud/batch/v20170312/errorcodes.py,sha256=BrtDS1Z-tX44zfKakcEuK-aSuPElRW
|
|
46
46
|
tencentcloud/batch/v20170312/models.py,sha256=gvQ5VySENMTMzQDqGXiB0Lkxh9AYvd2ELUBkqgHmg64,335257
|
47
47
|
tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
48
|
tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
tencentcloud/billing/v20180709/billing_client.py,sha256=
|
50
|
-
tencentcloud/billing/v20180709/errorcodes.py,sha256=
|
51
|
-
tencentcloud/billing/v20180709/models.py,sha256=
|
49
|
+
tencentcloud/billing/v20180709/billing_client.py,sha256=N7W8vph2WBWMb4xHxNAE4I3PgffoxZkfIMQWZ-fW7X8,41701
|
50
|
+
tencentcloud/billing/v20180709/errorcodes.py,sha256=Ct0YFsyewHADOjMHLRkxHLfxjYcfUxXRcIlFovc8aKg,3560
|
51
|
+
tencentcloud/billing/v20180709/models.py,sha256=9QSbrkNpW6Gh7sifnOqZxpiWtsNVx-Piuex4_c0TkCg,588266
|
52
52
|
tencentcloud/cam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
53
|
tencentcloud/cam/v20190116/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
54
|
tencentcloud/cam/v20190116/cam_client.py,sha256=qnX7GJuWfmhJWl0JDXtt_bO3vMOhBYh7D0RA61o0Soo,75142
|
@@ -194,9 +194,9 @@ tencentcloud/cwp/v20180228/errorcodes.py,sha256=MEbvA2rHU7Phq1_cYQfd4XCziHC_dO3W
|
|
194
194
|
tencentcloud/cwp/v20180228/models.py,sha256=syTAV3MYsEgU6vZbcBR0hRWCrnuVMqda-uIdOQVPLu0,2974248
|
195
195
|
tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
196
196
|
tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
|
-
tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=
|
198
|
-
tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=
|
199
|
-
tencentcloud/cynosdb/v20190107/models.py,sha256=
|
197
|
+
tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=_gr_0dwDL9fos9DRWl2jwEzsUqKOMBCcciiWxlJigDs,132136
|
198
|
+
tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=vYrOn3EWhQxC2NlnaeRNxVH6Vdk0TTtSEJ3km1BZ1TQ,14722
|
199
|
+
tencentcloud/cynosdb/v20190107/models.py,sha256=XevGAZgVHtRpyyUGKifaRx1x2Y4DbfcYpEpK7pnyeoo,929139
|
200
200
|
tencentcloud/dataintegration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
201
|
tencentcloud/dataintegration/v20220613/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
202
|
tencentcloud/dataintegration/v20220613/dataintegration_client.py,sha256=MCZ_JrDJLa7kYGvg9D535eTGBdy78nq338iEA8YSdwQ,1909
|
@@ -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=UWFq3n_iGHWNHyp7I0DL-_OY1hjpqVxJnnpJaiEqMdk,9935
|
296
296
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=quJwWgh-GIGZ3gjGVHwxOnW9CLbKBNBOaT9YzzTku44,24108
|
297
|
-
tencentcloud/faceid/v20180301/models.py,sha256=
|
297
|
+
tencentcloud/faceid/v20180301/models.py,sha256=dE635huNstjfoHPjTejWb_YUSyDzR-BFlYCVFfQ_xvs,383240
|
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=mZT9m757HMuDMHkibCs0PWFE_VK9tryUOt7sCMwAi8U,11115
|
@@ -333,13 +333,13 @@ tencentcloud/iap/v20240713/models.py,sha256=LohtwXkzuraHEN9hEq1S8TH1MTjim8ntxheJ
|
|
333
333
|
tencentcloud/ims/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
334
334
|
tencentcloud/ims/v20201229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
335
335
|
tencentcloud/ims/v20201229/errorcodes.py,sha256=SpqkkBrQvHKElDHofUUn2BDBARnxbPwUVX49lTF3_bY,3834
|
336
|
-
tencentcloud/ims/v20201229/ims_client.py,sha256=
|
337
|
-
tencentcloud/ims/v20201229/models.py,sha256=
|
336
|
+
tencentcloud/ims/v20201229/ims_client.py,sha256=Wzqk1Xd9qelfYFfVtbLRTpX0cUMLQNw9EwOkPyWPg1A,4343
|
337
|
+
tencentcloud/ims/v20201229/models.py,sha256=Q1L2FoNGfs_24bkUZJrD5Hcq_eouF3AyljeeprvJ-Qo,89537
|
338
338
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
339
339
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
340
340
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=tSll8Z82ldhQ8Q6cBkmxaTXe1ILN__H4WOCWH4dnUFE,8711
|
341
341
|
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=zK5niNU-pjcyYsNcxt5Yeh-5ZchqoByEJ0KAOL_qEiE,45348
|
342
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256
|
342
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=-I7khBjIN7pjLJ_BnA-XzCsB0-CIZNP4iDwmfzLSWmU,256491
|
343
343
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
344
344
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
345
345
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=5Wx7sPJOTpDdlX57HDEIEwoDirSwUiALR91_AR-SB6g,5860
|
@@ -408,7 +408,7 @@ tencentcloud/monitor/v20180724/monitor_client.py,sha256=BgWGGydq4tPDwx9whEe_E-NN
|
|
408
408
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
409
409
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
410
410
|
tencentcloud/mps/v20190612/errorcodes.py,sha256=JLEbPRuavsDumgg59fk-vNH-fS-PmeTlZDklciumn_0,15226
|
411
|
-
tencentcloud/mps/v20190612/models.py,sha256=
|
411
|
+
tencentcloud/mps/v20190612/models.py,sha256=4suakP48gzFLdPFHMxNZd2BCRezizVwWuNFsr9rmfvg,1968660
|
412
412
|
tencentcloud/mps/v20190612/mps_client.py,sha256=n3E09q497xRxwkn5OZ6qHDPE42G1co9fKxAg3YDV7BM,96335
|
413
413
|
tencentcloud/msp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
414
414
|
tencentcloud/msp/v20180319/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -597,9 +597,9 @@ tencentcloud/tke/v20220501/models.py,sha256=0M_5nHQ6IvejvaN6VnkhrIpm4_xTHlswpLmB
|
|
597
597
|
tencentcloud/tke/v20220501/tke_client.py,sha256=KafS70o_ZmT241tbMYIlxwkRXFkM5DtgUZznKR6kZ_k,11217
|
598
598
|
tencentcloud/tms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
599
599
|
tencentcloud/tms/v20201229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
600
|
-
tencentcloud/tms/v20201229/errorcodes.py,sha256=
|
601
|
-
tencentcloud/tms/v20201229/models.py,sha256=
|
602
|
-
tencentcloud/tms/v20201229/tms_client.py,sha256=
|
600
|
+
tencentcloud/tms/v20201229/errorcodes.py,sha256=j-PgsM3Yf-eDy24jMASwEi9FInc8wX0iixBfXt9TLpM,1864
|
601
|
+
tencentcloud/tms/v20201229/models.py,sha256=Zvt8rUYH1_1jpGjIx_RyabF2NVZXdV8tnNRZmoSpXds,47944
|
602
|
+
tencentcloud/tms/v20201229/tms_client.py,sha256=cFi9e-dloWcDue-Qj8xhNrhQ2HauxMfa7d_JCCPUefQ,2524
|
603
603
|
tencentcloud/tmt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
604
604
|
tencentcloud/tmt/v20180321/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
605
605
|
tencentcloud/tmt/v20180321/errorcodes.py,sha256=4kvClBkutqhAsR3AaRajvPt8uTTG9f3rha5E5vvKzyE,3160
|
@@ -668,7 +668,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
668
668
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=g2ac3Fxgbof23WWhGj9VxvuLJZNshnB0Mg7jWUzTh24,3168
|
669
669
|
tencentcloud/yunjing/v20180228/models.py,sha256=vFpNnPGWiOLdTut0XPTpRRF5lobWUTkFUO1EHc9RkBk,330643
|
670
670
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=PqtaJz4gQ-rIxKXVMNtOKx7kFBQdUn-zKVuH2NcMFcA,67362
|
671
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
672
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
673
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
674
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
671
|
+
tencentcloud_sdk_python_intl_en-3.0.1245.dist-info/METADATA,sha256=ClkYrJ9owMNmmlv3lk4c0T9b99RgUn6ICbakGMZ2nDA,1628
|
672
|
+
tencentcloud_sdk_python_intl_en-3.0.1245.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
673
|
+
tencentcloud_sdk_python_intl_en-3.0.1245.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
674
|
+
tencentcloud_sdk_python_intl_en-3.0.1245.dist-info/RECORD,,
|
File without changes
|