palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
22 lines • 804 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
*/
/**
* ObjectReference contains enough information to let you inspect or modify the referred object.
*/
export type ObjectReference = {
/** Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds */
kind?: string;
/** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names */
name?: string;
/** UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids */
uid?: string;
};
//# sourceMappingURL=objectReference.d.ts.map