@kubernetes-models/flux-cd
Version:
19 lines (18 loc) • 750 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* LocalObjectReference contains enough information to locate the referenced Kubernetes resource object.
*/
export interface ILocalObjectReference {
/**
* Name of the referent.
*/
"name": string;
}
/**
* LocalObjectReference contains enough information to locate the referenced Kubernetes resource object.
*/
export declare class LocalObjectReference extends Model<ILocalObjectReference> implements ILocalObjectReference {
"name": string;
constructor(data?: ModelData<ILocalObjectReference>);
}
export type { ILocalObjectReference as IComGithubFluxcdPkgApisMetaLocalObjectReference, LocalObjectReference as ComGithubFluxcdPkgApisMetaLocalObjectReference };