tencentcloud-sdk-nodejs-intl-en 3.0.971 → 3.0.973
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.
- package/package.json +1 -1
- package/tencentcloud/apigateway/v20180808/apigateway_client.js +1 -1
- package/tencentcloud/clb/v20180317/clb_client.js +2 -2
- package/tencentcloud/clb/v20180317/models.js +19 -12
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dlc/v20210125/models.js +57 -29
- package/tencentcloud/faceid/v20180301/faceid_client.js +4 -3
- package/tencentcloud/faceid/v20180301/models.js +138 -80
- package/tencentcloud/monitor/v20180724/models.js +21 -14
- package/tencentcloud/monitor/v20180724/monitor_client.js +1 -1
- package/tencentcloud/sqlserver/v20180328/models.js +201 -12
- package/tencentcloud/sqlserver/v20180328/sqlserver_client.js +4 -1
package/package.json
CHANGED
|
@@ -374,7 +374,7 @@ In API Gateway, a usage plan can be bound to multiple key pairs. You can use thi
|
|
|
374
374
|
}
|
|
375
375
|
|
|
376
376
|
/**
|
|
377
|
-
*
|
|
377
|
+
* This API is used to switch the running version of a service published in an environment to a specified version. After you create a service by using API Gateway and publish it to an environment, multiple versions will be generated during development. In this case, you can call this API to switch versions.
|
|
378
378
|
* @param {UpdateServiceRequest} req
|
|
379
379
|
* @param {function(string, UpdateServiceResponse):void} cb
|
|
380
380
|
* @public
|
|
@@ -1121,7 +1121,7 @@ Limits:
|
|
|
1121
1121
|
Instance attribute restrictions
|
|
1122
1122
|
Only pay-as-you-go instances can be cloned. Monthly-subscribed instances cannot be cloned.
|
|
1123
1123
|
CLB instances without any billable items cannot be cloned.
|
|
1124
|
-
Classic CLB instances and CLB
|
|
1124
|
+
Classic CLB instances and CLB instances created for Anti-DDoS service cannot be cloned.
|
|
1125
1125
|
Classic network-based instances cannot be cloned.
|
|
1126
1126
|
IPv6 instances, IPv6 NAT64 instances, and instances bound with both IPv4 and IPv6 cannot be cloned.
|
|
1127
1127
|
The following settings will not be cloned: **Custom configuration**, **Redirection configurations**, and **Allow Traffic by Default** in security groups.
|
|
@@ -1130,7 +1130,7 @@ Listener restrictions
|
|
|
1130
1130
|
Instances with QUIC listeners or port range listeners cannot be cloned.
|
|
1131
1131
|
Private network CLB instances with TCP_SSL listeners cannot be cloned.
|
|
1132
1132
|
Instances with layer-7 listeners that have no forwarding rules cannot be cloned.
|
|
1133
|
-
|
|
1133
|
+
Instances with more than 50 listeners cannot be cloned.
|
|
1134
1134
|
Backend service restrictions
|
|
1135
1135
|
Instances with target groups and SCF cloud functions as the backend services cannot be cloned.
|
|
1136
1136
|
|
|
@@ -4902,8 +4902,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4902
4902
|
this.HttpCheckPath = null;
|
|
4903
4903
|
|
|
4904
4904
|
/**
|
|
4905
|
-
* Health check domain name. It
|
|
4906
|
-
Note: This field may return
|
|
4905
|
+
* Health check domain name. It's applicable only to HTTP/HTTPS forwarding rules and HTTP health checks of TCP listeners. It's required for HTTP health check of TCP listeners.
|
|
4906
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4907
4907
|
* @type {string || null}
|
|
4908
4908
|
*/
|
|
4909
4909
|
this.HttpCheckDomain = null;
|
|
@@ -4944,22 +4944,22 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4944
4944
|
this.RecvContext = null;
|
|
4945
4945
|
|
|
4946
4946
|
/**
|
|
4947
|
-
*
|
|
4948
|
-
Note:
|
|
4947
|
+
* Health check protocol. Values: `TCP`, `HTTP`, `HTTPS`, `GRPC`, `PING`, and `CUSTOM`. UDP listeners support `PING`/`CUSTOM`. TCP listener support `TCP`/`HTTP`/`CUSTOM`. TCP_SSL and QUIC listeners support `TCP`/`HTTP`. HTTP rules support `HTTP`/`GRPC. HTTPS rules support `HTTP`/`HTTPS`/`GRPC`.
|
|
4948
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4949
4949
|
* @type {string || null}
|
|
4950
4950
|
*/
|
|
4951
4951
|
this.CheckType = null;
|
|
4952
4952
|
|
|
4953
4953
|
/**
|
|
4954
4954
|
* HTTP version. HTTP version of the backend service. Values: `HTTP/1.0`, HTTP/1.1`. It is only applicable to TCP listeners, and is required when `CheckType`=`HTTP`.
|
|
4955
|
-
Note:
|
|
4955
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4956
4956
|
* @type {string || null}
|
|
4957
4957
|
*/
|
|
4958
4958
|
this.HttpVersion = null;
|
|
4959
4959
|
|
|
4960
4960
|
/**
|
|
4961
4961
|
* Specifies the type of health check source IP. `0` (default): CLB VIP. `1`: 100.64 IP range.
|
|
4962
|
-
Note:
|
|
4962
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4963
4963
|
* @type {number || null}
|
|
4964
4964
|
*/
|
|
4965
4965
|
this.SourceIpType = null;
|
|
@@ -6630,7 +6630,7 @@ class CreateListenerResponse extends AbstractModel {
|
|
|
6630
6630
|
this.ListenerIds = null;
|
|
6631
6631
|
|
|
6632
6632
|
/**
|
|
6633
|
-
* The unique request ID,
|
|
6633
|
+
* 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.
|
|
6634
6634
|
* @type {string || null}
|
|
6635
6635
|
*/
|
|
6636
6636
|
this.RequestId = null;
|
|
@@ -7836,7 +7836,7 @@ class CreateListenerRequest extends AbstractModel {
|
|
|
7836
7836
|
this.SessionExpireTime = null;
|
|
7837
7837
|
|
|
7838
7838
|
/**
|
|
7839
|
-
* Listener forwarding mode.
|
|
7839
|
+
* Listener forwarding mode. Values: `WRR` (weighted round robin) and `LEAST_CONN` (least connections).
|
|
7840
7840
|
Default value: `WRR`. This parameter is only applicable to TCP, UDP, TCP_SSL and QUIC listeners.
|
|
7841
7841
|
* @type {string || null}
|
|
7842
7842
|
*/
|
|
@@ -7885,23 +7885,29 @@ Default value: `WRR`. This parameter is only applicable to TCP, UDP, TCP_SSL and
|
|
|
7885
7885
|
this.MultiCertInfo = null;
|
|
7886
7886
|
|
|
7887
7887
|
/**
|
|
7888
|
-
* Maximum number of concurrent listener connections. It
|
|
7888
|
+
* Maximum number of concurrent listener connections. It's available for TCP/UDP/TCP_SSL/QUIC listeners. If it's set to `-1` or not specified, the listener speed is not limited.
|
|
7889
7889
|
* @type {number || null}
|
|
7890
7890
|
*/
|
|
7891
7891
|
this.MaxConn = null;
|
|
7892
7892
|
|
|
7893
7893
|
/**
|
|
7894
|
-
* Maximum number of new listener connections. It
|
|
7894
|
+
* Maximum number of new listener connections. It's available for TCP/UDP/TCP_SSL/QUIC listeners. If it's set to `-1` or not specified, the listener speed is not limited.
|
|
7895
7895
|
* @type {number || null}
|
|
7896
7896
|
*/
|
|
7897
7897
|
this.MaxCps = null;
|
|
7898
7898
|
|
|
7899
7899
|
/**
|
|
7900
|
-
* Connection idle timeout period (in seconds). It
|
|
7900
|
+
* Connection idle timeout period (in seconds). It's only available to TCP listeners. Value range: 300-900 for shared and dedicated instances; 300-2000 for LCU-supported CLB instances. It defaults to 900. To set a period longer than 2000 seconds (up to 3600 seconds), please submit a [submit](https://console.cloud.tencent.com/workorder/category).
|
|
7901
7901
|
* @type {number || null}
|
|
7902
7902
|
*/
|
|
7903
7903
|
this.IdleConnectTimeout = null;
|
|
7904
7904
|
|
|
7905
|
+
/**
|
|
7906
|
+
*
|
|
7907
|
+
* @type {boolean || null}
|
|
7908
|
+
*/
|
|
7909
|
+
this.SnatEnable = null;
|
|
7910
|
+
|
|
7905
7911
|
}
|
|
7906
7912
|
|
|
7907
7913
|
/**
|
|
@@ -7944,6 +7950,7 @@ Default value: `WRR`. This parameter is only applicable to TCP, UDP, TCP_SSL and
|
|
|
7944
7950
|
this.MaxConn = 'MaxConn' in params ? params.MaxConn : null;
|
|
7945
7951
|
this.MaxCps = 'MaxCps' in params ? params.MaxCps : null;
|
|
7946
7952
|
this.IdleConnectTimeout = 'IdleConnectTimeout' in params ? params.IdleConnectTimeout : null;
|
|
7953
|
+
this.SnatEnable = 'SnatEnable' in params ? params.SnatEnable : null;
|
|
7947
7954
|
|
|
7948
7955
|
}
|
|
7949
7956
|
}
|
|
@@ -9475,7 +9482,7 @@ class CloneLoadBalancerResponse extends AbstractModel {
|
|
|
9475
9482
|
super();
|
|
9476
9483
|
|
|
9477
9484
|
/**
|
|
9478
|
-
* The unique request ID,
|
|
9485
|
+
* 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.
|
|
9479
9486
|
* @type {string || null}
|
|
9480
9487
|
*/
|
|
9481
9488
|
this.RequestId = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.973";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -142,14 +142,14 @@ class PrestoMonitorMetrics extends AbstractModel {
|
|
|
142
142
|
|
|
143
143
|
/**
|
|
144
144
|
* The Alluxio cache hit rate.
|
|
145
|
-
Note:
|
|
145
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
146
146
|
* @type {number || null}
|
|
147
147
|
*/
|
|
148
148
|
this.LocalCacheHitRate = null;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
151
|
* The Fragment cache hit rate.
|
|
152
|
-
Note:
|
|
152
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
153
153
|
* @type {number || null}
|
|
154
154
|
*/
|
|
155
155
|
this.FragmentCacheHitRate = null;
|
|
@@ -214,14 +214,14 @@ class CosPermission extends AbstractModel {
|
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
216
|
* The COS path.
|
|
217
|
-
Note:
|
|
217
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
218
218
|
* @type {string || null}
|
|
219
219
|
*/
|
|
220
220
|
this.CosPath = null;
|
|
221
221
|
|
|
222
222
|
/**
|
|
223
223
|
* The permissions. Valid values: `read` and `write`.
|
|
224
|
-
Note:
|
|
224
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
225
225
|
* @type {Array.<string> || null}
|
|
226
226
|
*/
|
|
227
227
|
this.Permissions = null;
|
|
@@ -314,14 +314,14 @@ class SparkMonitorMetrics extends AbstractModel {
|
|
|
314
314
|
|
|
315
315
|
/**
|
|
316
316
|
* The shuffle data (in bytes) that overflows to COS.
|
|
317
|
-
Note:
|
|
317
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
318
318
|
* @type {number || null}
|
|
319
319
|
*/
|
|
320
320
|
this.ShuffleWriteBytesCos = null;
|
|
321
321
|
|
|
322
322
|
/**
|
|
323
323
|
* The total shuffle data (in bytes).
|
|
324
|
-
Note:
|
|
324
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
325
325
|
* @type {number || null}
|
|
326
326
|
*/
|
|
327
327
|
this.ShuffleWriteBytesTotal = null;
|
|
@@ -773,7 +773,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
773
773
|
this.TasksOverview = null;
|
|
774
774
|
|
|
775
775
|
/**
|
|
776
|
-
* The unique request ID,
|
|
776
|
+
* 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.
|
|
777
777
|
* @type {string || null}
|
|
778
778
|
*/
|
|
779
779
|
this.RequestId = null;
|
|
@@ -818,77 +818,77 @@ class CommonMetrics extends AbstractModel {
|
|
|
818
818
|
|
|
819
819
|
/**
|
|
820
820
|
* The task creation time in ms.
|
|
821
|
-
Note:
|
|
821
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
822
822
|
* @type {number || null}
|
|
823
823
|
*/
|
|
824
824
|
this.CreateTaskTime = null;
|
|
825
825
|
|
|
826
826
|
/**
|
|
827
827
|
* The processing time in ms.
|
|
828
|
-
Note:
|
|
828
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
829
829
|
* @type {number || null}
|
|
830
830
|
*/
|
|
831
831
|
this.ProcessTime = null;
|
|
832
832
|
|
|
833
833
|
/**
|
|
834
834
|
* The queue time in ms.
|
|
835
|
-
Note:
|
|
835
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
836
836
|
* @type {number || null}
|
|
837
837
|
*/
|
|
838
838
|
this.QueueTime = null;
|
|
839
839
|
|
|
840
840
|
/**
|
|
841
841
|
* The execution duration in ms.
|
|
842
|
-
Note:
|
|
842
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
843
843
|
* @type {number || null}
|
|
844
844
|
*/
|
|
845
845
|
this.ExecutionTime = null;
|
|
846
846
|
|
|
847
847
|
/**
|
|
848
848
|
* Whether the result cache is hit.
|
|
849
|
-
Note:
|
|
849
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
850
850
|
* @type {boolean || null}
|
|
851
851
|
*/
|
|
852
852
|
this.IsResultCacheHit = null;
|
|
853
853
|
|
|
854
854
|
/**
|
|
855
855
|
* The volume of matched materialized views, in bytes.
|
|
856
|
-
Note:
|
|
856
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
857
857
|
* @type {number || null}
|
|
858
858
|
*/
|
|
859
859
|
this.MatchedMVBytes = null;
|
|
860
860
|
|
|
861
861
|
/**
|
|
862
862
|
* The list of matched materialized views.
|
|
863
|
-
Note:
|
|
863
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
864
864
|
* @type {string || null}
|
|
865
865
|
*/
|
|
866
866
|
this.MatchedMVs = null;
|
|
867
867
|
|
|
868
868
|
/**
|
|
869
869
|
* The result data in bytes.
|
|
870
|
-
Note:
|
|
870
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
871
871
|
* @type {string || null}
|
|
872
872
|
*/
|
|
873
873
|
this.AffectedBytes = null;
|
|
874
874
|
|
|
875
875
|
/**
|
|
876
876
|
* The number of rows in the result.
|
|
877
|
-
Note:
|
|
877
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
878
878
|
* @type {number || null}
|
|
879
879
|
*/
|
|
880
880
|
this.AffectedRows = null;
|
|
881
881
|
|
|
882
882
|
/**
|
|
883
883
|
* The volume of the data scanned, in bytes.
|
|
884
|
-
Note:
|
|
884
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
885
885
|
* @type {number || null}
|
|
886
886
|
*/
|
|
887
887
|
this.ProcessedBytes = null;
|
|
888
888
|
|
|
889
889
|
/**
|
|
890
890
|
* The number of scanned rows.
|
|
891
|
-
Note:
|
|
891
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
892
892
|
* @type {number || null}
|
|
893
893
|
*/
|
|
894
894
|
this.ProcessedRows = null;
|
|
@@ -963,28 +963,28 @@ class UserRole extends AbstractModel {
|
|
|
963
963
|
|
|
964
964
|
/**
|
|
965
965
|
* The role name.
|
|
966
|
-
Note:
|
|
966
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
967
967
|
* @type {string || null}
|
|
968
968
|
*/
|
|
969
969
|
this.RoleName = null;
|
|
970
970
|
|
|
971
971
|
/**
|
|
972
972
|
* The creator UIN.
|
|
973
|
-
Note:
|
|
973
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
974
974
|
* @type {string || null}
|
|
975
975
|
*/
|
|
976
976
|
this.Creator = null;
|
|
977
977
|
|
|
978
978
|
/**
|
|
979
979
|
* The COS permission list.
|
|
980
|
-
Note:
|
|
980
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
981
981
|
* @type {Array.<CosPermission> || null}
|
|
982
982
|
*/
|
|
983
983
|
this.CosPermissionList = null;
|
|
984
984
|
|
|
985
985
|
/**
|
|
986
986
|
* The CAM policy in JSON.
|
|
987
|
-
Note:
|
|
987
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
988
988
|
* @type {string || null}
|
|
989
989
|
*/
|
|
990
990
|
this.PermissionJson = null;
|
|
@@ -3019,7 +3019,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3019
3019
|
this.TaskNum = null;
|
|
3020
3020
|
|
|
3021
3021
|
/**
|
|
3022
|
-
* Engine status. -100 (default value): unknown; -2
|
|
3022
|
+
* Engine status. -100 (default value): unknown; -2-11: normal.
|
|
3023
3023
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3024
3024
|
* @type {number || null}
|
|
3025
3025
|
*/
|
|
@@ -3069,11 +3069,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3069
3069
|
|
|
3070
3070
|
/**
|
|
3071
3071
|
* Whether the task runs with the session SQLs. Valid values: `false` for no and `true` for yes.
|
|
3072
|
-
Note:
|
|
3072
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3073
3073
|
* @type {boolean || null}
|
|
3074
3074
|
*/
|
|
3075
3075
|
this.IsSessionStarted = null;
|
|
3076
3076
|
|
|
3077
|
+
/**
|
|
3078
|
+
*
|
|
3079
|
+
* @type {string || null}
|
|
3080
|
+
*/
|
|
3081
|
+
this.EngineTypeDetail = null;
|
|
3082
|
+
|
|
3077
3083
|
}
|
|
3078
3084
|
|
|
3079
3085
|
/**
|
|
@@ -3129,6 +3135,7 @@ Note: u200dThis field may returnu200d·nullu200d, indicating that no valid value
|
|
|
3129
3135
|
this.DataEngineImageVersion = 'DataEngineImageVersion' in params ? params.DataEngineImageVersion : null;
|
|
3130
3136
|
this.IsInherit = 'IsInherit' in params ? params.IsInherit : null;
|
|
3131
3137
|
this.IsSessionStarted = 'IsSessionStarted' in params ? params.IsSessionStarted : null;
|
|
3138
|
+
this.EngineTypeDetail = 'EngineTypeDetail' in params ? params.EngineTypeDetail : null;
|
|
3132
3139
|
|
|
3133
3140
|
}
|
|
3134
3141
|
}
|
|
@@ -3230,7 +3237,7 @@ class DescribeUserRolesResponse extends AbstractModel {
|
|
|
3230
3237
|
this.UserRoles = null;
|
|
3231
3238
|
|
|
3232
3239
|
/**
|
|
3233
|
-
* The unique request ID,
|
|
3240
|
+
* 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.
|
|
3234
3241
|
* @type {string || null}
|
|
3235
3242
|
*/
|
|
3236
3243
|
this.RequestId = null;
|
|
@@ -3739,25 +3746,43 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3739
3746
|
|
|
3740
3747
|
/**
|
|
3741
3748
|
* Common task metrics
|
|
3742
|
-
Note:
|
|
3749
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3743
3750
|
* @type {CommonMetrics || null}
|
|
3744
3751
|
*/
|
|
3745
3752
|
this.CommonMetrics = null;
|
|
3746
3753
|
|
|
3747
3754
|
/**
|
|
3748
3755
|
* The Spark task metrics.
|
|
3749
|
-
Note:
|
|
3756
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3750
3757
|
* @type {SparkMonitorMetrics || null}
|
|
3751
3758
|
*/
|
|
3752
3759
|
this.SparkMonitorMetrics = null;
|
|
3753
3760
|
|
|
3754
3761
|
/**
|
|
3755
3762
|
* The Presto task metrics.
|
|
3756
|
-
Note:
|
|
3763
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3757
3764
|
* @type {PrestoMonitorMetrics || null}
|
|
3758
3765
|
*/
|
|
3759
3766
|
this.PrestoMonitorMetrics = null;
|
|
3760
3767
|
|
|
3768
|
+
/**
|
|
3769
|
+
*
|
|
3770
|
+
* @type {string || null}
|
|
3771
|
+
*/
|
|
3772
|
+
this.ResultFormat = null;
|
|
3773
|
+
|
|
3774
|
+
/**
|
|
3775
|
+
*
|
|
3776
|
+
* @type {string || null}
|
|
3777
|
+
*/
|
|
3778
|
+
this.EngineTypeDetail = null;
|
|
3779
|
+
|
|
3780
|
+
/**
|
|
3781
|
+
*
|
|
3782
|
+
* @type {string || null}
|
|
3783
|
+
*/
|
|
3784
|
+
this.ResourceGroupName = null;
|
|
3785
|
+
|
|
3761
3786
|
}
|
|
3762
3787
|
|
|
3763
3788
|
/**
|
|
@@ -3822,6 +3847,9 @@ Note: u200dThis field may returnu200d·nullu200d, indicating that no valid value
|
|
|
3822
3847
|
obj.deserialize(params.PrestoMonitorMetrics)
|
|
3823
3848
|
this.PrestoMonitorMetrics = obj;
|
|
3824
3849
|
}
|
|
3850
|
+
this.ResultFormat = 'ResultFormat' in params ? params.ResultFormat : null;
|
|
3851
|
+
this.EngineTypeDetail = 'EngineTypeDetail' in params ? params.EngineTypeDetail : null;
|
|
3852
|
+
this.ResourceGroupName = 'ResourceGroupName' in params ? params.ResourceGroupName : null;
|
|
3825
3853
|
|
|
3826
3854
|
}
|
|
3827
3855
|
}
|
|
@@ -4850,7 +4878,7 @@ class DescribeSparkAppJobsResponse extends AbstractModel {
|
|
|
4850
4878
|
this.TotalCount = null;
|
|
4851
4879
|
|
|
4852
4880
|
/**
|
|
4853
|
-
* The unique request ID,
|
|
4881
|
+
* 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.
|
|
4854
4882
|
* @type {string || null}
|
|
4855
4883
|
*/
|
|
4856
4884
|
this.RequestId = null;
|
|
@@ -40,9 +40,10 @@ const SingaporeIDCard = models.SingaporeIDCard;
|
|
|
40
40
|
const IndonesiaDrivingLicense = models.IndonesiaDrivingLicense;
|
|
41
41
|
const GetFaceIdResultIntlRequest = models.GetFaceIdResultIntlRequest;
|
|
42
42
|
const NormalCardInfo = models.NormalCardInfo;
|
|
43
|
+
const GetFaceIdResultIntlResponse = models.GetFaceIdResultIntlResponse;
|
|
43
44
|
const ApplySdkVerificationTokenRequest = models.ApplySdkVerificationTokenRequest;
|
|
44
45
|
const GenerateReflectSequenceRequest = models.GenerateReflectSequenceRequest;
|
|
45
|
-
const
|
|
46
|
+
const EditDetail = models.EditDetail;
|
|
46
47
|
const VideoLivenessCompareResponse = models.VideoLivenessCompareResponse;
|
|
47
48
|
const PhilippinesSSSID = models.PhilippinesSSSID;
|
|
48
49
|
const CardVerifyResult = models.CardVerifyResult;
|
|
@@ -77,7 +78,7 @@ const ApplyCardVerificationRequest = models.ApplyCardVerificationRequest;
|
|
|
77
78
|
const LivenessCompareRequest = models.LivenessCompareRequest;
|
|
78
79
|
const MLIDCard = models.MLIDCard;
|
|
79
80
|
const OCRResult = models.OCRResult;
|
|
80
|
-
const
|
|
81
|
+
const DetectReflectLivenessAndCompareResponse = models.DetectReflectLivenessAndCompareResponse;
|
|
81
82
|
const GetLivenessResultRequest = models.GetLivenessResultRequest;
|
|
82
83
|
const CompareResult = models.CompareResult;
|
|
83
84
|
|
|
@@ -115,7 +116,7 @@ class FaceidClient extends AbstractClient {
|
|
|
115
116
|
}
|
|
116
117
|
|
|
117
118
|
/**
|
|
118
|
-
* This API is used to get the verification result with the corresponding BizToken after the
|
|
119
|
+
* This API is used to get the verification result with the corresponding BizToken after the web-based verification is completed. The token is valid for three days (259,200s) after issuance and can be called multiple times.
|
|
119
120
|
* @param {GetWebVerificationResultIntlRequest} req
|
|
120
121
|
* @param {function(string, GetWebVerificationResultIntlResponse):void} cb
|
|
121
122
|
* @public
|