palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
46 lines • 1.3 kB
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
*/
/**
* CloudStack network
*/
export type CloudStackNetwork = {
/** CIDR block for the network */
cidr?: string;
/** Display text for the network */
displayText?: string;
/** Gateway IP address for the network */
gateway?: string;
/** Network ID */
id?: string;
/** Whether this is the default network */
isDefault?: boolean;
/** Whether the network is shared across accounts */
isShared?: boolean;
/** Network name */
name?: string;
/** Network mask for the network */
netmask?: string;
/** Network domain */
networkDomain?: string;
/** Network offering name */
networkOffering?: string;
/** Current state of the network (Setup, Allocated, etc.) */
state?: string;
/** Traffic type of the network (Guest, Management, etc.) */
trafficType?: string;
/** Network type - Isolated, Shared, etc. */
type?: string;
/** Zone ID where the network is located */
zoneId?: string;
/** Zone name where the network is located */
zoneName?: string;
};
//# sourceMappingURL=cloudStackNetwork.d.ts.map