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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
use super::*;
mod impls;
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct State {
pub id: Uuid,
pub name: StateName,
pub created: DateTime<Utc>,
pub modified: DateTime<Utc>,
pub storage_class: Option<StorageClass>,
#[serde(default)]
pub locations: StateLocations,
pub owner: Option<ClusterName>,
pub provisioning_status: ProvisioningStatus,
pub allowed_clusters: Option<Vec<ClusterName>>,
pub condition: Condition,
}
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, Hash)]
pub struct StateName(pub String);
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CreateStateDto {
pub name: StateName,
pub storage_class: Option<StorageClass>,
pub locations: CreateStateLocationsDto,
pub owner: Option<ClusterName>,
pub allowed_clusters: Option<Vec<ClusterName>>,
}
#[derive(Clone, Copy, Debug, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[serde(rename_all = "lowercase")]
pub enum ProvisioningStatus {
Ready,
Provisioning,
Error,
}
#[derive(Clone, Copy, Debug, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[serde(rename_all = "lowercase")]
pub enum Condition {
Green,
Yellow,
Red,
}
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct StateLocations {
#[serde(default)]
pub aws: Vec<StateLocationAws>,
#[serde(default)]
pub azure: Vec<StateLocationAzure>,
}
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StateLocationAzure {
pub region: AzureRegion,
pub status: StateLocationStatus,
pub volumes: Vec<VolumeLocation>,
pub private_link_service: Option<PrivateLinkServiceAzure>,
}
#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StateLocationAws {
pub region: AwsRegion,
pub status: StateLocationStatus,
pub volumes: Vec<VolumeLocation>,
pub private_link_service: Option<PrivateLinkServiceAws>,
}
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StorageClass {
pub name: String,
pub volume_binding_mode: VolumeBindingMode,
pub fs_type: String,
pub mount_options: Option<String>,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum StateLocationStatus {
Ok,
Provisioning,
Recovering,
Deleting,
Error,
}
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct CreateStateLocationsDto {
pub aws: Vec<CreateStateLocationAwsDto>,
pub azure: Vec<CreateStateLocationAzureDto>,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct CreateStateLocationAwsDto {
pub region: AwsRegion,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct CreateStateLocationAzureDto {
pub region: AzureRegion,
}