go-redfish/client/model_boot_source.go

30 lines
741 B
Go
Raw Normal View History

/*
* Redfish OAPI specification
*
* Partial Redfish OAPI specification for a limited client
*
* API version: 0.0.1
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
2019-09-09 00:20:08 +03:00
package client
type BootSource string
// List of BootSource
const (
NONE BootSource = "None"
PXE BootSource = "Pxe"
FLOPPY BootSource = "Floppy"
CD BootSource = "Cd"
USB BootSource = "Usb"
HDD BootSource = "Hdd"
BIOS_SETUP BootSource = "BiosSetup"
UTILITIES BootSource = "Utilities"
DIAGS BootSource = "Diags"
UEFI_SHELL BootSource = "UefiShell"
UEFI_TARGET BootSource = "UefiTarget"
SD_CARD BootSource = "SDCard"
UEFI_HTTP BootSource = "UefiHttp"
REMOTE_DRIVE BootSource = "RemoteDrive"
UEFI_BOOT_NEXT BootSource = "UefiBootNext"
)