the-moby-effect
Version:
Moby/Docker API client built using effect-ts
45 lines • 1.7 kB
TypeScript
import * as Schema from "effect/Schema";
import * as ClusterVolumeSpec from "./ClusterVolumeSpec.generated.js";
declare const VolumeCreateOptions_base: Schema.Class<VolumeCreateOptions, {
ClusterVolumeSpec: Schema.optionalWith<typeof ClusterVolumeSpec.ClusterVolumeSpec, {
nullable: true;
}>;
Driver: Schema.optional<typeof Schema.String>;
DriverOpts: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
Labels: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
Name: Schema.optional<typeof Schema.String>;
}, Schema.Struct.Encoded<{
ClusterVolumeSpec: Schema.optionalWith<typeof ClusterVolumeSpec.ClusterVolumeSpec, {
nullable: true;
}>;
Driver: Schema.optional<typeof Schema.String>;
DriverOpts: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
Labels: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
Name: Schema.optional<typeof Schema.String>;
}>, never, {
readonly ClusterVolumeSpec?: ClusterVolumeSpec.ClusterVolumeSpec | undefined;
} & {
readonly Name?: string | undefined;
} & {
readonly Labels?: {
readonly [x: string]: string;
} | undefined;
} & {
readonly Driver?: string | undefined;
} & {
readonly DriverOpts?: {
readonly [x: string]: string;
} | undefined;
}, {}, {}>;
export declare class VolumeCreateOptions extends VolumeCreateOptions_base {
}
export {};
//# sourceMappingURL=VolumeCreateOptions.generated.d.ts.map