mirror of
https://github.com/containers/podman.git
synced 2026-07-12 00:05:01 -04:00
14 lines
299 B
Go
14 lines
299 B
Go
package define
|
|
|
|
import "go.podman.io/common/pkg/strongunits"
|
|
|
|
type SetOptions struct {
|
|
CPUs *uint64
|
|
DiskSize *strongunits.GiB
|
|
Memory *strongunits.MiB
|
|
Rootful *bool
|
|
UserModeNetworking *bool
|
|
USBs *[]string
|
|
ImportNativeCA *bool
|
|
}
|