kubernetes-models
Version:
18 lines (17 loc) • 772 B
TypeScript
import { Model } from "@kubernetes-models/base";
/**
* LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.
*/
export interface ILocalObjectReference {
/**
* Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
*/
"name"?: string;
}
/**
* LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.
*/
export declare class LocalObjectReference extends Model<ILocalObjectReference> implements ILocalObjectReference {
"name"?: string;
}
export { ILocalObjectReference as IIoK8sApiCoreV1LocalObjectReference, LocalObjectReference as IoK8sApiCoreV1LocalObjectReference };