github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/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  }