UNPKG

kubernetes-models

Version:
10 lines (9 loc) 607 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../../_schemas/IoK8sApiStorageV1VolumeAttachmentSource.mjs"; /** * VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set. */ export class VolumeAttachmentSource extends Model { } setSchema(VolumeAttachmentSource, "io.k8s.api.storage.v1.VolumeAttachmentSource", addSchema); export { VolumeAttachmentSource as IoK8sApiStorageV1VolumeAttachmentSource };