mirror of
https://github.com/containers/podman.git
synced 2025-12-12 09:50:25 +08:00
Pull in updates made to the filters code for images. Filters now perform an AND operation except for th reference filter which does an OR operation for positive case but an AND operation for negative cases. Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
29 lines
598 B
Go
29 lines
598 B
Go
/*
|
|
* HCS API
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: 2.1
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package hcsschema
|
|
|
|
type FileSystemFilterType string
|
|
|
|
const (
|
|
UnionFS FileSystemFilterType = "UnionFS"
|
|
WCIFS FileSystemFilterType = "WCIFS"
|
|
)
|
|
|
|
type Layer struct {
|
|
Id string `json:"Id,omitempty"`
|
|
|
|
Path string `json:"Path,omitempty"`
|
|
|
|
PathType string `json:"PathType,omitempty"`
|
|
|
|
// Unspecified defaults to Enabled
|
|
Cache string `json:"Cache,omitempty"`
|
|
}
|