workflow scheduler create booking with a booking execution lot id
This commit is contained in:
parent
a098b3797a
commit
7d69d65dd2
@ -42,13 +42,15 @@ const (
|
|||||||
S3
|
S3
|
||||||
MEMORY
|
MEMORY
|
||||||
HARDWARE
|
HARDWARE
|
||||||
|
AZURE
|
||||||
|
GCS
|
||||||
)
|
)
|
||||||
|
|
||||||
// String() - Returns the string representation of the storage type
|
// String() - Returns the string representation of the storage type
|
||||||
func (t StorageType) String() string {
|
func (t StorageType) String() string {
|
||||||
return [...]string{"FILE", "STREAM", "API", "DATABASE", "S3", "MEMORY", "HARDWARE"}[t]
|
return [...]string{"FILE", "STREAM", "API", "DATABASE", "S3", "MEMORY", "HARDWARE", "AZURE", "GCS"}[t]
|
||||||
}
|
}
|
||||||
|
|
||||||
func TypeList() []StorageType {
|
func TypeList() []StorageType {
|
||||||
return []StorageType{FILE, STREAM, API, DATABASE, S3, MEMORY, HARDWARE}
|
return []StorageType{FILE, STREAM, API, DATABASE, S3, MEMORY, HARDWARE, AZURE, GCS}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user