/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: release-1.31 * * * 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 V1beta1ParentReference { /** * 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 discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }