We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1687af9 commit 3b3a3afCopy full SHA for 3b3a3af
packages/clients/src/api/baremetal/v1/marshalling.gen.ts
@@ -60,6 +60,7 @@ const unmarshalCPU = (data: unknown) => {
60
}
61
62
return {
63
+ benchmark: data.benchmark,
64
coreCount: data.core_count,
65
frequency: data.frequency,
66
name: data.name,
packages/clients/src/api/baremetal/v1/types.gen.ts
@@ -103,6 +103,8 @@ export interface CPU {
103
threadCount: number
104
/** Frequency of the CPU in MHz */
105
frequency: number
106
+ /** Benchmark of the CPU */
107
+ benchmark: string
108
109
110
/** Create server request. install */
0 commit comments