1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Deserialize, JsonSchema, PartialEq, Serialize)]
#[serde(rename = "notification")]
pub struct NotificationWithoutCondition {
  /// Label for the Notification
  pub label: String,
  /// Endpoint for the Notification
  pub endpoint: String,
  /// Credentials for the Notification
  pub credentials: Option<String>,
}

#[derive(Clone, Debug, Deserialize, JsonSchema, PartialEq, Serialize)]
#[serde(rename = "notification")]
pub struct NotificationHook {
  /// Label for the Notification
  pub label: String,
  /// Endpoint for the Notification
  pub endpoint: String,
  /// Credentials for the Notification
  pub credentials: Option<String>,
  /// Condition to execute the Notification
  pub conditions: Vec<NotificationHookCondition>,
}

#[derive(Clone, Debug, Deserialize, JsonSchema, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum NotificationHookCondition {
  JobCompleted,
  JobError,
  WorkflowCompleted,
  WorkflowError,
}