mirror of
https://github.com/FlipsideCrypto/databricks-sdk-golang.git
synced 2026-02-06 10:57:34 +00:00
11 lines
199 B
Go
11 lines
199 B
Go
package models
|
|
|
|
type RunResultState string
|
|
|
|
const (
|
|
RunResultStateSuccess = "SUCCESS"
|
|
RunResultStateFailed = "FAILED"
|
|
RunResultStateTimedout = "TIMEDOUT"
|
|
RunResultStateCanceled = "CANCELED"
|
|
)
|