the-moby-effect
Version:
Moby/Docker API client built using effect-ts
120 lines • 5.39 kB
TypeScript
import * as Schema from "effect/Schema";
import * as VolumeAccessMode from "./VolumeAccessMode.generated.js";
import * as VolumeCapacityRange from "./VolumeCapacityRange.generated.js";
import * as VolumeSecret from "./VolumeSecret.generated.js";
import * as VolumeTopologyRequirement from "./VolumeTopologyRequirement.generated.js";
declare const ClusterVolumeSpec_base: Schema.Class<ClusterVolumeSpec, {
/**
* Group defines the volume group of this volume. Volumes belonging to
* the same group can be referred to by group name when creating
* Services. Referring to a volume by group instructs swarm to treat
* volumes in that group interchangeably for the purpose of scheduling.
* Volumes with an empty string for a group technically all belong to
* the same, empty string group.
*/
Group: Schema.optional<typeof Schema.String>;
/** AccessMode defines how the volume is used by tasks. */
AccessMode: Schema.optionalWith<typeof VolumeAccessMode.VolumeAccessMode, {
nullable: true;
}>;
/**
* AccessibilityRequirements specifies where in the cluster a volume
* must be accessible from.
*
* This field must be empty if the plugin does not support
* VOLUME_ACCESSIBILITY_CONSTRAINTS capabilities. If it is present but
* the plugin does not support it, volume will not be created.
*
* If AccessibilityRequirements is empty, but the plugin does support
* VOLUME_ACCESSIBILITY_CONSTRAINTS, then Swarm kit will assume the
* entire cluster is a valid target for the volume.
*/
AccessibilityRequirements: Schema.optionalWith<typeof VolumeTopologyRequirement.VolumeTopologyRequirement, {
nullable: true;
}>;
/**
* CapacityRange defines the desired capacity that the volume should be
* created with. If nil, the plugin will decide the capacity.
*/
CapacityRange: Schema.optionalWith<typeof VolumeCapacityRange.VolumeCapacityRange, {
nullable: true;
}>;
/**
* Secrets defines Swarm Secrets that are passed to the CSI storage
* plugin when operating on this volume.
*/
Secrets: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof VolumeSecret.VolumeSecret>>, {
nullable: true;
}>;
/**
* Availability is the Volume's desired availability. Analogous to Node
* Availability, this allows the user to take volumes offline in order
* to update or delete them.
*/
Availability: Schema.optional<Schema.Literal<["active", "pause", "drain"]>>;
}, Schema.Struct.Encoded<{
/**
* Group defines the volume group of this volume. Volumes belonging to
* the same group can be referred to by group name when creating
* Services. Referring to a volume by group instructs swarm to treat
* volumes in that group interchangeably for the purpose of scheduling.
* Volumes with an empty string for a group technically all belong to
* the same, empty string group.
*/
Group: Schema.optional<typeof Schema.String>;
/** AccessMode defines how the volume is used by tasks. */
AccessMode: Schema.optionalWith<typeof VolumeAccessMode.VolumeAccessMode, {
nullable: true;
}>;
/**
* AccessibilityRequirements specifies where in the cluster a volume
* must be accessible from.
*
* This field must be empty if the plugin does not support
* VOLUME_ACCESSIBILITY_CONSTRAINTS capabilities. If it is present but
* the plugin does not support it, volume will not be created.
*
* If AccessibilityRequirements is empty, but the plugin does support
* VOLUME_ACCESSIBILITY_CONSTRAINTS, then Swarm kit will assume the
* entire cluster is a valid target for the volume.
*/
AccessibilityRequirements: Schema.optionalWith<typeof VolumeTopologyRequirement.VolumeTopologyRequirement, {
nullable: true;
}>;
/**
* CapacityRange defines the desired capacity that the volume should be
* created with. If nil, the plugin will decide the capacity.
*/
CapacityRange: Schema.optionalWith<typeof VolumeCapacityRange.VolumeCapacityRange, {
nullable: true;
}>;
/**
* Secrets defines Swarm Secrets that are passed to the CSI storage
* plugin when operating on this volume.
*/
Secrets: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof VolumeSecret.VolumeSecret>>, {
nullable: true;
}>;
/**
* Availability is the Volume's desired availability. Analogous to Node
* Availability, this allows the user to take volumes offline in order
* to update or delete them.
*/
Availability: Schema.optional<Schema.Literal<["active", "pause", "drain"]>>;
}>, never, {
readonly Group?: string | undefined;
} & {
readonly AccessMode?: VolumeAccessMode.VolumeAccessMode | undefined;
} & {
readonly AccessibilityRequirements?: VolumeTopologyRequirement.VolumeTopologyRequirement | undefined;
} & {
readonly CapacityRange?: VolumeCapacityRange.VolumeCapacityRange | undefined;
} & {
readonly Secrets?: readonly (VolumeSecret.VolumeSecret | null)[] | undefined;
} & {
readonly Availability?: "active" | "pause" | "drain" | undefined;
}, {}, {}>;
export declare class ClusterVolumeSpec extends ClusterVolumeSpec_base {
}
export {};
//# sourceMappingURL=ClusterVolumeSpec.generated.d.ts.map