@kubernetes/client-node
Version:
NodeJS client for kubernetes
50 lines (49 loc) • 1.29 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.30.1
*
*
* 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;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}