UNPKG

kubernetes-models

Version:
10 lines (9 loc) 521 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1DownwardAPIProjection.mjs"; /** * 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 class DownwardAPIProjection extends Model { } setSchema(DownwardAPIProjection, "io.k8s.api.core.v1.DownwardAPIProjection", addSchema); export { DownwardAPIProjection as IoK8sApiCoreV1DownwardAPIProjection };