kubernetes-models
Version:
19 lines (18 loc) • 942 B
TypeScript
import { IIoK8sApiCoreV1DownwardAPIVolumeFile } from "./DownwardAPIVolumeFile";
import { Model } from "@kubernetes-models/base";
/**
* Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
*/
export interface IDownwardAPIProjection {
/**
* Items is a list of DownwardAPIVolume file
*/
"items"?: Array<IIoK8sApiCoreV1DownwardAPIVolumeFile>;
}
/**
* Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
*/
export declare class DownwardAPIProjection extends Model<IDownwardAPIProjection> implements IDownwardAPIProjection {
"items"?: Array<IIoK8sApiCoreV1DownwardAPIVolumeFile>;
}
export { IDownwardAPIProjection as IIoK8sApiCoreV1DownwardAPIProjection, DownwardAPIProjection as IoK8sApiCoreV1DownwardAPIProjection };