Initial windows runtime work
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
22
windows/hcs/types.go
Normal file
22
windows/hcs/types.go
Normal file
@@ -0,0 +1,22 @@
|
||||
// +build windows
|
||||
|
||||
package hcs
|
||||
|
||||
import "time"
|
||||
|
||||
type Configuration struct {
|
||||
UseHyperV bool `json:"useHyperV,omitempty"`
|
||||
|
||||
Layers []string `json:"layers"`
|
||||
|
||||
TerminateDuration time.Duration `json:"terminateDuration",omitempty`
|
||||
|
||||
IgnoreFlushesDuringBoot bool `json:"ignoreFlushesDuringBoot,omitempty"`
|
||||
|
||||
AllowUnqualifiedDNSQuery bool `json:"allowUnqualifiedDNSQuery,omitempty"`
|
||||
DNSSearchList []string `json:"dnsSearchList,omitempty"`
|
||||
NetworkEndpoints []string `json:"networkEndpoints,omitempty"`
|
||||
NetworkSharedContainerID string
|
||||
|
||||
Credentials string `json:"credentials,omitempty"`
|
||||
}
|
||||
Reference in New Issue
Block a user