palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
25 lines • 874 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 { MaasInstanceType } from './maasInstanceType';
import type { MaasNetworkConfigEntity } from './maasNetworkConfigEntity';
export type MaasMachinePoolCloudConfigEntity = {
azs?: string[];
instanceType: MaasInstanceType;
network?: MaasNetworkConfigEntity;
/** the resource pool */
resourcePool: string;
/** Tags in maas environment */
tags?: string[];
/** useLxdVm enables on-demand LXD VM provisioning for this machine pool (workload clusters only).
When true, machines in this pool are created as MAAS LXD-backed VMs instead of bare metal. */
useLxdVm?: boolean;
};
//# sourceMappingURL=maasMachinePoolCloudConfigEntity.d.ts.map