@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/dist/client.d.ts
CHANGED
|
@@ -28203,6 +28203,7 @@ export declare class QueryResourceStaticsResponseBodyDataRealTimeRes extends $te
|
|
|
28203
28203
|
});
|
|
28204
28204
|
}
|
|
28205
28205
|
export declare class QueryResourceStaticsResponseBodyDataSummary extends $tea.Model {
|
|
28206
|
+
activeCpu?: number;
|
|
28206
28207
|
/**
|
|
28207
28208
|
* @remarks
|
|
28208
28209
|
* The CPU usage. Unit: core per minute.
|
|
@@ -28211,6 +28212,7 @@ export declare class QueryResourceStaticsResponseBodyDataSummary extends $tea.Mo
|
|
|
28211
28212
|
* 3354
|
|
28212
28213
|
*/
|
|
28213
28214
|
cpu?: number;
|
|
28215
|
+
idleCpu?: number;
|
|
28214
28216
|
/**
|
|
28215
28217
|
* @remarks
|
|
28216
28218
|
* The memory usage. Unit: GiB per minute.
|
package/dist/client.js
CHANGED
|
@@ -16794,13 +16794,17 @@ exports.QueryResourceStaticsResponseBodyDataRealTimeRes = QueryResourceStaticsRe
|
|
|
16794
16794
|
class QueryResourceStaticsResponseBodyDataSummary extends $tea.Model {
|
|
16795
16795
|
static names() {
|
|
16796
16796
|
return {
|
|
16797
|
+
activeCpu: 'ActiveCpu',
|
|
16797
16798
|
cpu: 'Cpu',
|
|
16799
|
+
idleCpu: 'IdleCpu',
|
|
16798
16800
|
memory: 'Memory',
|
|
16799
16801
|
};
|
|
16800
16802
|
}
|
|
16801
16803
|
static types() {
|
|
16802
16804
|
return {
|
|
16805
|
+
activeCpu: 'number',
|
|
16803
16806
|
cpu: 'number',
|
|
16807
|
+
idleCpu: 'number',
|
|
16804
16808
|
memory: 'number',
|
|
16805
16809
|
};
|
|
16806
16810
|
}
|