go-redfish/client/model_task_state.go
Manoj 924b41cc22 Support for Additional Redfish APIs
Added support for the following APIs

FirmwareInventoryDownloadImage
FirmwareInventory
GetTask
UpdateService
UpdateServiceSimpleUpdate

RAID Creation Support

Also updated Makefile to add an additional  docker based target
to assist in code generation.

Change-Id: I716153fe254c7fefc6893ac76e4fa190a24029a8
2020-04-24 18:08:47 +00:00

30 lines
854 B
Go

/*
* Redfish OAPI specification
*
* Partial Redfish OAPI specification for a limited client
*
* API version: 0.0.1
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package client
// TaskState the model 'TaskState'
type TaskState string
// List of TaskState
const (
TASKSTATE_NEW TaskState = "New"
TASKSTATE_STARTING TaskState = "Starting"
TASKSTATE_RUNNING TaskState = "Running"
TASKSTATE_SUSPENDED TaskState = "Suspended"
TASKSTATE_INTERRUPTED TaskState = "Interrupted"
TASKSTATE_PENDING TaskState = "Pending"
TASKSTATE_STOPPING TaskState = "Stopping"
TASKSTATE_COMPLETED TaskState = "Completed"
TASKSTATE_KILLED TaskState = "Killed"
TASKSTATE_EXCEPTION TaskState = "Exception"
TASKSTATE_SERVICE TaskState = "Service"
TASKSTATE_CANCELLING TaskState = "Cancelling"
TASKSTATE_CANCELLED TaskState = "Cancelled"
)