tencentcloud-sdk-nodejs-intl-en 3.0.1373 → 3.0.1375
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/as/v20180419/as_client.js +3 -2
- package/tencentcloud/as/v20180419/models.js +103 -87
- package/tencentcloud/billing/v20180709/billing_client.js +15 -1
- package/tencentcloud/billing/v20180709/models.js +248 -55
- package/tencentcloud/cdb/v20170320/models.js +8 -8
- package/tencentcloud/cdn/v20180606/cdn_client.js +15 -11
- package/tencentcloud/cdn/v20180606/models.js +319 -80
- package/tencentcloud/cls/v20201016/cls_client.js +1709 -374
- package/tencentcloud/cls/v20201016/models.js +23480 -6683
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cvm/v20170312/cvm_client.js +4 -4
- package/tencentcloud/cvm/v20170312/models.js +20 -22
- package/tencentcloud/cwp/v20180228/cwp_client.js +615 -350
- package/tencentcloud/cwp/v20180228/models.js +10317 -5290
- package/tencentcloud/cynosdb/v20190107/models.js +305 -286
- package/tencentcloud/faceid/v20180301/models.js +29 -12
- package/tencentcloud/gme/v20180711/models.js +13 -3
- package/tencentcloud/iai/v20200303/iai_client.js +1 -1
- package/tencentcloud/mna/v20210119/models.js +2 -2
- package/tencentcloud/mongodb/v20190725/models.js +12 -12
- package/tencentcloud/postgres/v20170312/models.js +9 -9
- package/tencentcloud/rum/v20210622/models.js +16 -16
- package/tencentcloud/rum/v20210622/rum_client.js +1 -1
- package/tencentcloud/scf/v20180416/models.js +2 -2
- package/tencentcloud/tat/v20201028/models.js +56 -47
- package/tencentcloud/tcsas/v20250106/models.js +11162 -7488
- package/tencentcloud/tcsas/v20250106/tcsas_client.js +613 -324
- package/tencentcloud/tcss/v20201101/models.js +7275 -2457
- package/tencentcloud/tcss/v20201101/tcss_client.js +2328 -2021
- package/tencentcloud/teo/v20220901/models.js +880 -153
- package/tencentcloud/teo/v20220901/teo_client.js +103 -47
- package/tencentcloud/trtc/v20190722/models.js +315 -83
- package/tencentcloud/trtc/v20190722/trtc_client.js +5 -1
- package/tencentcloud/vod/v20180717/models.js +693 -229
- package/tencentcloud/vod/v20180717/vod_client.js +24 -6
|
@@ -27,8 +27,8 @@ class ScheduleSettings extends AbstractModel {
|
|
|
27
27
|
/**
|
|
28
28
|
* Execution policy.
|
|
29
29
|
|
|
30
|
-
-ONCE: one-time execution.
|
|
31
|
-
-RECURRENCE: execute periodically.
|
|
30
|
+
- ONCE: one-time execution.
|
|
31
|
+
- RECURRENCE: execute periodically.
|
|
32
32
|
* @type {string || null}
|
|
33
33
|
*/
|
|
34
34
|
this.Policy = null;
|
|
@@ -594,15 +594,15 @@ class Invocation extends AbstractModel {
|
|
|
594
594
|
/**
|
|
595
595
|
* Execution task status. valid values:.
|
|
596
596
|
|
|
597
|
-
-PENDING: waiting for distribution.
|
|
598
|
-
- RUNNING: command
|
|
599
|
-
-
|
|
600
|
-
-SUCCESS: command success.
|
|
601
|
-
-TIMEOUT: command timeout.
|
|
597
|
+
- PENDING: waiting for distribution.
|
|
598
|
+
- RUNNING: command is running.
|
|
599
|
+
- CANCELLING: canceling.
|
|
600
|
+
- SUCCESS: command success.
|
|
601
|
+
- TIMEOUT: command timeout.
|
|
602
602
|
- FAILED: command FAILED.
|
|
603
|
-
-CANCELLED: all commands canceled.
|
|
604
|
-
-PARTIAL_FAILED: the command partially failed.
|
|
605
|
-
-PARTIAL_CANCELLED: the command is partially canceled.
|
|
603
|
+
- CANCELLED: all commands canceled.
|
|
604
|
+
- PARTIAL_FAILED: the command partially failed.
|
|
605
|
+
- PARTIAL_CANCELLED: the command is partially canceled.
|
|
606
606
|
* @type {string || null}
|
|
607
607
|
*/
|
|
608
608
|
this.InvocationStatus = null;
|
|
@@ -671,8 +671,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
671
671
|
/**
|
|
672
672
|
* Invocation source.
|
|
673
673
|
|
|
674
|
-
-USER: originate from user invocation.
|
|
675
|
-
-INVOKER: originate from scheduled execution.
|
|
674
|
+
- USER: originate from user invocation.
|
|
675
|
+
- INVOKER: originate from scheduled execution.
|
|
676
676
|
* @type {string || null}
|
|
677
677
|
*/
|
|
678
678
|
this.InvocationSource = null;
|
|
@@ -769,7 +769,7 @@ class GeneralResourceQuotaSet extends AbstractModel {
|
|
|
769
769
|
Value is:.
|
|
770
770
|
|
|
771
771
|
- COMMAND: COMMAND.
|
|
772
|
-
-REGISTER_CODE: managed instance registration code.
|
|
772
|
+
- REGISTER_CODE: managed instance registration code.
|
|
773
773
|
* @type {string || null}
|
|
774
774
|
*/
|
|
775
775
|
this.ResourceName = null;
|
|
@@ -1505,19 +1505,19 @@ class InvocationTaskBasicInfo extends AbstractModel {
|
|
|
1505
1505
|
/**
|
|
1506
1506
|
* Execution task status. valid values:.
|
|
1507
1507
|
|
|
1508
|
-
-PENDING: waiting for distribution.
|
|
1509
|
-
-DELIVERING: distributing.
|
|
1510
|
-
-DELIVER_DELAYED: delivery delay.
|
|
1511
|
-
-DELIVER_FAILED: delivery fail.
|
|
1512
|
-
-START_FAILED: command start failed.
|
|
1508
|
+
- PENDING: waiting for distribution.
|
|
1509
|
+
- DELIVERING: distributing.
|
|
1510
|
+
- DELIVER_DELAYED: delivery delay.
|
|
1511
|
+
- DELIVER_FAILED: delivery fail.
|
|
1512
|
+
- START_FAILED: command start failed.
|
|
1513
1513
|
- RUNNING: command RUNNING.
|
|
1514
|
-
-SUCCESS: command success.
|
|
1515
|
-
-FAILED: command execution failed, exit code not 0.
|
|
1516
|
-
-TIMEOUT: command timeout.
|
|
1517
|
-
-TASK_TIMEOUT: client no response.
|
|
1518
|
-
-
|
|
1514
|
+
- SUCCESS: command success.
|
|
1515
|
+
- FAILED: command execution failed, exit code not 0.
|
|
1516
|
+
- TIMEOUT: command timeout.
|
|
1517
|
+
- TASK_TIMEOUT: client no response.
|
|
1518
|
+
- CANCELLING: cancelling.
|
|
1519
1519
|
- CANCELLED: canceled (command canceled before startup).
|
|
1520
|
-
-TERMINATED: suspended (canceled during command execution).
|
|
1520
|
+
- TERMINATED: suspended (canceled during command execution).
|
|
1521
1521
|
* @type {string || null}
|
|
1522
1522
|
*/
|
|
1523
1523
|
this.TaskStatus = null;
|
|
@@ -2277,9 +2277,18 @@ Parameters must not be specified simultaneously `InstanceIds` and `Filters`.
|
|
|
2277
2277
|
this.InstanceIds = null;
|
|
2278
2278
|
|
|
2279
2279
|
/**
|
|
2280
|
-
* -agent-status
|
|
2281
|
-
-
|
|
2282
|
-
-
|
|
2280
|
+
* - agent-status
|
|
2281
|
+
- String
|
|
2282
|
+
- required: no
|
|
2283
|
+
- (filter condition) filters by agent status. valid values: Online, Offline.
|
|
2284
|
+
- environment
|
|
2285
|
+
- String
|
|
2286
|
+
- required: no
|
|
2287
|
+
- (filter condition) query by agent runtime environment. valid values: Linux, Windows.
|
|
2288
|
+
- instance-id
|
|
2289
|
+
- String
|
|
2290
|
+
- required: no
|
|
2291
|
+
- (filter condition) filter by instance id. you can get the instance id through the query instance API of the corresponding cloud services. currently supports instance types: CVM, Lighthouse, and managed instances.
|
|
2283
2292
|
|
|
2284
2293
|
The maximum number of `Filters` per request is 10, and that of `Filter.Values` is 5. the `InstanceIds` and `Filters` parameters cannot be specified at the same time.
|
|
2285
2294
|
* @type {Array.<Filter> || null}
|
|
@@ -3096,19 +3105,19 @@ class InvocationTask extends AbstractModel {
|
|
|
3096
3105
|
/**
|
|
3097
3106
|
* Execution task status. valid values:.
|
|
3098
3107
|
|
|
3099
|
-
-PENDING: waiting for distribution.
|
|
3100
|
-
-DELIVERING: distributing.
|
|
3101
|
-
-DELIVER_DELAYED: delivery delay.
|
|
3102
|
-
-DELIVER_FAILED: delivery fail.
|
|
3103
|
-
-START_FAILED: command start failed.
|
|
3108
|
+
- PENDING: waiting for distribution.
|
|
3109
|
+
- DELIVERING: distributing.
|
|
3110
|
+
- DELIVER_DELAYED: delivery delay.
|
|
3111
|
+
- DELIVER_FAILED: delivery fail.
|
|
3112
|
+
- START_FAILED: command start failed.
|
|
3104
3113
|
- RUNNING: command RUNNING.
|
|
3105
|
-
-SUCCESS: command success.
|
|
3106
|
-
-FAILED: command execution failed, exit code not 0.
|
|
3107
|
-
-TIMEOUT: command timeout.
|
|
3108
|
-
-TASK_TIMEOUT: client no response.
|
|
3109
|
-
-
|
|
3114
|
+
- SUCCESS: command success.
|
|
3115
|
+
- FAILED: command execution failed, exit code not 0.
|
|
3116
|
+
- TIMEOUT: command timeout.
|
|
3117
|
+
- TASK_TIMEOUT: client no response.
|
|
3118
|
+
- CANCELLING: canceling.
|
|
3110
3119
|
- CANCELLED: canceled (command canceled before startup).
|
|
3111
|
-
-TERMINATED: suspended (canceled during command execution).
|
|
3120
|
+
- TERMINATED: suspended (canceled during command execution).
|
|
3112
3121
|
* @type {string || null}
|
|
3113
3122
|
*/
|
|
3114
3123
|
this.TaskStatus = null;
|
|
@@ -3166,8 +3175,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3166
3175
|
/**
|
|
3167
3176
|
* Invocation source.
|
|
3168
3177
|
|
|
3169
|
-
-USER: originate from user invocation.
|
|
3170
|
-
-INVOKER: originate from scheduled execution.
|
|
3178
|
+
- USER: originate from user invocation.
|
|
3179
|
+
- INVOKER: originate from scheduled execution.
|
|
3171
3180
|
* @type {string || null}
|
|
3172
3181
|
*/
|
|
3173
3182
|
this.InvocationSource = null;
|
|
@@ -3306,15 +3315,15 @@ class InvokerRecord extends AbstractModel {
|
|
|
3306
3315
|
/**
|
|
3307
3316
|
* Trigger result.
|
|
3308
3317
|
|
|
3309
|
-
-PENDING: waiting for distribution.
|
|
3318
|
+
- PENDING: waiting for distribution.
|
|
3310
3319
|
- RUNNING: command RUNNING.
|
|
3311
|
-
-
|
|
3312
|
-
-SUCCESS: command success.
|
|
3313
|
-
-TIMEOUT: command timeout.
|
|
3320
|
+
- CANCELLING: canceling.
|
|
3321
|
+
- SUCCESS: command success.
|
|
3322
|
+
- TIMEOUT: command timeout.
|
|
3314
3323
|
- FAILED: command FAILED.
|
|
3315
|
-
-CANCELLED: all commands canceled.
|
|
3316
|
-
-PARTIAL_FAILED: the command partially failed.
|
|
3317
|
-
-PARTIAL_CANCELLED: the command is partially canceled.
|
|
3324
|
+
- CANCELLED: all commands canceled.
|
|
3325
|
+
- PARTIAL_FAILED: the command partially failed.
|
|
3326
|
+
- PARTIAL_CANCELLED: the command is partially canceled.
|
|
3318
3327
|
* @type {string || null}
|
|
3319
3328
|
*/
|
|
3320
3329
|
this.Result = null;
|