We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 560328a commit 1f567e4Copy full SHA for 1f567e4
src/main/kotlin/com/cosmotech/api/events/RunEvents.kt
@@ -26,5 +26,6 @@ class RunDeleted(
26
val organizationId: String,
27
val workspaceId: String,
28
val runnerId: String,
29
- val runId: String
+ val runId: String,
30
+ val lastRun: String?
31
) : CsmEvent(publisher)
src/main/kotlin/com/cosmotech/api/events/RunnerEvents.kt
@@ -22,3 +22,10 @@ class RunnerDeleted(
22
23
val runnerId: String
24
25
+
+class UpdateRunnerStatus(
+ publisher: Any,
+ val organizationId: String,
+ val workspaceId: String,
+ val runnerId: String
+) : CsmEvent(publisher)
0 commit comments