palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
22 lines • 703 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 { VmMultusNetwork } from './vmMultusNetwork';
import type { VmPodNetwork } from './vmPodNetwork';
/**
* Network represents a network type and a resource that should be connected to the vm.
*/
export type VmNetwork = {
multus?: VmMultusNetwork;
/** Network name. Must be a DNS_LABEL and unique within the vm. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */
name: string;
pod?: VmPodNetwork;
};
//# sourceMappingURL=vmNetwork.d.ts.map