UNPKG

kubernetes-models

Version:
12 lines (11 loc) 728 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1AWSElasticBlockStoreVolumeSource.mjs"; /** * Represents a Persistent Disk resource in AWS. * * An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling. */ export class AWSElasticBlockStoreVolumeSource extends Model { } setSchema(AWSElasticBlockStoreVolumeSource, "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource", addSchema); export { AWSElasticBlockStoreVolumeSource as IoK8sApiCoreV1AWSElasticBlockStoreVolumeSource };