palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
34 lines • 901 B
TypeScript
/**
* Copyright (c) Spectro Cloud
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* Palette APIs - 4.8
* OpenAPI spec version: v1
*/
import type { InstanceCost } from './instanceCost';
/**
* Cloud Instance type details
*/
export type InstanceType = {
/** Category of instance type */
category?: string;
cost?: InstanceCost;
/** Cpu of instance type */
cpu?: number;
/** Gpu of instance type */
gpu?: number;
/** Memory of instance type */
memory?: number;
/** Non supported zones of the instance in a particular region */
nonSupportedZones?: string[];
/** Price of instance type */
price?: number;
/** Supported architecture of the instance */
supportedArchitectures?: string[];
/** Type of instance type */
type?: string;
};
//# sourceMappingURL=instanceType.d.ts.map