tencentcloud-sdk-nodejs-intl-en 3.0.378 → 3.0.379

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.378",
3
+ "version": "3.0.379",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -794,6 +794,18 @@ class DescribeListBGPInstancesRequest extends AbstractModel {
794
794
  */
795
795
  this.FilterLine = null;
796
796
 
797
+ /**
798
+ * Filters by instance status. `idle`: normal; `attacking`: being attacked; `blocking`: blocked
799
+ * @type {string || null}
800
+ */
801
+ this.FilterStatus = null;
802
+
803
+ /**
804
+ * Filters by binding status. `bounding`: the instance is bound; `failed`: the binding failed.
805
+ * @type {string || null}
806
+ */
807
+ this.FilterBoundStatus = null;
808
+
797
809
  }
798
810
 
799
811
  /**
@@ -810,6 +822,8 @@ class DescribeListBGPInstancesRequest extends AbstractModel {
810
822
  this.FilterRegion = 'FilterRegion' in params ? params.FilterRegion : null;
811
823
  this.FilterName = 'FilterName' in params ? params.FilterName : null;
812
824
  this.FilterLine = 'FilterLine' in params ? params.FilterLine : null;
825
+ this.FilterStatus = 'FilterStatus' in params ? params.FilterStatus : null;
826
+ this.FilterBoundStatus = 'FilterBoundStatus' in params ? params.FilterBoundStatus : null;
813
827
 
814
828
  }
815
829
  }
@@ -1371,6 +1385,12 @@ class DescribeListBGPIPInstancesRequest extends AbstractModel {
1371
1385
  */
1372
1386
  this.FilterDamDDoSStatus = null;
1373
1387
 
1388
+ /**
1389
+ * Filters by status of bound resources. `idle`: normal; `attacking`: being attacked; `blocking`: blocked
1390
+ * @type {string || null}
1391
+ */
1392
+ this.FilterStatus = null;
1393
+
1374
1394
  }
1375
1395
 
1376
1396
  /**
@@ -1390,6 +1410,7 @@ class DescribeListBGPIPInstancesRequest extends AbstractModel {
1390
1410
  this.FilterEipType = 'FilterEipType' in params ? params.FilterEipType : null;
1391
1411
  this.FilterEipEipAddressStatus = 'FilterEipEipAddressStatus' in params ? params.FilterEipEipAddressStatus : null;
1392
1412
  this.FilterDamDDoSStatus = 'FilterDamDDoSStatus' in params ? params.FilterDamDDoSStatus : null;
1413
+ this.FilterStatus = 'FilterStatus' in params ? params.FilterStatus : null;
1393
1414
 
1394
1415
  }
1395
1416
  }
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.378";
1
+ const sdkVersion = "3.0.379";
2
2
  module.exports = sdkVersion
@@ -1294,13 +1294,13 @@ class GetRequestStatusRequest extends AbstractModel {
1294
1294
  this.Namespace = null;
1295
1295
 
1296
1296
  /**
1297
- * Start time of the query, for example `2017-05-16 20:00:00`. If it’s left empty, it defaults to the current time minus 24 hours.
1297
+ * Start time of the query, for example `2017-05-16 20:00:00`. If it’s left empty, it defaults to 15 minutes before the current time.
1298
1298
  * @type {string || null}
1299
1299
  */
1300
1300
  this.StartTime = null;
1301
1301
 
1302
1302
  /**
1303
- * End time of the query, for example `2017-05-16 20:59:59`. If it’s left empty, it defaults to the current time. Note that the EndTime should be later than the StartTime
1303
+ * End time of the query. such as `2017-05-16 20:59:59`. If `StartTime` is not specified, `EndTime` defaults to the current time. If `StartTime` is specified, `EndTime` is required, and it need to be later than the `StartTime`.
1304
1304
  * @type {string || null}
1305
1305
  */
1306
1306
  this.EndTime = null;
