tencentcloud-sdk-python-intl-en 3.0.1088__py2.py3-none-any.whl → 3.0.1089__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/cfs/v20190719/models.py +160 -2
- tencentcloud/dbbrain/v20210527/models.py +2 -2
- tencentcloud/mongodb/v20190725/models.py +2 -2
- {tencentcloud_sdk_python_intl_en-3.0.1088.dist-info → tencentcloud_sdk_python_intl_en-3.0.1089.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1088.dist-info → tencentcloud_sdk_python_intl_en-3.0.1089.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1088.dist-info → tencentcloud_sdk_python_intl_en-3.0.1089.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1088.dist-info → tencentcloud_sdk_python_intl_en-3.0.1089.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -18,6 +18,72 @@ import warnings
|
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class AutoScaleUpRule(AbstractModel):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(self):
|
|
27
|
+
r"""
|
|
28
|
+
:param _Status:
|
|
29
|
+
:type Status: str
|
|
30
|
+
:param _ScaleThreshold:
|
|
31
|
+
:type ScaleThreshold: int
|
|
32
|
+
:param _TargetThreshold:
|
|
33
|
+
:type TargetThreshold: int
|
|
34
|
+
"""
|
|
35
|
+
self._Status = None
|
|
36
|
+
self._ScaleThreshold = None
|
|
37
|
+
self._TargetThreshold = None
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def Status(self):
|
|
41
|
+
"""
|
|
42
|
+
:rtype: str
|
|
43
|
+
"""
|
|
44
|
+
return self._Status
|
|
45
|
+
|
|
46
|
+
@Status.setter
|
|
47
|
+
def Status(self, Status):
|
|
48
|
+
self._Status = Status
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
def ScaleThreshold(self):
|
|
52
|
+
"""
|
|
53
|
+
:rtype: int
|
|
54
|
+
"""
|
|
55
|
+
return self._ScaleThreshold
|
|
56
|
+
|
|
57
|
+
@ScaleThreshold.setter
|
|
58
|
+
def ScaleThreshold(self, ScaleThreshold):
|
|
59
|
+
self._ScaleThreshold = ScaleThreshold
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
def TargetThreshold(self):
|
|
63
|
+
"""
|
|
64
|
+
:rtype: int
|
|
65
|
+
"""
|
|
66
|
+
return self._TargetThreshold
|
|
67
|
+
|
|
68
|
+
@TargetThreshold.setter
|
|
69
|
+
def TargetThreshold(self, TargetThreshold):
|
|
70
|
+
self._TargetThreshold = TargetThreshold
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def _deserialize(self, params):
|
|
74
|
+
self._Status = params.get("Status")
|
|
75
|
+
self._ScaleThreshold = params.get("ScaleThreshold")
|
|
76
|
+
self._TargetThreshold = params.get("TargetThreshold")
|
|
77
|
+
memeber_set = set(params.keys())
|
|
78
|
+
for name, value in vars(self).items():
|
|
79
|
+
property_name = name[1:]
|
|
80
|
+
if property_name in memeber_set:
|
|
81
|
+
memeber_set.remove(property_name)
|
|
82
|
+
if len(memeber_set) > 0:
|
|
83
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
21
87
|
class AutoSnapshotPolicyInfo(AbstractModel):
|
|
22
88
|
"""Snapshot policy information
|
|
23
89
|
|
|
@@ -3097,10 +3163,19 @@ class DescribeCfsFileSystemsRequest(AbstractModel):
|
|
|
3097
3163
|
:type VpcId: str
|
|
3098
3164
|
:param _SubnetId: Subnet ID
|
|
3099
3165
|
:type SubnetId: str
|
|
3166
|
+
:param _Offset:
|
|
3167
|
+
:type Offset: int
|
|
3168
|
+
:param _Limit:
|
|
3169
|
+
:type Limit: int
|
|
3170
|
+
:param _CreationToken:
|
|
3171
|
+
:type CreationToken: str
|
|
3100
3172
|
"""
|
|
3101
3173
|
self._FileSystemId = None
|
|
3102
3174
|
self._VpcId = None
|
|
3103
3175
|
self._SubnetId = None
|
|
3176
|
+
self._Offset = None
|
|
3177
|
+
self._Limit = None
|
|
3178
|
+
self._CreationToken = None
|
|
3104
3179
|
|
|
3105
3180
|
@property
|
|
3106
3181
|
def FileSystemId(self):
|
|
@@ -3135,11 +3210,47 @@ class DescribeCfsFileSystemsRequest(AbstractModel):
|
|
|
3135
3210
|
def SubnetId(self, SubnetId):
|
|
3136
3211
|
self._SubnetId = SubnetId
|
|
3137
3212
|
|
|
3213
|
+
@property
|
|
3214
|
+
def Offset(self):
|
|
3215
|
+
"""
|
|
3216
|
+
:rtype: int
|
|
3217
|
+
"""
|
|
3218
|
+
return self._Offset
|
|
3219
|
+
|
|
3220
|
+
@Offset.setter
|
|
3221
|
+
def Offset(self, Offset):
|
|
3222
|
+
self._Offset = Offset
|
|
3223
|
+
|
|
3224
|
+
@property
|
|
3225
|
+
def Limit(self):
|
|
3226
|
+
"""
|
|
3227
|
+
:rtype: int
|
|
3228
|
+
"""
|
|
3229
|
+
return self._Limit
|
|
3230
|
+
|
|
3231
|
+
@Limit.setter
|
|
3232
|
+
def Limit(self, Limit):
|
|
3233
|
+
self._Limit = Limit
|
|
3234
|
+
|
|
3235
|
+
@property
|
|
3236
|
+
def CreationToken(self):
|
|
3237
|
+
"""
|
|
3238
|
+
:rtype: str
|
|
3239
|
+
"""
|
|
3240
|
+
return self._CreationToken
|
|
3241
|
+
|
|
3242
|
+
@CreationToken.setter
|
|
3243
|
+
def CreationToken(self, CreationToken):
|
|
3244
|
+
self._CreationToken = CreationToken
|
|
3245
|
+
|
|
3138
3246
|
|
|
3139
3247
|
def _deserialize(self, params):
|
|
3140
3248
|
self._FileSystemId = params.get("FileSystemId")
|
|
3141
3249
|
self._VpcId = params.get("VpcId")
|
|
3142
3250
|
self._SubnetId = params.get("SubnetId")
|
|
3251
|
+
self._Offset = params.get("Offset")
|
|
3252
|
+
self._Limit = params.get("Limit")
|
|
3253
|
+
self._CreationToken = params.get("CreationToken")
|
|
3143
3254
|
memeber_set = set(params.keys())
|
|
3144
3255
|
for name, value in vars(self).items():
|
|
3145
3256
|
property_name = name[1:]
|
|
@@ -3161,7 +3272,7 @@ class DescribeCfsFileSystemsResponse(AbstractModel):
|
|
|
3161
3272
|
:type FileSystems: list of FileSystemInfo
|
|
3162
3273
|
:param _TotalCount: Total number of file systems
|
|
3163
3274
|
:type TotalCount: int
|
|
3164
|
-
:param _RequestId: The unique request ID,
|
|
3275
|
+
: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.
|
|
3165
3276
|
:type RequestId: str
|
|
3166
3277
|
"""
|
|
3167
3278
|
self._FileSystems = None
|
|
@@ -3192,7 +3303,7 @@ class DescribeCfsFileSystemsResponse(AbstractModel):
|
|
|
3192
3303
|
|
|
3193
3304
|
@property
|
|
3194
3305
|
def RequestId(self):
|
|
3195
|
-
"""The unique request ID,
|
|
3306
|
+
"""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.
|
|
3196
3307
|
:rtype: str
|
|
3197
3308
|
"""
|
|
3198
3309
|
return self._RequestId
|
|
@@ -4339,6 +4450,10 @@ class FileSystemInfo(AbstractModel):
|
|
|
4339
4450
|
:type AppId: int
|
|
4340
4451
|
:param _BandwidthLimit: The upper limit on the file system’s throughput, which is determined based on its current usage, and bound resource packs for both storage and throughput
|
|
4341
4452
|
:type BandwidthLimit: float
|
|
4453
|
+
:param _AutoSnapshotPolicyId:
|
|
4454
|
+
:type AutoSnapshotPolicyId: str
|
|
4455
|
+
:param _SnapStatus:
|
|
4456
|
+
:type SnapStatus: str
|
|
4342
4457
|
:param _Capacity: Total capacity of the file system
|
|
4343
4458
|
:type Capacity: int
|
|
4344
4459
|
:param _Tags: File system tag list
|
|
@@ -4348,6 +4463,8 @@ class FileSystemInfo(AbstractModel):
|
|
|
4348
4463
|
:param _TieringDetail: The details about tiered storage.
|
|
4349
4464
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4350
4465
|
:type TieringDetail: :class:`tencentcloud.cfs.v20190719.models.TieringDetailInfo`
|
|
4466
|
+
:param _AutoScaleUpRule:
|
|
4467
|
+
:type AutoScaleUpRule: :class:`tencentcloud.cfs.v20190719.models.AutoScaleUpRule`
|
|
4351
4468
|
"""
|
|
4352
4469
|
self._CreationTime = None
|
|
4353
4470
|
self._CreationToken = None
|
|
@@ -4367,10 +4484,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4367
4484
|
self._KmsKeyId = None
|
|
4368
4485
|
self._AppId = None
|
|
4369
4486
|
self._BandwidthLimit = None
|
|
4487
|
+
self._AutoSnapshotPolicyId = None
|
|
4488
|
+
self._SnapStatus = None
|
|
4370
4489
|
self._Capacity = None
|
|
4371
4490
|
self._Tags = None
|
|
4372
4491
|
self._TieringState = None
|
|
4373
4492
|
self._TieringDetail = None
|
|
4493
|
+
self._AutoScaleUpRule = None
|
|
4374
4494
|
|
|
4375
4495
|
@property
|
|
4376
4496
|
def CreationTime(self):
|
|
@@ -4576,6 +4696,28 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4576
4696
|
def BandwidthLimit(self, BandwidthLimit):
|
|
4577
4697
|
self._BandwidthLimit = BandwidthLimit
|
|
4578
4698
|
|
|
4699
|
+
@property
|
|
4700
|
+
def AutoSnapshotPolicyId(self):
|
|
4701
|
+
"""
|
|
4702
|
+
:rtype: str
|
|
4703
|
+
"""
|
|
4704
|
+
return self._AutoSnapshotPolicyId
|
|
4705
|
+
|
|
4706
|
+
@AutoSnapshotPolicyId.setter
|
|
4707
|
+
def AutoSnapshotPolicyId(self, AutoSnapshotPolicyId):
|
|
4708
|
+
self._AutoSnapshotPolicyId = AutoSnapshotPolicyId
|
|
4709
|
+
|
|
4710
|
+
@property
|
|
4711
|
+
def SnapStatus(self):
|
|
4712
|
+
"""
|
|
4713
|
+
:rtype: str
|
|
4714
|
+
"""
|
|
4715
|
+
return self._SnapStatus
|
|
4716
|
+
|
|
4717
|
+
@SnapStatus.setter
|
|
4718
|
+
def SnapStatus(self, SnapStatus):
|
|
4719
|
+
self._SnapStatus = SnapStatus
|
|
4720
|
+
|
|
4579
4721
|
@property
|
|
4580
4722
|
def Capacity(self):
|
|
4581
4723
|
"""Total capacity of the file system
|
|
@@ -4621,6 +4763,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4621
4763
|
def TieringDetail(self, TieringDetail):
|
|
4622
4764
|
self._TieringDetail = TieringDetail
|
|
4623
4765
|
|
|
4766
|
+
@property
|
|
4767
|
+
def AutoScaleUpRule(self):
|
|
4768
|
+
"""
|
|
4769
|
+
:rtype: :class:`tencentcloud.cfs.v20190719.models.AutoScaleUpRule`
|
|
4770
|
+
"""
|
|
4771
|
+
return self._AutoScaleUpRule
|
|
4772
|
+
|
|
4773
|
+
@AutoScaleUpRule.setter
|
|
4774
|
+
def AutoScaleUpRule(self, AutoScaleUpRule):
|
|
4775
|
+
self._AutoScaleUpRule = AutoScaleUpRule
|
|
4776
|
+
|
|
4624
4777
|
|
|
4625
4778
|
def _deserialize(self, params):
|
|
4626
4779
|
self._CreationTime = params.get("CreationTime")
|
|
@@ -4643,6 +4796,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4643
4796
|
self._KmsKeyId = params.get("KmsKeyId")
|
|
4644
4797
|
self._AppId = params.get("AppId")
|
|
4645
4798
|
self._BandwidthLimit = params.get("BandwidthLimit")
|
|
4799
|
+
self._AutoSnapshotPolicyId = params.get("AutoSnapshotPolicyId")
|
|
4800
|
+
self._SnapStatus = params.get("SnapStatus")
|
|
4646
4801
|
self._Capacity = params.get("Capacity")
|
|
4647
4802
|
if params.get("Tags") is not None:
|
|
4648
4803
|
self._Tags = []
|
|
@@ -4654,6 +4809,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4654
4809
|
if params.get("TieringDetail") is not None:
|
|
4655
4810
|
self._TieringDetail = TieringDetailInfo()
|
|
4656
4811
|
self._TieringDetail._deserialize(params.get("TieringDetail"))
|
|
4812
|
+
if params.get("AutoScaleUpRule") is not None:
|
|
4813
|
+
self._AutoScaleUpRule = AutoScaleUpRule()
|
|
4814
|
+
self._AutoScaleUpRule._deserialize(params.get("AutoScaleUpRule"))
|
|
4657
4815
|
memeber_set = set(params.keys())
|
|
4658
4816
|
for name, value in vars(self).items():
|
|
4659
4817
|
property_name = name[1:]
|
|
@@ -803,7 +803,7 @@ class CreateDBDiagReportTaskResponse(AbstractModel):
|
|
|
803
803
|
:param _AsyncRequestId: Async task request ID, which can be used to query the execution result of an async task.
|
|
804
804
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
805
805
|
:type AsyncRequestId: int
|
|
806
|
-
:param _RequestId: The unique request ID,
|
|
806
|
+
: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.
|
|
807
807
|
:type RequestId: str
|
|
808
808
|
"""
|
|
809
809
|
self._AsyncRequestId = None
|
|
@@ -823,7 +823,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
823
823
|
|
|
824
824
|
@property
|
|
825
825
|
def RequestId(self):
|
|
826
|
-
"""The unique request ID,
|
|
826
|
+
"""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.
|
|
827
827
|
:rtype: str
|
|
828
828
|
"""
|
|
829
829
|
return self._RequestId
|
|
@@ -641,7 +641,7 @@ class CreateBackupDBInstanceResponse(AbstractModel):
|
|
|
641
641
|
r"""
|
|
642
642
|
:param _AsyncRequestId: The status of the queried backup process.
|
|
643
643
|
:type AsyncRequestId: str
|
|
644
|
-
:param _RequestId: The unique request ID,
|
|
644
|
+
: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.
|
|
645
645
|
:type RequestId: str
|
|
646
646
|
"""
|
|
647
647
|
self._AsyncRequestId = None
|
|
@@ -660,7 +660,7 @@ class CreateBackupDBInstanceResponse(AbstractModel):
|
|
|
660
660
|
|
|
661
661
|
@property
|
|
662
662
|
def RequestId(self):
|
|
663
|
-
"""The unique request ID,
|
|
663
|
+
"""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.
|
|
664
664
|
:rtype: str
|
|
665
665
|
"""
|
|
666
666
|
return self._RequestId
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=N9oZmksNI5FxTWOFVPh5-XdDRAZL8Yi-FMUhspZ3MAQ,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
|
|
@@ -93,7 +93,7 @@ tencentcloud/cfs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
93
93
|
tencentcloud/cfs/v20190719/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
94
|
tencentcloud/cfs/v20190719/cfs_client.py,sha256=PBQ-vtY867F-Z_CiI6HYwLKLrsipUdinJOiTeM83VlU,37724
|
|
95
95
|
tencentcloud/cfs/v20190719/errorcodes.py,sha256=mEqGjrXHb7VABRyogGOnlF0AIgzz_hO5gfJHy9pL_xc,16036
|
|
96
|
-
tencentcloud/cfs/v20190719/models.py,sha256=
|
|
96
|
+
tencentcloud/cfs/v20190719/models.py,sha256=UHn0bExQfUTm4Z2bND2XDZFjq5Ej6c9z2YnjmtmO1b8,223993
|
|
97
97
|
tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
98
|
tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
99
|
tencentcloud/cfw/v20190904/cfw_client.py,sha256=sJT-2VZ1-uw2L7uK0h0meiYhIuNSODsS9nl8yuQ_YXk,62187
|
|
@@ -195,7 +195,7 @@ tencentcloud/dbbrain/v20191016/models.py,sha256=oPnA8OvsR44FvInV58ofQ4cwScyERK18
|
|
|
195
195
|
tencentcloud/dbbrain/v20210527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
196
|
tencentcloud/dbbrain/v20210527/dbbrain_client.py,sha256=WFhMh8tZTYYs9AAu8e0taNsSMYDi780rk9E7jx6outk,44305
|
|
197
197
|
tencentcloud/dbbrain/v20210527/errorcodes.py,sha256=cebzJj_dpnlrnpVN5HOQJ0FIeaft2-H0F-dqDwbzf-s,2143
|
|
198
|
-
tencentcloud/dbbrain/v20210527/models.py,sha256
|
|
198
|
+
tencentcloud/dbbrain/v20210527/models.py,sha256=WQnjtlrm4KAaJWPun-zZA5uQndvRCbdccz1CUxdTbPs,334218
|
|
199
199
|
tencentcloud/dc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
200
|
tencentcloud/dc/v20180410/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
201
|
tencentcloud/dc/v20180410/dc_client.py,sha256=nLocZ0TtnGhCLVVRaVpANE1W0ekxswjvBOMrNONU7Rw,18454
|
|
@@ -368,7 +368,7 @@ tencentcloud/mdp/v20200527/models.py,sha256=DBkQbjgMb9qhIsJ-sO6jlKcvKO4MY4XOXI5H
|
|
|
368
368
|
tencentcloud/mongodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
369
|
tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
370
|
tencentcloud/mongodb/v20190725/errorcodes.py,sha256=LvtN-o92px054vlJUUqSpJXIH7f9LEsQoOl8N9lcEC4,7128
|
|
371
|
-
tencentcloud/mongodb/v20190725/models.py,sha256=
|
|
371
|
+
tencentcloud/mongodb/v20190725/models.py,sha256=Ja65rtoGMUkX2zWSJN0d46_VMYAqRQz75UFrn9lbgA8,247934
|
|
372
372
|
tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=yWbOD8BeZdW-LLptFo67bitiBLtkMm_AKMuf6KktexM,29130
|
|
373
373
|
tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
374
374
|
tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -599,7 +599,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
599
599
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
600
600
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
601
601
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
602
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
603
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
604
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
605
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
602
|
+
tencentcloud_sdk_python_intl_en-3.0.1089.dist-info/METADATA,sha256=sbWg-QHqFPNZ4vnF8b3-h-6pU1wwkKV90jU0tY939kk,1628
|
|
603
|
+
tencentcloud_sdk_python_intl_en-3.0.1089.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
604
|
+
tencentcloud_sdk_python_intl_en-3.0.1089.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
605
|
+
tencentcloud_sdk_python_intl_en-3.0.1089.dist-info/RECORD,,
|
|
File without changes
|