tencentcloud-sdk-python-intl-en 3.0.1070__py2.py3-none-any.whl → 3.0.1072__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/apigateway/v20180808/models.py +19 -2
- tencentcloud/faceid/v20180301/models.py +63 -0
- tencentcloud/tcss/v20201101/models.py +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1070.dist-info → tencentcloud_sdk_python_intl_en-3.0.1072.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1070.dist-info → tencentcloud_sdk_python_intl_en-3.0.1072.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1070.dist-info → tencentcloud_sdk_python_intl_en-3.0.1072.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1070.dist-info → tencentcloud_sdk_python_intl_en-3.0.1072.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -3986,15 +3986,18 @@ class CreateApiKeyRequest(AbstractModel):
|
|
|
3986
3986
|
:type SecretName: str
|
|
3987
3987
|
:param _AccessKeyType: Key type. Valid values: auto, manual (custom key). Default value: auto.
|
|
3988
3988
|
:type AccessKeyType: str
|
|
3989
|
-
:param _AccessKeyId: Custom key ID, which is required if `AccessKeyType` is `manual`. It can contain 5
|
|
3989
|
+
:param _AccessKeyId: Custom key ID, which is required if `AccessKeyType` is `manual`. It can contain 5-50 letters, digits, and underscores.
|
|
3990
3990
|
:type AccessKeyId: str
|
|
3991
|
-
:param _AccessKeySecret: Custom key, which is required if `AccessKeyType` is `manual`. It can contain 10
|
|
3991
|
+
:param _AccessKeySecret: Custom key, which is required if `AccessKeyType` is `manual`. It can contain 10-50 letters, digits, and underscores.
|
|
3992
3992
|
:type AccessKeySecret: str
|
|
3993
|
+
:param _Tags:
|
|
3994
|
+
:type Tags: list of Tag
|
|
3993
3995
|
"""
|
|
3994
3996
|
self._SecretName = None
|
|
3995
3997
|
self._AccessKeyType = None
|
|
3996
3998
|
self._AccessKeyId = None
|
|
3997
3999
|
self._AccessKeySecret = None
|
|
4000
|
+
self._Tags = None
|
|
3998
4001
|
|
|
3999
4002
|
@property
|
|
4000
4003
|
def SecretName(self):
|
|
@@ -4028,12 +4031,26 @@ class CreateApiKeyRequest(AbstractModel):
|
|
|
4028
4031
|
def AccessKeySecret(self, AccessKeySecret):
|
|
4029
4032
|
self._AccessKeySecret = AccessKeySecret
|
|
4030
4033
|
|
|
4034
|
+
@property
|
|
4035
|
+
def Tags(self):
|
|
4036
|
+
return self._Tags
|
|
4037
|
+
|
|
4038
|
+
@Tags.setter
|
|
4039
|
+
def Tags(self, Tags):
|
|
4040
|
+
self._Tags = Tags
|
|
4041
|
+
|
|
4031
4042
|
|
|
4032
4043
|
def _deserialize(self, params):
|
|
4033
4044
|
self._SecretName = params.get("SecretName")
|
|
4034
4045
|
self._AccessKeyType = params.get("AccessKeyType")
|
|
4035
4046
|
self._AccessKeyId = params.get("AccessKeyId")
|
|
4036
4047
|
self._AccessKeySecret = params.get("AccessKeySecret")
|
|
4048
|
+
if params.get("Tags") is not None:
|
|
4049
|
+
self._Tags = []
|
|
4050
|
+
for item in params.get("Tags"):
|
|
4051
|
+
obj = Tag()
|
|
4052
|
+
obj._deserialize(item)
|
|
4053
|
+
self._Tags.append(obj)
|
|
4037
4054
|
memeber_set = set(params.keys())
|
|
4038
4055
|
for name, value in vars(self).items():
|
|
4039
4056
|
property_name = name[1:]
|
|
@@ -459,6 +459,17 @@ This feature applies only to Hong Kong (China) identity cards, Malaysian identit
|
|
|
459
459
|
:type DisableCheckOcrWarnings: bool
|
|
460
460
|
:param _Extra: A passthrough field, which is returned together with the verification result and can contain up to 1,024 bits.
|
|
461
461
|
:type Extra: str
|
|
462
|
+
:param _ActionList: This interface is used to control th action sequences.
|
|
463
|
+
Action types are as follows:
|
|
464
|
+
"blink"
|
|
465
|
+
"mouth"
|
|
466
|
+
"nod"
|
|
467
|
+
"shake"
|
|
468
|
+
You can choose 1-2 actions out of the four.
|
|
469
|
+
Single action example: "blink"
|
|
470
|
+
Multiple action example: "blink,mouth"
|
|
471
|
+
The default value is blink. The different action types passed in this parameter take effect only when the SecurityLevel is 2 or 4; otherwise, the interface reports an error.
|
|
472
|
+
:type ActionList: str
|
|
462
473
|
"""
|
|
463
474
|
self._CheckMode = None
|
|
464
475
|
self._SecurityLevel = None
|
|
@@ -468,6 +479,7 @@ This feature applies only to Hong Kong (China) identity cards, Malaysian identit
|
|
|
468
479
|
self._DisableChangeOcrResult = None
|
|
469
480
|
self._DisableCheckOcrWarnings = None
|
|
470
481
|
self._Extra = None
|
|
482
|
+
self._ActionList = None
|
|
471
483
|
|
|
472
484
|
@property
|
|
473
485
|
def CheckMode(self):
|
|
@@ -537,6 +549,14 @@ This feature applies only to Hong Kong (China) identity cards, Malaysian identit
|
|
|
537
549
|
def Extra(self, Extra):
|
|
538
550
|
self._Extra = Extra
|
|
539
551
|
|
|
552
|
+
@property
|
|
553
|
+
def ActionList(self):
|
|
554
|
+
return self._ActionList
|
|
555
|
+
|
|
556
|
+
@ActionList.setter
|
|
557
|
+
def ActionList(self, ActionList):
|
|
558
|
+
self._ActionList = ActionList
|
|
559
|
+
|
|
540
560
|
|
|
541
561
|
def _deserialize(self, params):
|
|
542
562
|
self._CheckMode = params.get("CheckMode")
|
|
@@ -547,6 +567,7 @@ This feature applies only to Hong Kong (China) identity cards, Malaysian identit
|
|
|
547
567
|
self._DisableChangeOcrResult = params.get("DisableChangeOcrResult")
|
|
548
568
|
self._DisableCheckOcrWarnings = params.get("DisableCheckOcrWarnings")
|
|
549
569
|
self._Extra = params.get("Extra")
|
|
570
|
+
self._ActionList = params.get("ActionList")
|
|
550
571
|
memeber_set = set(params.keys())
|
|
551
572
|
for name, value in vars(self).items():
|
|
552
573
|
property_name = name[1:]
|
|
@@ -3122,11 +3143,23 @@ Default value: `4`.
|
|
|
3122
3143
|
:type Image: str
|
|
3123
3144
|
:param _Extra: The pass-through parameter, which can be omitted if there are no special requirements.
|
|
3124
3145
|
:type Extra: str
|
|
3146
|
+
:param _ActionList: This interface is used to control th action sequences.
|
|
3147
|
+
Action types are as follows:
|
|
3148
|
+
"blink"
|
|
3149
|
+
"mouth"
|
|
3150
|
+
"nod"
|
|
3151
|
+
"shake"
|
|
3152
|
+
You can choose 1-2 actions out of the four.
|
|
3153
|
+
Single action example: "blink"
|
|
3154
|
+
Multiple action example: "blink,mouth"
|
|
3155
|
+
The default value is blink. The different action types passed in this parameter take effect only when the SecurityLevel is 2 or 4; otherwise, the interface reports an error.
|
|
3156
|
+
:type ActionList: str
|
|
3125
3157
|
"""
|
|
3126
3158
|
self._CheckMode = None
|
|
3127
3159
|
self._SecureLevel = None
|
|
3128
3160
|
self._Image = None
|
|
3129
3161
|
self._Extra = None
|
|
3162
|
+
self._ActionList = None
|
|
3130
3163
|
|
|
3131
3164
|
@property
|
|
3132
3165
|
def CheckMode(self):
|
|
@@ -3160,12 +3193,21 @@ Default value: `4`.
|
|
|
3160
3193
|
def Extra(self, Extra):
|
|
3161
3194
|
self._Extra = Extra
|
|
3162
3195
|
|
|
3196
|
+
@property
|
|
3197
|
+
def ActionList(self):
|
|
3198
|
+
return self._ActionList
|
|
3199
|
+
|
|
3200
|
+
@ActionList.setter
|
|
3201
|
+
def ActionList(self, ActionList):
|
|
3202
|
+
self._ActionList = ActionList
|
|
3203
|
+
|
|
3163
3204
|
|
|
3164
3205
|
def _deserialize(self, params):
|
|
3165
3206
|
self._CheckMode = params.get("CheckMode")
|
|
3166
3207
|
self._SecureLevel = params.get("SecureLevel")
|
|
3167
3208
|
self._Image = params.get("Image")
|
|
3168
3209
|
self._Extra = params.get("Extra")
|
|
3210
|
+
self._ActionList = params.get("ActionList")
|
|
3169
3211
|
memeber_set = set(params.keys())
|
|
3170
3212
|
for name, value in vars(self).items():
|
|
3171
3213
|
property_name = name[1:]
|
|
@@ -7799,6 +7841,17 @@ Example: HKIDCard
|
|
|
7799
7841
|
:type Language: str
|
|
7800
7842
|
:param _AutoDowngrade: Automatic downgrade mode, with the following parameter values: 1: Downgrade to silent live mode; 2: Disable downgrade mode. The default value is 1.
|
|
7801
7843
|
:type AutoDowngrade: int
|
|
7844
|
+
:param _ActionList: This interface is used to control th action sequences.
|
|
7845
|
+
Action types are as follows:
|
|
7846
|
+
"blink"
|
|
7847
|
+
"mouth"
|
|
7848
|
+
"nod"
|
|
7849
|
+
"shake"
|
|
7850
|
+
You can choose 1-2 actions out of the four.
|
|
7851
|
+
Single action example: "blink"
|
|
7852
|
+
Multiple action example: "blink,mouth"
|
|
7853
|
+
The default value is blink. The different action types passed in this parameter take effect only when the SecurityLevel is 2, 4, or 5; otherwise, the interface reports an error.
|
|
7854
|
+
:type ActionList: str
|
|
7802
7855
|
"""
|
|
7803
7856
|
self._AutoSkipStartPage = None
|
|
7804
7857
|
self._AutoSkip = None
|
|
@@ -7811,6 +7864,7 @@ Example: HKIDCard
|
|
|
7811
7864
|
self._ThemeColor = None
|
|
7812
7865
|
self._Language = None
|
|
7813
7866
|
self._AutoDowngrade = None
|
|
7867
|
+
self._ActionList = None
|
|
7814
7868
|
|
|
7815
7869
|
@property
|
|
7816
7870
|
def AutoSkipStartPage(self):
|
|
@@ -7900,6 +7954,14 @@ Example: HKIDCard
|
|
|
7900
7954
|
def AutoDowngrade(self, AutoDowngrade):
|
|
7901
7955
|
self._AutoDowngrade = AutoDowngrade
|
|
7902
7956
|
|
|
7957
|
+
@property
|
|
7958
|
+
def ActionList(self):
|
|
7959
|
+
return self._ActionList
|
|
7960
|
+
|
|
7961
|
+
@ActionList.setter
|
|
7962
|
+
def ActionList(self, ActionList):
|
|
7963
|
+
self._ActionList = ActionList
|
|
7964
|
+
|
|
7903
7965
|
|
|
7904
7966
|
def _deserialize(self, params):
|
|
7905
7967
|
self._AutoSkipStartPage = params.get("AutoSkipStartPage")
|
|
@@ -7913,6 +7975,7 @@ Example: HKIDCard
|
|
|
7913
7975
|
self._ThemeColor = params.get("ThemeColor")
|
|
7914
7976
|
self._Language = params.get("Language")
|
|
7915
7977
|
self._AutoDowngrade = params.get("AutoDowngrade")
|
|
7978
|
+
self._ActionList = params.get("ActionList")
|
|
7916
7979
|
memeber_set = set(params.keys())
|
|
7917
7980
|
for name, value in vars(self).items():
|
|
7918
7981
|
property_name = name[1:]
|
|
@@ -20120,7 +20120,7 @@ class DescribeAssetImageRegistryListExportResponse(AbstractModel):
|
|
|
20120
20120
|
:param _DownloadUrl: Excel file download URL
|
|
20121
20121
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
20122
20122
|
:type DownloadUrl: str
|
|
20123
|
-
:param _RequestId: The unique request ID,
|
|
20123
|
+
: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.
|
|
20124
20124
|
:type RequestId: str
|
|
20125
20125
|
"""
|
|
20126
20126
|
self._DownloadUrl = None
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=PIdkhXsKImkCrYWRPWap7JK5mEhDyX6u79LE6JajR7c,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
|
|
@@ -23,7 +23,7 @@ tencentcloud/apigateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
23
23
|
tencentcloud/apigateway/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
24
|
tencentcloud/apigateway/v20180808/apigateway_client.py,sha256=3yPwDHTK-flhQOOcw1BopENHHmiFQc36-1jKozyEJiI,90265
|
|
25
25
|
tencentcloud/apigateway/v20180808/errorcodes.py,sha256=0T0u1gze7_0UL5PGy0yOYWJOuI17GixRzh6_wngXJ74,23820
|
|
26
|
-
tencentcloud/apigateway/v20180808/models.py,sha256=
|
|
26
|
+
tencentcloud/apigateway/v20180808/models.py,sha256=AnpoOifBCVg_lrKVV2Qz7oEFZGrJRUwrur41O4GX_t4,631954
|
|
27
27
|
tencentcloud/autoscaling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
tencentcloud/autoscaling/v20180419/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=10_xxbizzSKQ0Ih7JghQqhFW9JBod96HvKcSSEq_CCw,72911
|
|
@@ -269,7 +269,7 @@ tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
269
269
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
270
|
tencentcloud/faceid/v20180301/errorcodes.py,sha256=QIZO_mdFiPmYrWS3wGMlLnNKTnV_6vVmB61ec6QSymE,9715
|
|
271
271
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=V9BAvjeA-gL2hWU1kVeWrspP6d9xptFDaXJawHAzHvc,23905
|
|
272
|
-
tencentcloud/faceid/v20180301/models.py,sha256=
|
|
272
|
+
tencentcloud/faceid/v20180301/models.py,sha256=09YCa06KYHGzrCfBH5v5vZzi-_T9sEeuhdNAnNp2HsM,266800
|
|
273
273
|
tencentcloud/gaap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
274
|
tencentcloud/gaap/v20180529/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
275
|
tencentcloud/gaap/v20180529/errorcodes.py,sha256=hco_fu2P-boFi-3-kcpWCYfaay9RrwmhwHLqzvry2xM,11142
|
|
@@ -486,7 +486,7 @@ tencentcloud/tcr/v20190924/tcr_client.py,sha256=1STEVo5ToT76kNO8I84eTohFG62XZaJW
|
|
|
486
486
|
tencentcloud/tcss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
487
|
tencentcloud/tcss/v20201101/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
488
|
tencentcloud/tcss/v20201101/errorcodes.py,sha256=IkdH_SZM0pejSt4YWyvUdQlXsj8gW1wwJnU7uhQr9r4,4266
|
|
489
|
-
tencentcloud/tcss/v20201101/models.py,sha256=
|
|
489
|
+
tencentcloud/tcss/v20201101/models.py,sha256=5cniGGPSsWMK5F9PlXZ33znXM4-cetEyrVZ_tuq2_Lg,1741746
|
|
490
490
|
tencentcloud/tcss/v20201101/tcss_client.py,sha256=1AQsSNX0jBSbjLgDaoTjUdJgkQfZL36Bg8ms-LSdxvU,327413
|
|
491
491
|
tencentcloud/tdid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
492
492
|
tencentcloud/tdid/v20210519/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -580,7 +580,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
580
580
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
581
581
|
tencentcloud/yunjing/v20180228/models.py,sha256=HQyyIn8M4Z5Yt20wICv4zySOzTdx3pUii75J0WmIr7M,276364
|
|
582
582
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
583
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
584
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
585
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
586
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
583
|
+
tencentcloud_sdk_python_intl_en-3.0.1072.dist-info/METADATA,sha256=IX3Y3zCLiAF07lRh2unTCwwEFb9jFw0lsypiPR9MobA,1628
|
|
584
|
+
tencentcloud_sdk_python_intl_en-3.0.1072.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
585
|
+
tencentcloud_sdk_python_intl_en-3.0.1072.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
586
|
+
tencentcloud_sdk_python_intl_en-3.0.1072.dist-info/RECORD,,
|
|
File without changes
|