the-moby-effect
Version:
Moby/Docker API client built using effect-ts
32 lines (28 loc) • 1.1 kB
text/typescript
import * as Schema from "effect/Schema";
export class VolumePublishStatus extends Schema.Class<VolumePublishStatus>("VolumePublishStatus")(
{
/** NodeID is the ID of the swarm node this Volume is published to. */
NodeID: Schema.optional(Schema.String),
/** State is the publish state of the volume. */
State: Schema.optional(
Schema.Literal("pending-publish", "published", "pending-node-unpublish", "pending-controller-unpublish")
),
/**
* PublishContext is the PublishContext returned by the CSI plugin when
* a volume is published.
*/
PublishContext: Schema.optionalWith(
Schema.Record({
key: Schema.String,
value: Schema.String,
}),
{ nullable: true }
),
},
{
identifier: "VolumePublishStatus",
title: "volume.PublishStatus",
documentation:
"https://github.com/moby/moby/blob/a21b1a2d12e2c01542cb191eb526d7bfad0641e3/api/types/volume/cluster_volume.go#L386-L398",
}
) {}