kubernetes-models
Version:
19 lines (18 loc) • 841 B
TypeScript
import { ModelData, 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;
constructor(data?: ModelData<ILocalObjectReference>);
}
export { ILocalObjectReference as IIoK8sApiCoreV1LocalObjectReference, LocalObjectReference as IoK8sApiCoreV1LocalObjectReference };