palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
28 lines • 1.27 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
*/
/**
* OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.
*/
export type VmOwnerReference = {
/** API version of the referent. */
apiVersion: string;
/** If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. */
blockOwnerDeletion?: boolean;
/** If true, this reference points to the managing controller. */
controller?: boolean;
/** Kind of the referent. */
kind: string;
/** Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names */
name: string;
/** UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids */
uid: string;
};
//# sourceMappingURL=vmOwnerReference.d.ts.map