tccli-intl-en 3.0.1260.1__py2.py3-none-any.whl → 3.0.1262.1__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.
@@ -422,6 +422,14 @@
422
422
  "title": "Querying the Price of a Reserved Instance"
423
423
  }
424
424
  ],
425
+ "InquiryPriceModifyInstancesChargeType": [
426
+ {
427
+ "document": "This example shows you how to perform a switchover for the billing mode of an instance to check the price.",
428
+ "input": "POST / HTTP/1.1\nHost: cvm.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: InquiryPriceModifyInstancesChargeType\n<Common request parameters>\n\n{\n \"InstanceChargeType\": \"PREPAID\",\n \"InstanceIds\": [\n \"ins-r8hr2upy\"\n ],\n \"InstanceChargePrepaid\": {\n \"Period\": 1\n }\n}",
429
+ "output": "{\n \"Response\": {\n \"Price\": {\n \"InstancePrice\": {\n \"OriginalPrice\": 720,\n \"DiscountPrice\": 720\n }\n },\n \"RequestId\": \"d39d6c09-44e9-4e80-8661-77b5ff3cbc15\"\n }\n}",
430
+ "title": "Switching the Billing Mode of an Instance for Price Inquiry"
431
+ }
432
+ ],
425
433
  "InquiryPriceRenewInstances": [
426
434
  {
427
435
  "document": "This example shows you how to perform a renewal instance inquiry with a duration of one month.",
@@ -530,6 +538,20 @@
530
538
  "title": "Renaming instances"
531
539
  }
532
540
  ],
