1
0
mirror of https://github.com/rancher/types.git synced 2025-07-14 21:54:03 +00:00

add active type

This commit is contained in:
Daishan Peng 2017-12-14 10:50:13 -07:00 committed by Darren Shepherd
parent a673adfbf6
commit 3cb03242bd

View File

@ -275,13 +275,12 @@ type MachineDriverCondition struct {
}
type MachineDriverSpec struct {
DisplayName string `json:"displayName"`
Description string `json:"description"`
URL string `json:"url"`
ExternalID string `json:"externalId"`
Builtin bool `json:"builtin"`
DefaultActive bool `json:"defaultActive"`
ActivateOnCreate bool `json:"activateOnCreate"`
Checksum string `json:"checksum"`
UIURL string `json:"uiUrl"`
DisplayName string `json:"displayName"`
Description string `json:"description"`
URL string `json:"url"`
ExternalID string `json:"externalId"`
Builtin bool `json:"builtin"`
Active bool `json:"active"`
Checksum string `json:"checksum"`
UIURL string `json:"uiUrl"`
}