-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4079 from systeminit/jobelenus/chainsaw-for-funcs2
Func Chainsaw
- Loading branch information
Showing
46 changed files
with
1,400 additions
and
2,073 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export type ActionPrototypeId = string; | ||
export type ActionId = string; | ||
|
||
export enum ActionState { | ||
Dispatched = "Dispatched", | ||
Failed = "Failed", | ||
OnHold = "OnHold", | ||
Queued = "Queued", | ||
Running = "Running", | ||
} | ||
|
||
export enum ActionKind { | ||
Create = "Create", | ||
Destroy = "Destroy", | ||
Refresh = "Refresh", | ||
Manual = "Manual", | ||
Update = "Update", | ||
} | ||
|
||
export interface ActionPrototype { | ||
id: ActionPrototypeId; | ||
name: string; | ||
displayName: string; | ||
} | ||
|
||
export enum ActionResultState { | ||
Success = "Success", | ||
Failure = "Failure", | ||
Unknown = "Unknown", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.