tencentcloud-sdk-nodejs-intl-en 3.0.448 → 3.0.449
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,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.449";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -5502,12 +5502,19 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
5502
5502
|
this.TotalConcurrencyMem = null;
|
|
5503
5503
|
|
|
5504
5504
|
/**
|
|
5505
|
-
*
|
|
5506
|
-
Note: This field may return `null`, indicating that no valid
|
|
5505
|
+
* Concurrency usage of the namespace
|
|
5506
|
+
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
5507
5507
|
* @type {number || null}
|
|
5508
5508
|
*/
|
|
5509
5509
|
this.TotalAllocatedConcurrencyMem = null;
|
|
5510
5510
|
|
|
5511
|
+
/**
|
|
5512
|
+
* Provisioned concurrency usage of the namespace
|
|
5513
|
+
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
5514
|
+
* @type {number || null}
|
|
5515
|
+
*/
|
|
5516
|
+
this.TotalAllocatedProvisionedMem = null;
|
|
5517
|
+
|
|
5511
5518
|
}
|
|
5512
5519
|
|
|
5513
5520
|
/**
|
|
@@ -5522,6 +5529,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
5522
5529
|
this.FunctionsCount = 'FunctionsCount' in params ? params.FunctionsCount : null;
|
|
5523
5530
|
this.TotalConcurrencyMem = 'TotalConcurrencyMem' in params ? params.TotalConcurrencyMem : null;
|
|
5524
5531
|
this.TotalAllocatedConcurrencyMem = 'TotalAllocatedConcurrencyMem' in params ? params.TotalAllocatedConcurrencyMem : null;
|
|
5532
|
+
this.TotalAllocatedProvisionedMem = 'TotalAllocatedProvisionedMem' in params ? params.TotalAllocatedProvisionedMem : null;
|
|
5525
5533
|
|
|
5526
5534
|
}
|
|
5527
5535
|
}
|