github.com/rish1988/moby@v25.0.2+incompatible/api/types/checkpoint/options.go (about) 1 package checkpoint 2 3 // CreateOptions holds parameters to create a checkpoint from a container. 4 type CreateOptions struct { 5 CheckpointID string 6 CheckpointDir string 7 Exit bool 8 } 9 10 // ListOptions holds parameters to list checkpoints for a container. 11 type ListOptions struct { 12 CheckpointDir string 13 } 14 15 // DeleteOptions holds parameters to delete a checkpoint from a container. 16 type DeleteOptions struct { 17 CheckpointID string 18 CheckpointDir string 19 }