kubernetes-models
Version:
10 lines (9 loc) • 490 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../_schemas/IoK8sApiCoreV1ISCSIVolumeSource.mjs";
/**
* Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.
*/
export class ISCSIVolumeSource extends Model {
}
setSchema(ISCSIVolumeSource, "io.k8s.api.core.v1.ISCSIVolumeSource", addSchema);
export { ISCSIVolumeSource as IoK8sApiCoreV1ISCSIVolumeSource };