tencentcloud-sdk-python-intl-en 3.0.1119__py2.py3-none-any.whl → 3.0.1121__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/billing/v20180709/billing_client.py +23 -0
- tencentcloud/billing/v20180709/models.py +751 -0
- tencentcloud/config/v20220802/config_client.py +23 -0
- tencentcloud/config/v20220802/errorcodes.py +3 -0
- tencentcloud/config/v20220802/models.py +418 -0
- tencentcloud/faceid/v20180301/errorcodes.py +3 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +80 -35
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1121.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1121.dist-info}/RECORD +12 -12
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1121.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1121.dist-info}/top_level.txt +0 -0
|
@@ -3967,33 +3967,33 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3967
3967
|
|
|
3968
3968
|
|
|
3969
3969
|
class PolicyProductList(AbstractModel):
|
|
3970
|
-
"""
|
|
3970
|
+
"""Policy product list entity response parameters structure.
|
|
3971
3971
|
|
|
3972
3972
|
"""
|
|
3973
3973
|
|
|
3974
3974
|
def __init__(self):
|
|
3975
3975
|
r"""
|
|
3976
|
-
:param _PolicyCode:
|
|
3976
|
+
:param _PolicyCode: Dealer policy code.
|
|
3977
3977
|
:type PolicyCode: str
|
|
3978
|
-
:param _ProductCode: Product code
|
|
3978
|
+
:param _ProductCode: Product level 1 code. If the return value is *, any item at this level is included in the policy product range.
|
|
3979
3979
|
:type ProductCode: str
|
|
3980
|
-
:param _ProductName: Product name
|
|
3980
|
+
:param _ProductName: Product level 1 name. If the return value is *, any item at this level is included in the policy product range.
|
|
3981
3981
|
:type ProductName: str
|
|
3982
|
-
:param _SubProductCode:
|
|
3982
|
+
:param _SubProductCode: Product level 2 code. If the return value is *, any item at this level is included in the policy product range.
|
|
3983
3983
|
:type SubProductCode: str
|
|
3984
|
-
:param _SubProductName:
|
|
3984
|
+
:param _SubProductName: Product level 2 name. If the return value is *, any item at this level is included in the policy product range.
|
|
3985
3985
|
:type SubProductName: str
|
|
3986
|
-
:param _ComponentTypeCode:
|
|
3986
|
+
:param _ComponentTypeCode: Product level 3 code. If the return value is *, any item at this level is included in the policy product range.
|
|
3987
3987
|
:type ComponentTypeCode: str
|
|
3988
|
-
:param _ComponentTypeName:
|
|
3988
|
+
:param _ComponentTypeName: Product level 3 name. If the return value is *, any item at this level is included in the policy product range.
|
|
3989
3989
|
:type ComponentTypeName: str
|
|
3990
|
-
:param _ComponentCode:
|
|
3990
|
+
:param _ComponentCode: Product level 4 code. If the return value is *, any item at this level is included in the policy product range.
|
|
3991
3991
|
:type ComponentCode: str
|
|
3992
|
-
:param _ComponentName:
|
|
3992
|
+
:param _ComponentName: Product fourth-level name. If the return value is *, any item under this level is included in the policy product scope.
|
|
3993
3993
|
:type ComponentName: str
|
|
3994
|
-
:param _StartDate: Policy effective
|
|
3994
|
+
:param _StartDate: Policy effective time.
|
|
3995
3995
|
:type StartDate: str
|
|
3996
|
-
:param _EndDate: Policy expiration
|
|
3996
|
+
:param _EndDate: Policy expiration time.
|
|
3997
3997
|
:type EndDate: str
|
|
3998
3998
|
"""
|
|
3999
3999
|
self._PolicyCode = None
|
|
@@ -4010,7 +4010,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4010
4010
|
|
|
4011
4011
|
@property
|
|
4012
4012
|
def PolicyCode(self):
|
|
4013
|
-
"""
|
|
4013
|
+
"""Dealer policy code.
|
|
4014
4014
|
:rtype: str
|
|
4015
4015
|
"""
|
|
4016
4016
|
return self._PolicyCode
|
|
@@ -4021,7 +4021,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4021
4021
|
|
|
4022
4022
|
@property
|
|
4023
4023
|
def ProductCode(self):
|
|
4024
|
-
"""Product code
|
|
4024
|
+
"""Product level 1 code. If the return value is *, any item at this level is included in the policy product range.
|
|
4025
4025
|
:rtype: str
|
|
4026
4026
|
"""
|
|
4027
4027
|
return self._ProductCode
|
|
@@ -4032,7 +4032,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4032
4032
|
|
|
4033
4033
|
@property
|
|
4034
4034
|
def ProductName(self):
|
|
4035
|
-
"""Product name
|
|
4035
|
+
"""Product level 1 name. If the return value is *, any item at this level is included in the policy product range.
|
|
4036
4036
|
:rtype: str
|
|
4037
4037
|
"""
|
|
4038
4038
|
return self._ProductName
|
|
@@ -4043,7 +4043,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4043
4043
|
|
|
4044
4044
|
@property
|
|
4045
4045
|
def SubProductCode(self):
|
|
4046
|
-
"""
|
|
4046
|
+
"""Product level 2 code. If the return value is *, any item at this level is included in the policy product range.
|
|
4047
4047
|
:rtype: str
|
|
4048
4048
|
"""
|
|
4049
4049
|
return self._SubProductCode
|
|
@@ -4054,7 +4054,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4054
4054
|
|
|
4055
4055
|
@property
|
|
4056
4056
|
def SubProductName(self):
|
|
4057
|
-
"""
|
|
4057
|
+
"""Product level 2 name. If the return value is *, any item at this level is included in the policy product range.
|
|
4058
4058
|
:rtype: str
|
|
4059
4059
|
"""
|
|
4060
4060
|
return self._SubProductName
|
|
@@ -4065,7 +4065,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4065
4065
|
|
|
4066
4066
|
@property
|
|
4067
4067
|
def ComponentTypeCode(self):
|
|
4068
|
-
"""
|
|
4068
|
+
"""Product level 3 code. If the return value is *, any item at this level is included in the policy product range.
|
|
4069
4069
|
:rtype: str
|
|
4070
4070
|
"""
|
|
4071
4071
|
return self._ComponentTypeCode
|
|
@@ -4076,7 +4076,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4076
4076
|
|
|
4077
4077
|
@property
|
|
4078
4078
|
def ComponentTypeName(self):
|
|
4079
|
-
"""
|
|
4079
|
+
"""Product level 3 name. If the return value is *, any item at this level is included in the policy product range.
|
|
4080
4080
|
:rtype: str
|
|
4081
4081
|
"""
|
|
4082
4082
|
return self._ComponentTypeName
|
|
@@ -4087,7 +4087,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4087
4087
|
|
|
4088
4088
|
@property
|
|
4089
4089
|
def ComponentCode(self):
|
|
4090
|
-
"""
|
|
4090
|
+
"""Product level 4 code. If the return value is *, any item at this level is included in the policy product range.
|
|
4091
4091
|
:rtype: str
|
|
4092
4092
|
"""
|
|
4093
4093
|
return self._ComponentCode
|
|
@@ -4098,7 +4098,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4098
4098
|
|
|
4099
4099
|
@property
|
|
4100
4100
|
def ComponentName(self):
|
|
4101
|
-
"""
|
|
4101
|
+
"""Product fourth-level name. If the return value is *, any item under this level is included in the policy product scope.
|
|
4102
4102
|
:rtype: str
|
|
4103
4103
|
"""
|
|
4104
4104
|
return self._ComponentName
|
|
@@ -4109,7 +4109,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4109
4109
|
|
|
4110
4110
|
@property
|
|
4111
4111
|
def StartDate(self):
|
|
4112
|
-
"""Policy effective
|
|
4112
|
+
"""Policy effective time.
|
|
4113
4113
|
:rtype: str
|
|
4114
4114
|
"""
|
|
4115
4115
|
return self._StartDate
|
|
@@ -4120,7 +4120,7 @@ class PolicyProductList(AbstractModel):
|
|
|
4120
4120
|
|
|
4121
4121
|
@property
|
|
4122
4122
|
def EndDate(self):
|
|
4123
|
-
"""Policy expiration
|
|
4123
|
+
"""Policy expiration time.
|
|
4124
4124
|
:rtype: str
|
|
4125
4125
|
"""
|
|
4126
4126
|
return self._EndDate
|
|
@@ -5193,26 +5193,32 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
|
|
|
5193
5193
|
|
|
5194
5194
|
def __init__(self):
|
|
5195
5195
|
r"""
|
|
5196
|
-
:param _PolicyCode:
|
|
5196
|
+
:param _PolicyCode: Dealer policy code.
|
|
5197
5197
|
:type PolicyCode: str
|
|
5198
|
-
:param _ProductCode: Product code
|
|
5198
|
+
:param _ProductCode: Product level 1 code.
|
|
5199
5199
|
:type ProductCode: str
|
|
5200
|
-
:param _ProductName: Product name
|
|
5200
|
+
:param _ProductName: Product level 1 name.
|
|
5201
5201
|
:type ProductName: str
|
|
5202
|
-
:param _SubProductCode:
|
|
5202
|
+
:param _SubProductCode: Product level 2 code.
|
|
5203
5203
|
:type SubProductCode: str
|
|
5204
|
-
:param _SubProductName:
|
|
5204
|
+
:param _SubProductName: Product level 2 name.
|
|
5205
5205
|
:type SubProductName: str
|
|
5206
|
+
:param _Page: Page parameter: current page number. The minimum value is 1.
|
|
5207
|
+
:type Page: int
|
|
5208
|
+
:param _PageSize: Page parameter: Indicates the number of entries per page. Value range: [1, 200], default is 200.
|
|
5209
|
+
:type PageSize: int
|
|
5206
5210
|
"""
|
|
5207
5211
|
self._PolicyCode = None
|
|
5208
5212
|
self._ProductCode = None
|
|
5209
5213
|
self._ProductName = None
|
|
5210
5214
|
self._SubProductCode = None
|
|
5211
5215
|
self._SubProductName = None
|
|
5216
|
+
self._Page = None
|
|
5217
|
+
self._PageSize = None
|
|
5212
5218
|
|
|
5213
5219
|
@property
|
|
5214
5220
|
def PolicyCode(self):
|
|
5215
|
-
"""
|
|
5221
|
+
"""Dealer policy code.
|
|
5216
5222
|
:rtype: str
|
|
5217
5223
|
"""
|
|
5218
5224
|
return self._PolicyCode
|
|
@@ -5223,7 +5229,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
|
|
|
5223
5229
|
|
|
5224
5230
|
@property
|
|
5225
5231
|
def ProductCode(self):
|
|
5226
|
-
"""Product code
|
|
5232
|
+
"""Product level 1 code.
|
|
5227
5233
|
:rtype: str
|
|
5228
5234
|
"""
|
|
5229
5235
|
return self._ProductCode
|
|
@@ -5234,7 +5240,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
|
|
|
5234
5240
|
|
|
5235
5241
|
@property
|
|
5236
5242
|
def ProductName(self):
|
|
5237
|
-
"""Product name
|
|
5243
|
+
"""Product level 1 name.
|
|
5238
5244
|
:rtype: str
|
|
5239
5245
|
"""
|
|
5240
5246
|
return self._ProductName
|
|
@@ -5245,7 +5251,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
|
|
|
5245
5251
|
|
|
5246
5252
|
@property
|
|
5247
5253
|
def SubProductCode(self):
|
|
5248
|
-
"""
|
|
5254
|
+
"""Product level 2 code.
|
|
5249
5255
|
:rtype: str
|
|
5250
5256
|
"""
|
|
5251
5257
|
return self._SubProductCode
|
|
@@ -5256,7 +5262,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
|
|
|
5256
5262
|
|
|
5257
5263
|
@property
|
|
5258
5264
|
def SubProductName(self):
|
|
5259
|
-
"""
|
|
5265
|
+
"""Product level 2 name.
|
|
5260
5266
|
:rtype: str
|
|
5261
5267
|
"""
|
|
5262
5268
|
return self._SubProductName
|
|
@@ -5265,6 +5271,28 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
|
|
|
5265
5271
|
def SubProductName(self, SubProductName):
|
|
5266
5272
|
self._SubProductName = SubProductName
|
|
5267
5273
|
|
|
5274
|
+
@property
|
|
5275
|
+
def Page(self):
|
|
5276
|
+
"""Page parameter: current page number. The minimum value is 1.
|
|
5277
|
+
:rtype: int
|
|
5278
|
+
"""
|
|
5279
|
+
return self._Page
|
|
5280
|
+
|
|
5281
|
+
@Page.setter
|
|
5282
|
+
def Page(self, Page):
|
|
5283
|
+
self._Page = Page
|
|
5284
|
+
|
|
5285
|
+
@property
|
|
5286
|
+
def PageSize(self):
|
|
5287
|
+
"""Page parameter: Indicates the number of entries per page. Value range: [1, 200], default is 200.
|
|
5288
|
+
:rtype: int
|
|
5289
|
+
"""
|
|
5290
|
+
return self._PageSize
|
|
5291
|
+
|
|
5292
|
+
@PageSize.setter
|
|
5293
|
+
def PageSize(self, PageSize):
|
|
5294
|
+
self._PageSize = PageSize
|
|
5295
|
+
|
|
5268
5296
|
|
|
5269
5297
|
def _deserialize(self, params):
|
|
5270
5298
|
self._PolicyCode = params.get("PolicyCode")
|
|
@@ -5272,6 +5300,8 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
|
|
|
5272
5300
|
self._ProductName = params.get("ProductName")
|
|
5273
5301
|
self._SubProductCode = params.get("SubProductCode")
|
|
5274
5302
|
self._SubProductName = params.get("SubProductName")
|
|
5303
|
+
self._Page = params.get("Page")
|
|
5304
|
+
self._PageSize = params.get("PageSize")
|
|
5275
5305
|
memeber_set = set(params.keys())
|
|
5276
5306
|
for name, value in vars(self).items():
|
|
5277
5307
|
property_name = name[1:]
|
|
@@ -5289,17 +5319,20 @@ class QueryPolicyProductListByCodeResponse(AbstractModel):
|
|
|
5289
5319
|
|
|
5290
5320
|
def __init__(self):
|
|
5291
5321
|
r"""
|
|
5292
|
-
:param _ProductList:
|
|
5322
|
+
:param _ProductList: Dealer policy product list.
|
|
5293
5323
|
:type ProductList: list of PolicyProductList
|
|
5324
|
+
:param _Total: Total number of data entries
|
|
5325
|
+
:type Total: int
|
|
5294
5326
|
: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.
|
|
5295
5327
|
:type RequestId: str
|
|
5296
5328
|
"""
|
|
5297
5329
|
self._ProductList = None
|
|
5330
|
+
self._Total = None
|
|
5298
5331
|
self._RequestId = None
|
|
5299
5332
|
|
|
5300
5333
|
@property
|
|
5301
5334
|
def ProductList(self):
|
|
5302
|
-
"""
|
|
5335
|
+
"""Dealer policy product list.
|
|
5303
5336
|
:rtype: list of PolicyProductList
|
|
5304
5337
|
"""
|
|
5305
5338
|
return self._ProductList
|
|
@@ -5308,6 +5341,17 @@ class QueryPolicyProductListByCodeResponse(AbstractModel):
|
|
|
5308
5341
|
def ProductList(self, ProductList):
|
|
5309
5342
|
self._ProductList = ProductList
|
|
5310
5343
|
|
|
5344
|
+
@property
|
|
5345
|
+
def Total(self):
|
|
5346
|
+
"""Total number of data entries
|
|
5347
|
+
:rtype: int
|
|
5348
|
+
"""
|
|
5349
|
+
return self._Total
|
|
5350
|
+
|
|
5351
|
+
@Total.setter
|
|
5352
|
+
def Total(self, Total):
|
|
5353
|
+
self._Total = Total
|
|
5354
|
+
|
|
5311
5355
|
@property
|
|
5312
5356
|
def RequestId(self):
|
|
5313
5357
|
"""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.
|
|
@@ -5327,6 +5371,7 @@ class QueryPolicyProductListByCodeResponse(AbstractModel):
|
|
|
5327
5371
|
obj = PolicyProductList()
|
|
5328
5372
|
obj._deserialize(item)
|
|
5329
5373
|
self._ProductList.append(obj)
|
|
5374
|
+
self._Total = params.get("Total")
|
|
5330
5375
|
self._RequestId = params.get("RequestId")
|
|
5331
5376
|
|
|
5332
5377
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=QB6Oa7DH0m2xBMMdteiMSkvNAknM2AloaumXQdjdkdk,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
|
|
@@ -41,9 +41,9 @@ tencentcloud/batch/v20170312/errorcodes.py,sha256=KCF4SIj8Haj6XBUSTVDyNQSPyjWVRy
|
|
|
41
41
|
tencentcloud/batch/v20170312/models.py,sha256=VBOuhs4yPE8IMmY4tzA3AjQHyFga4WjK7p-0PEyg0TI,335284
|
|
42
42
|
tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
43
|
tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
tencentcloud/billing/v20180709/billing_client.py,sha256
|
|
44
|
+
tencentcloud/billing/v20180709/billing_client.py,sha256=-i5g9lXrAKb2K4LdVAcRqa4TfRopjAQCwQ5GXMQ_TUI,27973
|
|
45
45
|
tencentcloud/billing/v20180709/errorcodes.py,sha256=0_fBUU6QDv7eHN-XbnlzTAjC4fungnaoiOpd6IV_Ml4,2102
|
|
46
|
-
tencentcloud/billing/v20180709/models.py,sha256=
|
|
46
|
+
tencentcloud/billing/v20180709/models.py,sha256=8zmbJ2ZKKmxzZcURj4vwuU7RHPGQEgZ2tPeEe6AGVzU,512210
|
|
47
47
|
tencentcloud/cam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
tencentcloud/cam/v20190116/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
49
|
tencentcloud/cam/v20190116/cam_client.py,sha256=2_SK5VkWKGzGZvvSSHfTulZb22s_vKKobT9ZthZ_3U0,75164
|
|
@@ -159,9 +159,9 @@ tencentcloud/common/profile/client_profile.py,sha256=sSL6GthiTm_OL2nOWX4ekfby71F
|
|
|
159
159
|
tencentcloud/common/profile/http_profile.py,sha256=gGWNo7x2zu3QnjMyDrGAIrBaihQv1hQkw55KovqhB1I,1893
|
|
160
160
|
tencentcloud/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
161
|
tencentcloud/config/v20220802/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
|
-
tencentcloud/config/v20220802/config_client.py,sha256=
|
|
163
|
-
tencentcloud/config/v20220802/errorcodes.py,sha256=
|
|
164
|
-
tencentcloud/config/v20220802/models.py,sha256=
|
|
162
|
+
tencentcloud/config/v20220802/config_client.py,sha256=EqNS0_dxCC84CccXu8d-oFyUPmgwkn_hua3peHfG4QY,6593
|
|
163
|
+
tencentcloud/config/v20220802/errorcodes.py,sha256=CCQqDWvDIh72Z0PZDMfaPAWrW38afRsrwDD_g8Z1khY,1078
|
|
164
|
+
tencentcloud/config/v20220802/models.py,sha256=v6T41o0EgiYl8rnUdtWedjuZJiF_RyKkVWhXccFvf6g,85344
|
|
165
165
|
tencentcloud/controlcenter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
166
|
tencentcloud/controlcenter/v20230110/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
167
|
tencentcloud/controlcenter/v20230110/controlcenter_client.py,sha256=brsNDrz2WCSmIRGCg2Zne0GN9mQfKtTVQpmVQ67y4Cw,2030
|
|
@@ -282,7 +282,7 @@ tencentcloud/facefusion/v20220927/facefusion_client.py,sha256=s2jNN_ZTuxh-RV9Wh4
|
|
|
282
282
|
tencentcloud/facefusion/v20220927/models.py,sha256=dNoH82457_skQb1UgUc92iIIdSRpObCBCv3575Z-Crc,44203
|
|
283
283
|
tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
284
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
|
-
tencentcloud/faceid/v20180301/errorcodes.py,sha256=
|
|
285
|
+
tencentcloud/faceid/v20180301/errorcodes.py,sha256=if59ahLlNuG4TVb3s0bhJCMW1xLyzLjogKgDud_YkTA,9962
|
|
286
286
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=Zto1akPPCqRbpysgrABFKtz3f-x0Rb-G8pfnPe15RtU,24130
|
|
287
287
|
tencentcloud/faceid/v20180301/models.py,sha256=DkJg2NuUFck4XONGyu6pY5BdyA5oZFcVzo6b0iGCzE8,382368
|
|
288
288
|
tencentcloud/gaap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -324,7 +324,7 @@ tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
324
324
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
325
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=eazVeg5nmU-4wX7XlJS_LUI_dGPd2x0ITg4E7BVSQLY,5674
|
|
326
326
|
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=Q-9lRpTLcvZwgXtNp-tXzOSHKy5hIAvcI_OtVBUOzuc,31061
|
|
327
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
327
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=J1rPHsnx2A4a-faeFGOJk_QRRQE7vQu3iqhO273XEGw,197370
|
|
328
328
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
329
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
330
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
|
|
@@ -614,7 +614,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
614
614
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
615
615
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
616
616
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
617
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
618
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
619
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
620
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
617
|
+
tencentcloud_sdk_python_intl_en-3.0.1121.dist-info/METADATA,sha256=_xGUSvrGU5qKn2GKaYoiqNCaBVb3xl-Apr6XzboVilw,1628
|
|
618
|
+
tencentcloud_sdk_python_intl_en-3.0.1121.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
619
|
+
tencentcloud_sdk_python_intl_en-3.0.1121.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
620
|
+
tencentcloud_sdk_python_intl_en-3.0.1121.dist-info/RECORD,,
|
|
File without changes
|