@@ -1449,7 +1449,7 @@ class DeleteFunctionRequest extends AbstractModel {
1449
1449
  this.Namespace = null;
1450
1450
 
1451
1451
  /**
1452
- * Function version. Enter the number of the version that needs to be deleted, otherwise all versions of the function will be deleted.
1452
+ * ID of the version to delete. All versions are deleted if it’s left empty.
1453
1453
  * @type {string || null}
1454
1454
  */
1455
1455
  this.Qualifier = null;
@@ -2450,7 +2450,7 @@ class TerminateAsyncEventRequest extends AbstractModel {
2450
2450
  this.Namespace = null;
2451
2451
 
2452
2452
  /**
2453
- * Disused
2453
+ * Whether to enable grace shutdown. If it’s `true`, a `SIGTERM` signal is sent to the specified request. See [Sending termination signal](https://intl.cloud.tencent.com/document/product/583/63969?from_cn_redirect=1#.E5.8F.91.E9.80.81.E7.BB.88.E6.AD.A2.E4.BF.A1.E5.8F.B7]. It’s set to `false` by default.
2454
2454
  * @type {boolean || null}
2455
2455
  */
2456
2456
  this.GraceShutdown = null;
@@ -2640,13 +2640,13 @@ class LayerVersionSimple extends AbstractModel {
2640
2640
  super();
2641
2641
 
2642
2642
  /**
2643
- * Layer name
2643
+ * Name of the layer to bind. Leave it blank if you want to unbind layers
2644
2644
  * @type {string || null}
2645
2645
  */
2646
2646
  this.LayerName = null;
2647
2647
 
2648
2648
  /**
2649
- * Version number
2649
+ * Version ID f the layer to bind/unbind. If the layer version to unbind is the only layer version of the function version, enter `0`.
2650
2650
  * @type {number || null}
2651
2651
  */
2652
2652
  this.LayerVersion = null;
@@ -5399,49 +5399,49 @@ class Code extends AbstractModel {
5399
5399
  this.TempCosObjectName = null;
5400
5400
 
5401
5401
  /**
5402
- * Git address
5402
+ * (Disused) Git address
5403
5403
  * @type {string || null}
5404
5404
  */
5405
5405
  this.GitUrl = null;
5406
5406
 
5407
5407
  /**
5408
- * Git user name
5408
+ * (Disused) Git username
5409
5409
  * @type {string || null}
5410
5410
  */
5411
5411
  this.GitUserName = null;
5412
5412
 
5413
5413
  /**
5414
- * Git password
5414
+ * (Disused) Git password
5415
5415
  * @type {string || null}
5416
5416
  */
5417
5417
  this.GitPassword = null;
5418
5418
 
5419
5419
  /**
5420
- * Git password after encryption. In general, this value is not required.
5420
+ * (Disused) Git password after encryption. It’s usually not required.
5421
5421
  * @type {string || null}
5422
5422
  */
5423
5423
  this.GitPasswordSecret = null;
5424
5424
 
5425
5425
  /**
5426
- * Git branch
5426
+ * (Disused) Git branch
5427
5427
  * @type {string || null}
5428
5428
  */
5429
5429
  this.GitBranch = null;
5430
5430
 
5431
5431
  /**
5432
- * Code path in Git repository
5432
+ * (Disused) Directory to the codes in the Git repository.
5433
5433
  * @type {string || null}
5434
5434
  */
5435
5435
  this.GitDirectory = null;
5436
5436
 
5437
5437
  /**
5438
- * Version to be pulled
5438
+ * (Disused)
5439
5439
  * @type {string || null}
5440
5440
  */
5441
5441
  this.GitCommitId = null;
5442
5442
 
5443
5443
  /**
5444
- * Git user name after encryption. In general, this value is not required.
5444
+ * (Disused) Git username after encryption. It’s usually not required.
5445
5445
  * @type {string || null}
5446
5446
  */
5447
5447
  this.GitUserNameSecret = null;
@@ -6133,6 +6133,13 @@ Note: this field may return `null`, indicating that no valid values can be obtai
6133
6133
  */
6134
6134
  this.TriggerCronConfig = null;
6135
6135
 
6136
+ /**
6137
+ * The provision type. Value: `Default`
6138
+ Note: This field may return `null`, indicating that no valid value can be found.
6139
+ * @type {string || null}
6140
+ */
6141
+ this.ProvisionedType = null;
6142
+
6136
6143
  }
6137
6144
 
6138
6145
  /**
@@ -6145,6 +6152,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
6145
6152
  this.TriggerName = 'TriggerName' in params ? params.TriggerName : null;
6146
6153
  this.TriggerProvisionedConcurrencyNum = 'TriggerProvisionedConcurrencyNum' in params ? params.TriggerProvisionedConcurrencyNum : null;
6147
6154
  this.TriggerCronConfig = 'TriggerCronConfig' in params ? params.TriggerCronConfig : null;
6155
+ this.ProvisionedType = 'ProvisionedType' in params ? params.ProvisionedType : null;
6148
6156
 
6149
6157
  }
6150
6158
  }
@@ -7234,15 +7242,15 @@ Note: this field may return `null`, indicating that no valid values can be obtai
7234
7242
  this.EntryPoint = null;
7235
7243
 
7236
7244
  /**
7237
- * entrypoint execution command
7245
+ * The command to start up the container, such as `python`. If it’s not specified, Entrypoint in Dockerfile is used.
7238
7246
  Note: this field may return `null`, indicating that no valid values can be obtained.
7239
7247
  * @type {string || null}
7240
7248
  */
7241
7249
  this.Command = null;
7242
7250
 
7243
7251
  /**
7244
- * Command parameters
7245
- Note: this field may return `null`, indicating that no valid values can be obtained.
7252
+ * The parameters to start up the container. Separate parameters with spaces, such as `u app.py`. If it’s not specified, `CMD in Dockerfile is used.
7253
+ Note: This field may return `null`, indicating that no valid value can be found.
7246
7254
  * @type {string || null}
7247
7255
  */
7248
7256
  this.Args = null;
@@ -314,7 +314,7 @@ You can manually configure the function after replication as required.
314
314
  }
315
315
 
316
316
  /**
317
- * This API is used to return function running logs according to the specified log query criteria.
317
+ * This API returns function running logs according to the specified conditions. Note that this API has been disused. You can use [GetRequestStatus](https://intl.cloud.tencent.com/document/product/583/65348?from_cn_redirect=1) instead. See also [Retrieving Logs](https://intl.cloud.tencent.com/document/product/583/52637?from_cn_redirect=1).
318
318
  * @param {GetFunctionLogsRequest} req
319
319
  * @param {function(string, GetFunctionLogsResponse):void} cb
320
320
  * @public