github.com/tonistiigi/docker@v0.10.1-0.20240229224939-974013b0dc6a/api/types/container/filesystem_change.go (about) 1 package container 2 3 // This file was generated by the swagger tool. 4 // Editing this file might prove futile when you re-run the swagger generate command 5 6 // FilesystemChange Change in the container's filesystem. 7 // 8 // swagger:model FilesystemChange 9 type FilesystemChange struct { 10 11 // kind 12 // Required: true 13 Kind ChangeType `json:"Kind"` 14 15 // Path to file or directory that has changed. 16 // 17 // Required: true 18 Path string `json:"Path"` 19 }