palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
24 lines • 781 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 { GcpManagedClusterConfig } from './gcpManagedClusterConfig';
/**
* Cluster level configuration for gcp cloud and applicable for all the machine pools
*/
export type GcpClusterConfig = {
managedClusterConfig?: GcpManagedClusterConfig;
/** NetworkName if empty would create VPC Network in auto mode. If provided, custom VPC network will be used */
network?: string;
/** Name of the project in which cluster is to be deployed */
project: string;
/** GCP region for the cluster */
region: string;
};
//# sourceMappingURL=gcpClusterConfig.d.ts.map