diff --git a/proto/shared.proto b/proto/shared.proto index cdadd52..fbbedc6 100644 --- a/proto/shared.proto +++ b/proto/shared.proto @@ -57,6 +57,7 @@ message Container { optional string package_url = 1; string node = 2; Resource resource = 3; + string uuid = 4; } message Resource { diff --git a/src/lib.rs b/src/lib.rs index 4bd7d5e..65ce9f4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,6 +84,9 @@ pub mod config { pub node: String, #[prost(message, optional, tag = "3")] pub resource: Option, + #[serde(default)] + #[prost(string, tag = "4")] + pub uuid: String, } #[derive(Clone, Serialize, Deserialize, PartialEq, prost::Message)]