UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

46 lines 1.59 kB
/** * 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 { Time } from './time'; import type { SpectroClusterAddOnService } from './spectroClusterAddOnService'; import type { APIEndpoint } from './aPIEndpoint'; import type { ClusterImport } from './clusterImport'; import type { ClusterCondition } from './clusterCondition'; import type { ClusterFips } from './clusterFips'; import type { ClusterLocation } from './clusterLocation'; import type { ClusterPackStatus } from './clusterPackStatus'; import type { ProfileStatus } from './profileStatus'; import type { ClusterRepaveStatus } from './clusterRepaveStatus'; import type { LoadBalancerService } from './loadBalancerService'; import type { SpcApply } from './spcApply'; import type { Upgrades } from './upgrades'; import type { Virtual } from './virtual'; /** * SpectroClusterStatus */ export type SpectroClusterStatus = { abortTimestamp?: Time; addOnServices?: SpectroClusterAddOnService[]; apiEndpoints?: APIEndpoint[]; clusterImport?: ClusterImport; conditions?: ClusterCondition[]; fips?: ClusterFips; location?: ClusterLocation; packs?: ClusterPackStatus[]; profileStatus?: ProfileStatus; repave?: ClusterRepaveStatus; services?: LoadBalancerService[]; spcApply?: SpcApply; /** current operational state */ state?: string; upgrades?: Upgrades[]; virtual?: Virtual; }; //# sourceMappingURL=spectroClusterStatus.d.ts.map