UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

30 lines 871 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 { ObjectReference } from './objectReference'; import type { ObjectMeta } from './objectMeta'; import type { EventRelatedObject } from './eventRelatedObject'; import type { EventSource } from './eventSource'; /** * Describes the component event details */ export type Event = { involvedObject?: ObjectReference; /** Describes message associated with the event */ message?: string; metadata?: ObjectMeta; /** Describes the reason for the event */ reason?: string; relatedObject?: EventRelatedObject; /** Describes the gravitas for the event */ severity?: string; source?: EventSource; }; //# sourceMappingURL=event.d.ts.map