/* generated using openapi-typescript-codegen -- do no edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { ClusterVolumeSpec } from './ClusterVolumeSpec'; /** * Volume configuration */ export type VolumeCreateOptions = { /** * The new volume's name. If not specified, Docker generates a name. * */ Name?: string; /** * Name of the volume driver to use. */ Driver?: string; /** * A mapping of driver options and values. These options are * passed directly to the driver and are driver specific. * */ DriverOpts?: Record; /** * User-defined key/value metadata. */ Labels?: Record; ClusterVolumeSpec?: ClusterVolumeSpec; };