@kubernetes/client-node
Version:
NodeJS client for kubernetes
48 lines (47 loc) • 1.23 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: release-1.28
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* ParentReference describes a reference to a parent object.
*/
export declare class V1alpha1ParentReference {
/**
* Group is the group of the object being referenced.
*/
'group'?: string;
/**
* Name is the name of the object being referenced.
*/
'name'?: string;
/**
* Namespace is the namespace of the object being referenced.
*/
'namespace'?: string;
/**
* Resource is the resource of the object being referenced.
*/
'resource'?: string;
/**
* UID is the uid of the object being referenced.
*/
'uid'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}