541
+ "ModifyInstancesChargeType": [
542
+ {
543
+ "document": "This example shows you how to switch the billing mode of an instance.",
544
+ "input": "POST / HTTP/1.1\nHost: cvm.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyInstancesChargeType\n<Common request parameters>\n\n{\n \"InstanceChargeType\": \"POSTPAID_BY_HOUR\",\n \"InstanceIds\": [\n \"ins-r8hr2upy\"\n ]\n}",
545
+ "output": "{\n \"Response\": {\n \"RequestId\": \"d39d6c09-44e9-4e80-8661-77b5ff3cbc15\"\n }\n}",
546
+ "title": "Switching Instance Billing Mode to Hourly Postpaid in This Example"
547
+ },
548
+ {
549
+ "document": "This example shows you how to switch the billing mode of an instance.",
550
+ "input": "POST / HTTP/1.1\nHost: cvm.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyInstancesChargeType\n<Common request parameters>\n\n{\n \"InstanceChargeType\": \"PREPAID\",\n \"InstanceIds\": [\n \"ins-r8hr2upy\"\n ],\n \"InstanceChargePrepaid\": {\n \"Period\": \"1\"\n }\n}",
551
+ "output": "{\n \"Response\": {\n \"RequestId\": \"d39d6c09-44e9-4e80-8661-77b5ff3cbc15\"\n }\n}",
552
+ "title": "This Example Switches Instance Billing Mode to Prepaid Mode with a Duration of 1 Month"
553
+ }
554
+ ],
533
555
  "ModifyInstancesDisasterRecoverGroup": [
534
556
  {
535
557
  "document": "This example shows you how to adjust the instance location in an instance placement group.",
@@ -121,6 +121,58 @@ def doDescribeDomainGroupList(args, parsed_globals):
121
121
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
122
122
 
123
123
 
124
+ def doDescribeRecordLineCategoryList(args, parsed_globals):
125
+ g_param = parse_global_arg(parsed_globals)
126
+
127
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
128
+ cred = credential.CVMRoleCredential()
129
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
130
+ cred = credential.STSAssumeRoleCredential(
131
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
132
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
133
+ )
134
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
135
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
136
+ else:
137
+ cred = credential.Credential(
138
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
139
+ )
140
+ http_profile = HttpProfile(
141
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
142
+ reqMethod="POST",
143
+ endpoint=g_param[OptionsDefine.Endpoint],
144
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
145
+ )
146
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
147
+ if g_param[OptionsDefine.Language]:
148
+ profile.language = g_param[OptionsDefine.Language]
149
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
150
+ client = mod.DnspodClient(cred, g_param[OptionsDefine.Region], profile)
151
+ client._sdkVersion += ("_CLI_" + __version__)
152
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
153
+ model = models.DescribeRecordLineCategoryListRequest()
154
+ model.from_json_string(json.dumps(args))
155
+ start_time = time.time()
156
+ while True:
157
+ rsp = client.DescribeRecordLineCategoryList(model)
158
+ result = rsp.to_json_string()
159
+ try:
160
+ json_obj = json.loads(result)
161
+ except TypeError as e:
162
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
163
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
164
+ break
165
+ cur_time = time.time()
166
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
167
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
168
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
169
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
170
+ else:
171
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
172
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
173
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
174
+
175
+
124
176
  def doDescribeDomainPurview(args, parsed_globals):
125
177
  g_param = parse_global_arg(parsed_globals)
126
178
 
@@ -849,6 +901,58 @@ def doDescribeDomain(args, parsed_globals):
849
901
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
850
902
 
851
903
 
904
+ def doDeletePackageOrder(args, parsed_globals):
905
+ g_param = parse_global_arg(parsed_globals)
906
+
907
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
908
+ cred = credential.CVMRoleCredential()
909
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
910
+ cred = credential.STSAssumeRoleCredential(
911
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
912
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
913
+ )
914
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
915
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
916
+ else:
917
+ cred = credential.Credential(
918
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
919
+ )
920
+ http_profile = HttpProfile(
921
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
922
+ reqMethod="POST",
923
+ endpoint=g_param[OptionsDefine.Endpoint],
924
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
925
+ )
926
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
927
+ if g_param[OptionsDefine.Language]:
928
+ profile.language = g_param[OptionsDefine.Language]
929
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
930
+ client = mod.DnspodClient(cred, g_param[OptionsDefine.Region], profile)
931
+ client._sdkVersion += ("_CLI_" + __version__)
932
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
933
+ model = models.DeletePackageOrderRequest()
934
+ model.from_json_string(json.dumps(args))
935
+ start_time = time.time()
936
+ while True:
937
+ rsp = client.DeletePackageOrder(model)
938
+ result = rsp.to_json_string()
939
+ try:
940
+ json_obj = json.loads(result)
941
+ except TypeError as e:
942
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
943
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
944
+ break
945
+ cur_time = time.time()
946
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
947
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
948
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
949
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
950
+ else:
951
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
952
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
953
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
954
+
955
+
852
956
  def doCreateRecordBatch(args, parsed_globals):
853
957
  g_param = parse_global_arg(parsed_globals)
854
958
 
@@ -2006,6 +2110,7 @@ MODELS_MAP = {
2006
2110
  ACTION_MAP = {
2007
2111
  "DescribeRecordList": doDescribeRecordList,
2008
2112
  "DescribeDomainGroupList": doDescribeDomainGroupList,
2113
+ "DescribeRecordLineCategoryList": doDescribeRecordLineCategoryList,
2009
2114
  "DescribeDomainPurview": doDescribeDomainPurview,
2010
2115
  "DescribeRecordType": doDescribeRecordType,
2011
2116
  "DeleteRecordGroup": doDeleteRecordGroup,
@@ -2020,6 +2125,7 @@ ACTION_MAP = {
2020
2125
  "DeleteShareDomain": doDeleteShareDomain,
2021
2126
  "ModifyRecordGroup": doModifyRecordGroup,
2022
2127
  "DescribeDomain": doDescribeDomain,
2128
+ "DeletePackageOrder": doDeletePackageOrder,
2023
2129
  "CreateRecordBatch": doCreateRecordBatch,
2024
2130
  "ModifyDomainLock": doModifyDomainLock,
2025
2131
  "DeleteRecord": doDeleteRecord,
@@ -77,6 +77,13 @@
77
77
  "output": "DeleteDomainBatchResponse",
78
78
  "status": "online"
79
79
  },
80
+ "DeletePackageOrder": {
81
+ "document": "This API is used to disable the paid plan on the international website.",
82
+ "input": "DeletePackageOrderRequest",
83
+ "name": "Close an international site package order",
84
+ "output": "DeletePackageOrderResponse",
85
+ "status": "online"
86
+ },
80
87
  "DeleteRecord": {
81
88
  "document": "This API is used to delete a record.",
82
89
  "input": "DeleteRecordRequest",
@@ -161,6 +168,13 @@
161
168
  "output": "DescribeRecordGroupListResponse",
162
169
  "status": "online"
163
170
  },
171
+ "DescribeRecordLineCategoryList": {
172
+ "document": "This API is used to return a line list by category.",
173
+ "input": "DescribeRecordLineCategoryListRequest",
174
+ "name": "Returns a line list by category",
175
+ "output": "DescribeRecordLineCategoryListResponse",
176
+ "status": "online"
177
+ },
164
178
  "DescribeRecordLineList": {
165
179
  "document": "This API is used to get the split zones allowed by the domain level.",
166
180
  "input": "DescribeRecordLineListRequest",
@@ -1440,6 +1454,33 @@
1440
1454
  ],
1441
1455
  "type": "object"
1442
1456
  },
1457
+ "DeletePackageOrderRequest": {
1458
+ "document": "DeletePackageOrder request structure.",
1459
+ "members": [
1460
+ {
1461
+ "disabled": false,
1462
+ "document": "Specifies the domain name of the package to be terminated.",
1463
+ "example": "dnspod.com",
1464
+ "member": "string",
1465
+ "name": "Domain",
1466
+ "required": true,
1467
+ "type": "string"
1468
+ }
1469
+ ],
1470
+ "type": "object"
1471
+ },
1472
+ "DeletePackageOrderResponse": {
1473
+ "document": "DeletePackageOrder response structure.",
1474
+ "members": [
1475
+ {
1476
+ "document": "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.",
1477
+ "member": "string",
1478
+ "name": "RequestId",
1479
+ "type": "string"
1480
+ }
1481
+ ],
1482
+ "type": "object"
1483
+ },
1443
1484
  "DeleteRecordGroupRequest": {
1444
1485
  "document": "DeleteRecordGroup request structure.",
1445
1486
  "members": [
@@ -1974,6 +2015,52 @@
1974
2015
  ],
1975
2016
  "type": "object"
1976
2017
  },
2018
+ "DescribeRecordLineCategoryListRequest": {
2019
+ "document": "DescribeRecordLineCategoryList request structure.",
2020
+ "members": [
2021
+ {
2022
+ "disabled": false,
2023
+ "document": "Specifies the domain name to query the line list.",
2024
+ "example": "dnspod.cn",
2025
+ "member": "string",
2026
+ "name": "Domain",
2027
+ "required": true,
2028
+ "type": "string"
2029
+ },
2030
+ {
2031
+ "disabled": false,
2032
+ "document": "Domain ID for querying the route list. parameter DomainId has higher priority than parameter Domain. if you pass parameter DomainId, it will ignore parameter Domain.",
2033
+ "example": "97213027",
2034
+ "member": "uint64",
2035
+ "name": "DomainId",
2036
+ "required": false,
2037
+ "type": "int"
2038
+ }
2039
+ ],
2040
+ "type": "object"
2041
+ },
2042
+ "DescribeRecordLineCategoryListResponse": {
2043
+ "document": "DescribeRecordLineCategoryList response structure.",
2044
+ "members": [
2045
+ {
2046
+ "disabled": false,
2047
+ "document": "Lists lines by category.",
2048
+ "example": "无",
2049
+ "member": "LineItem",
2050
+ "name": "LineList",
2051
+ "output_required": true,
2052
+ "type": "list",
2053
+ "value_allowed_null": false
2054
+ },
2055
+ {
2056
+ "document": "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.",
2057
+ "member": "string",
2058
+ "name": "RequestId",
2059
+ "type": "string"
2060
+ }
2061
+ ],
2062
+ "type": "object"
2063
+ },
1977
2064
  "DescribeRecordLineListRequest": {
1978
2065
  "document": "DescribeRecordLineList request structure.",
1979
2066
  "members": [
@@ -3114,6 +3201,72 @@
3114
3201
  ],
3115
3202
  "usage": "out"
3116
3203
  },
3204
+ "LineItem": {
3205
+ "document": "Describes the line information of dns records.",
3206
+ "members": [
3207
+ {
3208
+ "disabled": false,
3209
+ "document": "Parses the line name.",
3210
+ "example": "电信",
3211
+ "member": "string",
3212
+ "name": "LineName",
3213
+ "output_required": true,
3214
+ "type": "string",
3215
+ "value_allowed_null": false
3216
+ },
3217
+ {
3218
+ "disabled": false,
3219
+ "document": "Resolution route ID.\nNote: This field may return null, indicating that no valid values can be obtained.",
3220
+ "example": "10=0",
3221
+ "member": "string",
3222
+ "name": "LineId",
3223
+ "output_required": true,
3224
+ "type": "string",
3225
+ "value_allowed_null": true
3226
+ },
3227
+ {
3228
+ "disabled": false,
3229
+ "document": "Indicates whether the current line is available under the current domain.",
3230
+ "example": "true",
3231
+ "member": "bool",
3232
+ "name": "Useful",
3233
+ "output_required": true,
3234
+ "type": "bool",
3235
+ "value_allowed_null": false
3236
+ },
3237
+ {
3238
+ "disabled": false,
3239
+ "document": "Current line min plan level requirement.\nNote: This field may return null, indicating that no valid values can be obtained.",
3240
+ "example": "DP_Free",
3241
+ "member": "string",
3242
+ "name": "Grade",
3243
+ "output_required": true,
3244
+ "type": "string",
3245
+ "value_allowed_null": true
3246
+ },
3247
+ {
3248
+ "disabled": false,
3249
+ "document": "Describes the sub-line list under the current line category.\nNote: This field may return null, indicating that no valid values can be obtained.",
3250
+ "example": "无",
3251
+ "member": "LineItem",
3252
+ "name": "SubGroup",
3253
+ "output_required": true,
3254
+ "type": "list",
3255
+ "value_allowed_null": true
3256
+ },
3257
+ {
3258
+ "disabled": false,
3259
+ "document": "Specifies the lines included in the custom line grouping.\nNote: This field may return null, indicating that no valid values can be obtained.",
3260
+ "example": "[\"电信\",\"安徽电信\",\"北京电信\"]",
3261
+ "member": "string",
3262
+ "name": "Lines",
3263
+ "output_required": true,
3264
+ "type": "list",
3265
+ "value_allowed_null": true
3266
+ }
3267
+ ],
3268
+ "usage": "out"
3269
+ },
3117
3270
  "LockInfo": {
3118
3271
  "document": "Domain lock information",
3119
3272
  "members": [
@@ -100,6 +100,14 @@
100
100
  "title": "Bulk deleting domains"
101
101
  }
102
102
  ],
103
+ "DeletePackageOrder": [
104
+ {
105
+ "document": "",
106
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeletePackageOrder\n<Common request parameters>\n\n{\n \"Domain\": \"dnspod.com\"\n}",
107
+ "output": "{\n \"Response\": {\n \"RequestId\": \"37062da4-cdce-43a8-a1a9-6ea6176404d4\"\n }\n}",
108
+ "title": "Close International Site Package Order"
109
+ }
110
+ ],
103
111
  "DeleteRecord": [
104
112
  {
105
113
  "document": " ",
@@ -196,6 +204,14 @@
196
204
  "title": "Querying the list of DNS record groups"
197
205
  }
198
206
  ],
207
+ "DescribeRecordLineCategoryList": [
208
+ {
209
+ "document": "This example shows you how to return a line list by category",
210
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeRecordLineCategoryList\n<Common request parameters>\n\n{\n \"Domain\": \"dnspod.cn\",\n \"DomainId\": 1\n}",
211
+ "output": "{\n \"Response\": {\n \"RequestId\": \"e5246d79-2779-45df-aa6f-fe67001be5d8\",\n \"LineList\": [\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": null,\n \"LineName\": \"Default\",\n \"LineId\": \"0\",\n \"Useful\": true,\n \"Lines\": null\n },\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": [\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": null,\n \"LineName\": \"Baidu\",\n \"LineId\": \"90=0\",\n \"Useful\": true,\n \"Lines\": null\n },\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": null,\n \"LineName\": \"Google\",\n \"LineId\": \"90=1\",\n \"Useful\": true,\n \"Lines\": null\n },\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": null,\n \"LineName\": \"Youdao\",\n \"LineId\": \"90=2\",\n \"Useful\": true,\n \"Lines\": null\n },\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": null,\n \"LineName\": \"Bing\",\n \"LineId\": \"90=3\",\n \"Useful\": true,\n \"Lines\": null\n },\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": null,\n \"LineName\": \"Sogou\",\n \"LineId\": \"90=5\",\n \"Useful\": true,\n \"Lines\": null\n },\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": null,\n \"LineName\": \"Qihoo\",\n \"LineId\": \"90=6\",\n \"Useful\": true,\n \"Lines\": null\n },\n {\n \"Grade\": \"DPG_FREE\",\n \"SubGroup\": null,\n \"LineName\": \"Search engine\",\n \"LineId\": \"80=0\",\n \"Useful\": true,\n \"Lines\": null\n }\n ],\n \"LineName\": \"Search engine\",\n \"LineId\": \"80=0\",\n \"Useful\": true,\n \"Lines\": null\n }\n ]\n }\n}",
212
+ "title": "Line List Parameter Example by Category"
213
+ }
214
+ ],
199
215
  "DescribeRecordLineList": [
200
216
  {
201
217
  "document": " ",
@@ -22,7 +22,7 @@
22
22
  "status": "online"
23
23
  },
24
24
  "ApplyWebVerificationBizTokenIntl": {
25
- "document": "This API is used to apply for a BizToken before calling the web-based verification service each time. This token is required for initiating a verification process and getting the result after the verification is completed.",
25
+ "document": "This API is used to obtain a BizToken before each call to the Web verification service. Save the BizToken to initiate the verification process and retrieve the result upon completion. The BizToken is valid for 10 minutes.",
26
26
  "input": "ApplyWebVerificationBizTokenIntlRequest",
27
27
  "name": "Applies for a BizToken for the web-based verification service",
28
28
  "output": "ApplyWebVerificationBizTokenIntlResponse",
@@ -78,7 +78,7 @@
78
78
  "status": "online"
79
79
  },
80
80
  "GetFaceIdResultIntl": {
81
- "document": "This API is used to get the verification result with the corresponding SDK token after the identity verification process is completed. The SDK token is valid for two hours (2*3,600s) after generation and can be called multiple times.",
81
+ "document": "This API is used to get the verification result with the corresponding SDK token after the identity verification process is completed. The SDK token is valid for 72 hours (72*3600s) after generation and can be called multiple times.",
82
82
  "input": "GetFaceIdResultIntlRequest",
83
83
  "name": "Gets the verification result of liveness detection and face comparison",
84
84
  "output": "GetFaceIdResultIntlResponse",
@@ -544,7 +544,7 @@
544
544
  {
545
545
  "disabled": false,
546
546
  "document": "The parameter control the page configuration.\nExample: {\"AutoSkip\": true,\"CheckMode\": 1,\"IdCardType\": \"HKIDCard\"}",
547
- "example": "{\"AutoSkip\": true,\"CheckMode\": 1,\"IdCardType\": \"HKIDCard\"}",
547
+ "example": "",
548
548
  "member": "WebVerificationConfigIntl",
549
549
  "name": "Config",
550
550
  "required": false,
@@ -568,7 +568,7 @@
568
568
  },
569
569
  {
570
570
  "disabled": false,
571
- "document": "The token for the web-based verification, which is generated using the ApplyWebVerificationBizTokenIntl API.\nExample: 81EEF678-28EE-4759-A82E-6CBBBE6BC442",
571
+ "document": "A token that identifies a Web verification process, with a validity time of 10 minutes. after the process is complete, the token can be used to obtain the verification result.",
572
572
  "example": "81EEF678-28EE-4759-A82E-6CBBBE6BC442",
573
573
  "member": "string",
574
574
  "name": "BizToken",