the-moby-effect
Version:
Moby/Docker API client built using effect-ts
33 lines • 1.28 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const VolumeCapacityRange_base: Schema.Class<VolumeCapacityRange, {
/**
* RequiredBytes specifies that a volume must be at least this big. The
* value of 0 indicates an unspecified minimum.
*/
RequiredBytes: MobySchemas.Int64Schemas.$Int64;
/**
* LimitBytes specifies that a volume must not be bigger than this. The
* value of 0 indicates an unspecified maximum
*/
LimitBytes: MobySchemas.Int64Schemas.$Int64;
}, Schema.Struct.Encoded<{
/**
* RequiredBytes specifies that a volume must be at least this big. The
* value of 0 indicates an unspecified minimum.
*/
RequiredBytes: MobySchemas.Int64Schemas.$Int64;
/**
* LimitBytes specifies that a volume must not be bigger than this. The
* value of 0 indicates an unspecified maximum
*/
LimitBytes: MobySchemas.Int64Schemas.$Int64;
}>, never, {
readonly RequiredBytes: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly LimitBytes: MobySchemas.Int64Schemas.Int64Brand;
}, {}, {}>;
export declare class VolumeCapacityRange extends VolumeCapacityRange_base {
}
export {};
//# sourceMappingURL=VolumeCapacityRange.generated.d.ts.map