chore: fix tasks

This commit is contained in:
2023-03-10 23:39:23 +01:00
parent 7133bfae95
commit e642778d90
3 changed files with 44 additions and 4 deletions

View File

@@ -22,13 +22,13 @@ pub struct SecretId(String);
pub struct SocketId(String);
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
pub struct BuildArg {
pub name: String,
pub value: String,
pub name: String,
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
pub struct PipelineLabel {
pub value: String,
pub name: String,
pub value: String,
}
#[derive(Debug, Clone)]
pub struct CacheVolume {
@@ -2764,12 +2764,12 @@ impl Socket {
}
#[derive(Serialize, Deserialize, Clone, PartialEq, Debug)]
pub enum CacheSharingMode {
PRIVATE,
LOCKED,
SHARED,
PRIVATE,
}
#[derive(Serialize, Deserialize, Clone, PartialEq, Debug)]
pub enum NetworkProtocol {
TCP,
UDP,
TCP,
}