UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

20 lines 775 B
/** * 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 { VmVirtualMachineStateChangeRequestData } from './vmVirtualMachineStateChangeRequestData'; export type VmVirtualMachineStateChangeRequest = { /** Indicates the type of action that is requested. e.g. Start or Stop */ action: string; /** Provides additional data in order to perform the Action */ data?: VmVirtualMachineStateChangeRequestData; /** Indicates the UUID of an existing Virtual Machine Instance that this change request applies to -- if applicable */ uid?: string; }; //# sourceMappingURL=vmVirtualMachineStateChangeRequest.d.ts.map