@kubernetes/client-node
Version:
NodeJS client for kubernetes
50 lines (49 loc) • 1.55 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.32.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.
*/
export declare class V1beta1ResourceClaimConsumerReference {
/**
* APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.
*/
'apiGroup'?: string;
/**
* Name is the name of resource being referenced.
*/
'name': string;
/**
* Resource is the type of resource being referenced, for example \"pods\".
*/
'resource': string;
/**
* UID identifies exactly one incarnation of the resource.
*/
'uid': 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();
}