tencentcloud-sdk-python-intl-en 3.0.1211__py2.py3-none-any.whl → 3.0.1213__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/mdl/v20200326/models.py +2 -2
- tencentcloud/privatedns/v20201028/models.py +297 -0
- tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
- {tencentcloud_sdk_python_intl_en-3.0.1211.dist-info → tencentcloud_sdk_python_intl_en-3.0.1213.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1211.dist-info → tencentcloud_sdk_python_intl_en-3.0.1213.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1211.dist-info → tencentcloud_sdk_python_intl_en-3.0.1213.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1211.dist-info → tencentcloud_sdk_python_intl_en-3.0.1213.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -6367,7 +6367,7 @@ class GetAbWatermarkPlayUrlRequest(AbstractModel):
|
|
|
6367
6367
|
|
|
6368
6368
|
def __init__(self):
|
|
6369
6369
|
r"""
|
|
6370
|
-
:param _Uuid: Client UUID, 32-bit unsigned integer.
|
|
6370
|
+
:param _Uuid: Client UUID, 32-bit unsigned integer, [0, 4294967295].
|
|
6371
6371
|
:type Uuid: int
|
|
6372
6372
|
:param _StreamPackageChannelId: Channel ID of Stream Package.
|
|
6373
6373
|
:type StreamPackageChannelId: str
|
|
@@ -6380,7 +6380,7 @@ class GetAbWatermarkPlayUrlRequest(AbstractModel):
|
|
|
6380
6380
|
|
|
6381
6381
|
@property
|
|
6382
6382
|
def Uuid(self):
|
|
6383
|
-
"""Client UUID, 32-bit unsigned integer.
|
|
6383
|
+
"""Client UUID, 32-bit unsigned integer, [0, 4294967295].
|
|
6384
6384
|
:rtype: int
|
|
6385
6385
|
"""
|
|
6386
6386
|
return self._Uuid
|
|
@@ -3296,6 +3296,102 @@ class DescribeQuotaUsageResponse(AbstractModel):
|
|
|
3296
3296
|
self._RequestId = params.get("RequestId")
|
|
3297
3297
|
|
|
3298
3298
|
|
|
3299
|
+
class DescribeRecordRequest(AbstractModel):
|
|
3300
|
+
"""DescribeRecord request structure.
|
|
3301
|
+
|
|
3302
|
+
"""
|
|
3303
|
+
|
|
3304
|
+
def __init__(self):
|
|
3305
|
+
r"""
|
|
3306
|
+
:param _ZoneId: Private domain ID.
|
|
3307
|
+
:type ZoneId: str
|
|
3308
|
+
:param _RecordId: Record ID
|
|
3309
|
+
:type RecordId: str
|
|
3310
|
+
"""
|
|
3311
|
+
self._ZoneId = None
|
|
3312
|
+
self._RecordId = None
|
|
3313
|
+
|
|
3314
|
+
@property
|
|
3315
|
+
def ZoneId(self):
|
|
3316
|
+
"""Private domain ID.
|
|
3317
|
+
:rtype: str
|
|
3318
|
+
"""
|
|
3319
|
+
return self._ZoneId
|
|
3320
|
+
|
|
3321
|
+
@ZoneId.setter
|
|
3322
|
+
def ZoneId(self, ZoneId):
|
|
3323
|
+
self._ZoneId = ZoneId
|
|
3324
|
+
|
|
3325
|
+
@property
|
|
3326
|
+
def RecordId(self):
|
|
3327
|
+
"""Record ID
|
|
3328
|
+
:rtype: str
|
|
3329
|
+
"""
|
|
3330
|
+
return self._RecordId
|
|
3331
|
+
|
|
3332
|
+
@RecordId.setter
|
|
3333
|
+
def RecordId(self, RecordId):
|
|
3334
|
+
self._RecordId = RecordId
|
|
3335
|
+
|
|
3336
|
+
|
|
3337
|
+
def _deserialize(self, params):
|
|
3338
|
+
self._ZoneId = params.get("ZoneId")
|
|
3339
|
+
self._RecordId = params.get("RecordId")
|
|
3340
|
+
memeber_set = set(params.keys())
|
|
3341
|
+
for name, value in vars(self).items():
|
|
3342
|
+
property_name = name[1:]
|
|
3343
|
+
if property_name in memeber_set:
|
|
3344
|
+
memeber_set.remove(property_name)
|
|
3345
|
+
if len(memeber_set) > 0:
|
|
3346
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
3347
|
+
|
|
3348
|
+
|
|
3349
|
+
|
|
3350
|
+
class DescribeRecordResponse(AbstractModel):
|
|
3351
|
+
"""DescribeRecord response structure.
|
|
3352
|
+
|
|
3353
|
+
"""
|
|
3354
|
+
|
|
3355
|
+
def __init__(self):
|
|
3356
|
+
r"""
|
|
3357
|
+
:param _RecordInfo: Record information.
|
|
3358
|
+
:type RecordInfo: :class:`tencentcloud.privatedns.v20201028.models.RecordInfo`
|
|
3359
|
+
: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.
|
|
3360
|
+
:type RequestId: str
|
|
3361
|
+
"""
|
|
3362
|
+
self._RecordInfo = None
|
|
3363
|
+
self._RequestId = None
|
|
3364
|
+
|
|
3365
|
+
@property
|
|
3366
|
+
def RecordInfo(self):
|
|
3367
|
+
"""Record information.
|
|
3368
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.RecordInfo`
|
|
3369
|
+
"""
|
|
3370
|
+
return self._RecordInfo
|
|
3371
|
+
|
|
3372
|
+
@RecordInfo.setter
|
|
3373
|
+
def RecordInfo(self, RecordInfo):
|
|
3374
|
+
self._RecordInfo = RecordInfo
|
|
3375
|
+
|
|
3376
|
+
@property
|
|
3377
|
+
def RequestId(self):
|
|
3378
|
+
"""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.
|
|
3379
|
+
:rtype: str
|
|
3380
|
+
"""
|
|
3381
|
+
return self._RequestId
|
|
3382
|
+
|
|
3383
|
+
@RequestId.setter
|
|
3384
|
+
def RequestId(self, RequestId):
|
|
3385
|
+
self._RequestId = RequestId
|
|
3386
|
+
|
|
3387
|
+
|
|
3388
|
+
def _deserialize(self, params):
|
|
3389
|
+
if params.get("RecordInfo") is not None:
|
|
3390
|
+
self._RecordInfo = RecordInfo()
|
|
3391
|
+
self._RecordInfo._deserialize(params.get("RecordInfo"))
|
|
3392
|
+
self._RequestId = params.get("RequestId")
|
|
3393
|
+
|
|
3394
|
+
|
|
3299
3395
|
class DescribeRequestDataRequest(AbstractModel):
|
|
3300
3396
|
"""DescribeRequestData request structure.
|
|
3301
3397
|
|
|
@@ -5765,6 +5861,207 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
5765
5861
|
|
|
5766
5862
|
|
|
5767
5863
|
|
|
5864
|
+
class RecordInfo(AbstractModel):
|
|
5865
|
+
"""Private domain information.
|
|
5866
|
+
|
|
5867
|
+
"""
|
|
5868
|
+
|
|
5869
|
+
def __init__(self):
|
|
5870
|
+
r"""
|
|
5871
|
+
:param _RecordId: Record ID.
|
|
5872
|
+
:type RecordId: str
|
|
5873
|
+
:param _ZoneId: Private domain ID, which is in zone-xxxxxxxx format.
|
|
5874
|
+
:type ZoneId: str
|
|
5875
|
+
:param _SubDomain: Subdomain name.
|
|
5876
|
+
:type SubDomain: str
|
|
5877
|
+
:param _RecordType: Record type. Valid values: A, AAAA, CNAME, MX, TXT, and PTR.
|
|
5878
|
+
:type RecordType: str
|
|
5879
|
+
:param _RecordValue: Record value.
|
|
5880
|
+
:type RecordValue: str
|
|
5881
|
+
:param _TTL: Record cache time. The smaller the value, the faster the record will take effect. Value range: 1-86,400s. Default value: 600.
|
|
5882
|
+
:type TTL: int
|
|
5883
|
+
:param _MX: MX priority, which is required when the record type is mx. valid values: 5, 10, 15, 20, 30, 40, and 50.
|
|
5884
|
+
:type MX: int
|
|
5885
|
+
:param _Weight: Record weight. valid values: 1–100.
|
|
5886
|
+
:type Weight: int
|
|
5887
|
+
:param _CreatedOn: Record creation time.
|
|
5888
|
+
:type CreatedOn: str
|
|
5889
|
+
:param _UpdatedOn: Record update time.
|
|
5890
|
+
:type UpdatedOn: str
|
|
5891
|
+
:param _Enabled: 0 suspend 1 enable.
|
|
5892
|
+
:type Enabled: int
|
|
5893
|
+
:param _Remark: Remarks
|
|
5894
|
+
:type Remark: str
|
|
5895
|
+
"""
|
|
5896
|
+
self._RecordId = None
|
|
5897
|
+
self._ZoneId = None
|
|
5898
|
+
self._SubDomain = None
|
|
5899
|
+
self._RecordType = None
|
|
5900
|
+
self._RecordValue = None
|
|
5901
|
+
self._TTL = None
|
|
5902
|
+
self._MX = None
|
|
5903
|
+
self._Weight = None
|
|
5904
|
+
self._CreatedOn = None
|
|
5905
|
+
self._UpdatedOn = None
|
|
5906
|
+
self._Enabled = None
|
|
5907
|
+
self._Remark = None
|
|
5908
|
+
|
|
5909
|
+
@property
|
|
5910
|
+
def RecordId(self):
|
|
5911
|
+
"""Record ID.
|
|
5912
|
+
:rtype: str
|
|
5913
|
+
"""
|
|
5914
|
+
return self._RecordId
|
|
5915
|
+
|
|
5916
|
+
@RecordId.setter
|
|
5917
|
+
def RecordId(self, RecordId):
|
|
5918
|
+
self._RecordId = RecordId
|
|
5919
|
+
|
|
5920
|
+
@property
|
|
5921
|
+
def ZoneId(self):
|
|
5922
|
+
"""Private domain ID, which is in zone-xxxxxxxx format.
|
|
5923
|
+
:rtype: str
|
|
5924
|
+
"""
|
|
5925
|
+
return self._ZoneId
|
|
5926
|
+
|
|
5927
|
+
@ZoneId.setter
|
|
5928
|
+
def ZoneId(self, ZoneId):
|
|
5929
|
+
self._ZoneId = ZoneId
|
|
5930
|
+
|
|
5931
|
+
@property
|
|
5932
|
+
def SubDomain(self):
|
|
5933
|
+
"""Subdomain name.
|
|
5934
|
+
:rtype: str
|
|
5935
|
+
"""
|
|
5936
|
+
return self._SubDomain
|
|
5937
|
+
|
|
5938
|
+
@SubDomain.setter
|
|
5939
|
+
def SubDomain(self, SubDomain):
|
|
5940
|
+
self._SubDomain = SubDomain
|
|
5941
|
+
|
|
5942
|
+
@property
|
|
5943
|
+
def RecordType(self):
|
|
5944
|
+
"""Record type. Valid values: A, AAAA, CNAME, MX, TXT, and PTR.
|
|
5945
|
+
:rtype: str
|
|
5946
|
+
"""
|
|
5947
|
+
return self._RecordType
|
|
5948
|
+
|
|
5949
|
+
@RecordType.setter
|
|
5950
|
+
def RecordType(self, RecordType):
|
|
5951
|
+
self._RecordType = RecordType
|
|
5952
|
+
|
|
5953
|
+
@property
|
|
5954
|
+
def RecordValue(self):
|
|
5955
|
+
"""Record value.
|
|
5956
|
+
:rtype: str
|
|
5957
|
+
"""
|
|
5958
|
+
return self._RecordValue
|
|
5959
|
+
|
|
5960
|
+
@RecordValue.setter
|
|
5961
|
+
def RecordValue(self, RecordValue):
|
|
5962
|
+
self._RecordValue = RecordValue
|
|
5963
|
+
|
|
5964
|
+
@property
|
|
5965
|
+
def TTL(self):
|
|
5966
|
+
"""Record cache time. The smaller the value, the faster the record will take effect. Value range: 1-86,400s. Default value: 600.
|
|
5967
|
+
:rtype: int
|
|
5968
|
+
"""
|
|
5969
|
+
return self._TTL
|
|
5970
|
+
|
|
5971
|
+
@TTL.setter
|
|
5972
|
+
def TTL(self, TTL):
|
|
5973
|
+
self._TTL = TTL
|
|
5974
|
+
|
|
5975
|
+
@property
|
|
5976
|
+
def MX(self):
|
|
5977
|
+
"""MX priority, which is required when the record type is mx. valid values: 5, 10, 15, 20, 30, 40, and 50.
|
|
5978
|
+
:rtype: int
|
|
5979
|
+
"""
|
|
5980
|
+
return self._MX
|
|
5981
|
+
|
|
5982
|
+
@MX.setter
|
|
5983
|
+
def MX(self, MX):
|
|
5984
|
+
self._MX = MX
|
|
5985
|
+
|
|
5986
|
+
@property
|
|
5987
|
+
def Weight(self):
|
|
5988
|
+
"""Record weight. valid values: 1–100.
|
|
5989
|
+
:rtype: int
|
|
5990
|
+
"""
|
|
5991
|
+
return self._Weight
|
|
5992
|
+
|
|
5993
|
+
@Weight.setter
|
|
5994
|
+
def Weight(self, Weight):
|
|
5995
|
+
self._Weight = Weight
|
|
5996
|
+
|
|
5997
|
+
@property
|
|
5998
|
+
def CreatedOn(self):
|
|
5999
|
+
"""Record creation time.
|
|
6000
|
+
:rtype: str
|
|
6001
|
+
"""
|
|
6002
|
+
return self._CreatedOn
|
|
6003
|
+
|
|
6004
|
+
@CreatedOn.setter
|
|
6005
|
+
def CreatedOn(self, CreatedOn):
|
|
6006
|
+
self._CreatedOn = CreatedOn
|
|
6007
|
+
|
|
6008
|
+
@property
|
|
6009
|
+
def UpdatedOn(self):
|
|
6010
|
+
"""Record update time.
|
|
6011
|
+
:rtype: str
|
|
6012
|
+
"""
|
|
6013
|
+
return self._UpdatedOn
|
|
6014
|
+
|
|
6015
|
+
@UpdatedOn.setter
|
|
6016
|
+
def UpdatedOn(self, UpdatedOn):
|
|
6017
|
+
self._UpdatedOn = UpdatedOn
|
|
6018
|
+
|
|
6019
|
+
@property
|
|
6020
|
+
def Enabled(self):
|
|
6021
|
+
"""0 suspend 1 enable.
|
|
6022
|
+
:rtype: int
|
|
6023
|
+
"""
|
|
6024
|
+
return self._Enabled
|
|
6025
|
+
|
|
6026
|
+
@Enabled.setter
|
|
6027
|
+
def Enabled(self, Enabled):
|
|
6028
|
+
self._Enabled = Enabled
|
|
6029
|
+
|
|
6030
|
+
@property
|
|
6031
|
+
def Remark(self):
|
|
6032
|
+
"""Remarks
|
|
6033
|
+
:rtype: str
|
|
6034
|
+
"""
|
|
6035
|
+
return self._Remark
|
|
6036
|
+
|
|
6037
|
+
@Remark.setter
|
|
6038
|
+
def Remark(self, Remark):
|
|
6039
|
+
self._Remark = Remark
|
|
6040
|
+
|
|
6041
|
+
|
|
6042
|
+
def _deserialize(self, params):
|
|
6043
|
+
self._RecordId = params.get("RecordId")
|
|
6044
|
+
self._ZoneId = params.get("ZoneId")
|
|
6045
|
+
self._SubDomain = params.get("SubDomain")
|
|
6046
|
+
self._RecordType = params.get("RecordType")
|
|
6047
|
+
self._RecordValue = params.get("RecordValue")
|
|
6048
|
+
self._TTL = params.get("TTL")
|
|
6049
|
+
self._MX = params.get("MX")
|
|
6050
|
+
self._Weight = params.get("Weight")
|
|
6051
|
+
self._CreatedOn = params.get("CreatedOn")
|
|
6052
|
+
self._UpdatedOn = params.get("UpdatedOn")
|
|
6053
|
+
self._Enabled = params.get("Enabled")
|
|
6054
|
+
self._Remark = params.get("Remark")
|
|
6055
|
+
memeber_set = set(params.keys())
|
|
6056
|
+
for name, value in vars(self).items():
|
|
6057
|
+
property_name = name[1:]
|
|
6058
|
+
if property_name in memeber_set:
|
|
6059
|
+
memeber_set.remove(property_name)
|
|
6060
|
+
if len(memeber_set) > 0:
|
|
6061
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6062
|
+
|
|
6063
|
+
|
|
6064
|
+
|
|
5768
6065
|
class RegionInfo(AbstractModel):
|
|
5769
6066
|
"""Region information
|
|
5770
6067
|
|
|
@@ -555,6 +555,29 @@ class PrivatednsClient(AbstractClient):
|
|
|
555
555
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
556
556
|
|
|
557
557
|
|
|
558
|
+
def DescribeRecord(self, request):
|
|
559
|
+
"""This API is used to obtain the private domain records.
|
|
560
|
+
|
|
561
|
+
:param request: Request instance for DescribeRecord.
|
|
562
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribeRecordRequest`
|
|
563
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DescribeRecordResponse`
|
|
564
|
+
|
|
565
|
+
"""
|
|
566
|
+
try:
|
|
567
|
+
params = request._serialize()
|
|
568
|
+
headers = request.headers
|
|
569
|
+
body = self.call("DescribeRecord", params, headers=headers)
|
|
570
|
+
response = json.loads(body)
|
|
571
|
+
model = models.DescribeRecordResponse()
|
|
572
|
+
model._deserialize(response["Response"])
|
|
573
|
+
return model
|
|
574
|
+
except Exception as e:
|
|
575
|
+
if isinstance(e, TencentCloudSDKException):
|
|
576
|
+
raise
|
|
577
|
+
else:
|
|
578
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
579
|
+
|
|
580
|
+
|
|
558
581
|
def DescribeRequestData(self, request):
|
|
559
582
|
"""This API is used to get the DNS request volume of a private domain.
|
|
560
583
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=WhgvdQMwtbIC7wXciV7xAevruValYwvsSbTnmXD140M,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
|
|
@@ -389,7 +389,7 @@ tencentcloud/mdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
389
389
|
tencentcloud/mdl/v20200326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
390
|
tencentcloud/mdl/v20200326/errorcodes.py,sha256=UrwmJD3pUUir_wADh17-T-gweDNkYkXPTVuEs4LsMGM,3178
|
|
391
391
|
tencentcloud/mdl/v20200326/mdl_client.py,sha256=ro3UE9TgUFta27ALvot7xwxrSqVs5VxrRrWnrv8Lc-Q,32730
|
|
392
|
-
tencentcloud/mdl/v20200326/models.py,sha256=
|
|
392
|
+
tencentcloud/mdl/v20200326/models.py,sha256=I09MiFFiTTCU2RsPK1rfiHa7zHGJ3HUDbI-f_IEuGMQ,414150
|
|
393
393
|
tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
394
394
|
tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
395
|
tencentcloud/mdp/v20200527/errorcodes.py,sha256=O-b8jxiEAa2BWaMCv-Wl1gWTikqX5kIAFUq7bGaswpE,2124
|
|
@@ -442,8 +442,8 @@ tencentcloud/postgres/v20170312/postgres_client.py,sha256=AN7SNPDorzf2Gs1QkCW-fV
|
|
|
442
442
|
tencentcloud/privatedns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
443
|
tencentcloud/privatedns/v20201028/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
444
|
tencentcloud/privatedns/v20201028/errorcodes.py,sha256=aDEaYiBKIOFSpxw9Bgnv9d6nIGg08S8W9rFkvfE84ls,9343
|
|
445
|
-
tencentcloud/privatedns/v20201028/models.py,sha256=
|
|
446
|
-
tencentcloud/privatedns/v20201028/privatedns_client.py,sha256=
|
|
445
|
+
tencentcloud/privatedns/v20201028/models.py,sha256=vkSt4qtYq9HyUl0GmWogS0fPcKNebsvLFOgF5LB4cmY,186681
|
|
446
|
+
tencentcloud/privatedns/v20201028/privatedns_client.py,sha256=2WSR5pGRfZD6d0Ha4eI8jGJptxCnC2oKz_C9fto4L98,30200
|
|
447
447
|
tencentcloud/pts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
448
448
|
tencentcloud/pts/v20210728/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
449
449
|
tencentcloud/pts/v20210728/errorcodes.py,sha256=kbsyWHewtEaQI-KwlSHTYHZp9-xsqw4P86StO5hEejg,2280
|
|
@@ -659,7 +659,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
659
659
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
660
660
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
661
661
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
662
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
663
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
664
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
665
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
662
|
+
tencentcloud_sdk_python_intl_en-3.0.1213.dist-info/METADATA,sha256=An5X9rsUomIdDuYIPc1HHY5XetFhYfI0mXzQZ6XlPFw,1628
|
|
663
|
+
tencentcloud_sdk_python_intl_en-3.0.1213.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
664
|
+
tencentcloud_sdk_python_intl_en-3.0.1213.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
665
|
+
tencentcloud_sdk_python_intl_en-3.0.1213.dist-info/RECORD,,
|
|
File without changes
|