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 c2728e1 commit 9b0bd7eCopy full SHA for 9b0bd7e
propolis-client/Cargo.toml
@@ -14,4 +14,4 @@ panic = "abort"
14
[dependencies]
15
schemars = { version = "0.8", features = [ "uuid" ] }
16
serde = "1.0"
17
-uuid = "0.8"
+uuid = { version = "0.8", features = [ "serde", "v4" ] }
propolis-client/src/api.rs
@@ -163,8 +163,9 @@ pub struct DiskAttachmentInfo {
163
164
#[derive(Deserialize, Serialize, JsonSchema)]
165
pub enum DiskAttachmentState {
166
- Attached(DiskAttachmentInfo),
+ Attached(Uuid),
167
Detached,
168
+ Destroyed,
169
Faulted,
170
}
171
0 commit comments