@alicloud/sae20190506 1.25.1 → 1.25.2
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/dist/client.d.ts +2 -0
- package/dist/client.js +4 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +6 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -38419,6 +38419,7 @@ export class QueryResourceStaticsResponseBodyDataRealTimeRes extends $tea.Model
|
|
|
38419
38419
|
}
|
|
38420
38420
|
|
|
38421
38421
|
export class QueryResourceStaticsResponseBodyDataSummary extends $tea.Model {
|
|
38422
|
+
activeCpu?: number;
|
|
38422
38423
|
/**
|
|
38423
38424
|
* @remarks
|
|
38424
38425
|
* The CPU usage. Unit: core per minute.
|
|
@@ -38427,6 +38428,7 @@ export class QueryResourceStaticsResponseBodyDataSummary extends $tea.Model {
|
|
|
38427
38428
|
* 3354
|
|
38428
38429
|
*/
|
|
38429
38430
|
cpu?: number;
|
|
38431
|
+
idleCpu?: number;
|
|
38430
38432
|
/**
|
|
38431
38433
|
* @remarks
|
|
38432
38434
|
* The memory usage. Unit: GiB per minute.
|
|
@@ -38437,14 +38439,18 @@ export class QueryResourceStaticsResponseBodyDataSummary extends $tea.Model {
|
|
|
38437
38439
|
memory?: number;
|
|
38438
38440
|
static names(): { [key: string]: string } {
|
|
38439
38441
|
return {
|
|
38442
|
+
activeCpu: 'ActiveCpu',
|
|
38440
38443
|
cpu: 'Cpu',
|
|
38444
|
+
idleCpu: 'IdleCpu',
|
|
38441
38445
|
memory: 'Memory',
|
|
38442
38446
|
};
|
|
38443
38447
|
}
|
|
38444
38448
|
|
|
38445
38449
|
static types(): { [key: string]: any } {
|
|
38446
38450
|
return {
|
|
38451
|
+
activeCpu: 'number',
|
|
38447
38452
|
cpu: 'number',
|
|
38453
|
+
idleCpu: 'number',
|
|
38448
38454
|
memory: 'number',
|
|
38449
38455
|
};
|
|
38450
38456
|
}
|