@kubernetes/client-node
Version:
NodeJS client for kubernetes
44 lines (43 loc) • 1.41 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.
*/
/**
* 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 V1alpha2ResourceClaimConsumerReference {
/**
* 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 discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}