52 lines
1.8 KiB
TypeScript
52 lines
1.8 KiB
TypeScript
/**
|
|
* Kubernetes
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: v1.22.2
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
/**
|
|
* 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 declare class V1OwnerReference {
|
|
/**
|
|
* 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. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
*/
|
|
'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;
|
|
static discriminator: string | undefined;
|
|
static attributeTypeMap: Array<{
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
}>;
|
|
static getAttributeTypeMap(): {
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
}[];
|
|
}
|