UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

35 lines 1.13 kB
/** * 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 { AwsLaunchTemplate } from './awsLaunchTemplate'; import type { EksMachineCloudConfigEntityCapacityType } from './eksMachineCloudConfigEntityCapacityType'; import type { SpotMarketOptions } from './spotMarketOptions'; import type { EksSubnetEntity } from './eksSubnetEntity'; export type EksMachineCloudConfigEntity = { /** ami type */ amiType?: string; awsLaunchTemplate?: AwsLaunchTemplate; azs?: string[]; /** EC2 instance capacity type */ capacityType?: EksMachineCloudConfigEntityCapacityType; /** flag to know if aws launch template is enabled */ enableAwsLaunchTemplate?: boolean; /** instance type */ instanceType?: string; /** * rootDeviceSize in GBs * @minimum 1 * @maximum 2000 */ rootDeviceSize?: number; spotMarketOptions?: SpotMarketOptions; subnets?: EksSubnetEntity[]; }; //# sourceMappingURL=eksMachineCloudConfigEntity.d.ts.map