2022-11-04 00:49:07 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2023-06-01 23:01:43 +08:00
|
|
|
message Error {
|
|
|
|
string details = 1;
|
2022-11-04 00:49:07 +08:00
|
|
|
}
|
|
|
|
|
2023-02-28 00:45:14 +08:00
|
|
|
message Secret {
|
|
|
|
string name = 1;
|
|
|
|
string value = 2;
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:16:47 +08:00
|
|
|
message SecretCreated {
|
|
|
|
string name = 1;
|
|
|
|
string value = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SecretUpdated {
|
|
|
|
string name = 1;
|
|
|
|
string value = 2;
|
|
|
|
}
|
|
|
|
|
2023-02-28 00:45:14 +08:00
|
|
|
message SecretDeleted {
|
|
|
|
string name = 1;
|
|
|
|
}
|
|
|
|
|
2023-08-23 05:25:14 +08:00
|
|
|
message FileSystem {
|
|
|
|
string id = 1;
|
|
|
|
string name = 2;
|
|
|
|
string type = 3;
|
|
|
|
string value = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message FileSystemCreated {
|
|
|
|
string id = 1;
|
|
|
|
string name = 2;
|
|
|
|
string type = 3;
|
|
|
|
string value = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message FileSystemUpdated {
|
|
|
|
string id = 1;
|
|
|
|
string name = 2;
|
|
|
|
string type = 3;
|
|
|
|
string value = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message FileSystemDeleted {
|
|
|
|
string id = 1;
|
|
|
|
}
|
|
|
|
|
2023-12-07 05:53:49 +08:00
|
|
|
message DeploymentGroupSecret {
|
|
|
|
string name = 1;
|
|
|
|
string value = 2;
|
|
|
|
string deployment_group_id = 3;
|
|
|
|
}
|
|
|
|
|
2023-11-15 04:20:46 +08:00
|
|
|
message DeploymentGroup {
|
|
|
|
string id = 1;
|
|
|
|
string name = 2;
|
|
|
|
string mode = 3;
|
2023-12-07 05:53:49 +08:00
|
|
|
repeated DeploymentGroupSecret secrets = 4;
|
2024-01-16 05:09:15 +08:00
|
|
|
string clustering = 5;
|
|
|
|
string zta_provider = 6;
|
|
|
|
string zta_key = 7;
|
2024-01-31 01:20:46 +08:00
|
|
|
repeated AgentKey agent_keys = 8;
|
2024-03-08 03:47:33 +08:00
|
|
|
repeated DeployedApp deployed_apps = 9;
|
2023-11-15 04:20:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message DeploymentGroupCreated {
|
|
|
|
string id = 1;
|
|
|
|
string name = 2;
|
|
|
|
string mode = 3;
|
2023-12-07 05:53:49 +08:00
|
|
|
repeated DeploymentGroupSecret secrets = 4;
|
2024-01-16 05:09:15 +08:00
|
|
|
string clustering = 5;
|
|
|
|
string zta_provider = 6;
|
|
|
|
string zta_key = 7;
|
2024-01-31 01:20:46 +08:00
|
|
|
repeated AgentKey agent_keys = 8;
|
2024-03-08 03:47:33 +08:00
|
|
|
repeated DeployedApp deployed_apps = 9;
|
2023-11-15 04:20:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message DeploymentGroupUpdated {
|
|
|
|
string id = 1;
|
|
|
|
string name = 2;
|
|
|
|
string mode = 3;
|
2023-12-07 05:53:49 +08:00
|
|
|
repeated DeploymentGroupSecret secrets = 4;
|
2024-01-16 05:09:15 +08:00
|
|
|
string clustering = 5;
|
|
|
|
string zta_provider = 6;
|
|
|
|
string zta_key = 7;
|
2024-01-31 01:20:46 +08:00
|
|
|
repeated AgentKey agent_keys = 8;
|
2024-03-08 03:47:33 +08:00
|
|
|
repeated DeployedApp deployed_apps = 9;
|
2023-11-15 04:20:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message DeploymentGroupDeleted {
|
|
|
|
string id = 1;
|
|
|
|
}
|
|
|
|
|
2024-01-31 01:20:46 +08:00
|
|
|
message AgentKey {
|
|
|
|
string id = 1;
|
|
|
|
string key = 2;
|
|
|
|
string deployment_group_id = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AgentKeyCreated {
|
|
|
|
string id = 1;
|
|
|
|
string key = 2;
|
|
|
|
string deployment_group_id = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AgentKeyDeleted {
|
|
|
|
string id = 1;
|
|
|
|
string key = 2;
|
|
|
|
string deployment_group_id = 3;
|
|
|
|
}
|
|
|
|
|
2023-06-06 19:49:09 +08:00
|
|
|
message UserConnected {
|
2023-01-07 03:14:44 +08:00
|
|
|
string name = 1;
|
2023-06-01 23:01:43 +08:00
|
|
|
repeated Secret secrets = 2;
|
2023-08-23 05:25:14 +08:00
|
|
|
repeated FileSystem file_systems = 3;
|
2024-01-06 01:17:39 +08:00
|
|
|
repeated DeploymentGroup deployment_groups = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AgentConnected {
|
|
|
|
int32 id = 1;
|
|
|
|
string name = 2;
|
|
|
|
string public_key = 3;
|
|
|
|
int32 deployment_group_id = 4;
|
|
|
|
repeated Secret secrets = 5;
|
|
|
|
repeated FileSystem file_systems = 6;
|
|
|
|
repeated DeploymentGroup deployment_groups = 7;
|
2022-11-04 00:49:07 +08:00
|
|
|
}
|
2022-12-27 08:16:47 +08:00
|
|
|
|
2024-03-08 03:47:33 +08:00
|
|
|
message DeployedApp {
|
|
|
|
string id = 1;
|
|
|
|
string title = 2;
|
|
|
|
string sha = 3;
|
|
|
|
string archive_url = 4;
|
|
|
|
string app_id = 5;
|
|
|
|
string slug = 6;
|
|
|
|
string deployment_group_id = 7;
|
|
|
|
string deployed_by = 8;
|
|
|
|
string deployed_at = 9;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AppDeploymentCreated {
|
|
|
|
string id = 1;
|
|
|
|
string title = 2;
|
|
|
|
string sha = 3;
|
|
|
|
string archive_url = 4;
|
|
|
|
string app_id = 5;
|
|
|
|
string slug = 6;
|
|
|
|
string deployment_group_id = 7;
|
|
|
|
string deployed_by = 8;
|
|
|
|
string deployed_at = 9;
|
|
|
|
}
|
|
|
|
|
2024-03-15 17:33:35 +08:00
|
|
|
message UserDeleted {
|
|
|
|
string id = 1;
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:16:47 +08:00
|
|
|
message Event {
|
|
|
|
oneof type {
|
2023-06-01 23:01:43 +08:00
|
|
|
SecretCreated secret_created = 1;
|
|
|
|
SecretUpdated secret_updated = 2;
|
|
|
|
SecretDeleted secret_deleted = 3;
|
2023-06-06 19:49:09 +08:00
|
|
|
UserConnected user_connected = 4;
|
2023-08-23 05:25:14 +08:00
|
|
|
FileSystemCreated file_system_created = 5;
|
|
|
|
FileSystemUpdated file_system_updated = 6;
|
|
|
|
FileSystemDeleted file_system_deleted = 7;
|
2023-11-15 04:20:46 +08:00
|
|
|
DeploymentGroupCreated deployment_group_created = 8;
|
|
|
|
DeploymentGroupUpdated deployment_group_updated = 9;
|
|
|
|
DeploymentGroupDeleted deployment_group_deleted = 10;
|
2024-01-06 01:17:39 +08:00
|
|
|
AgentConnected agent_connected = 11;
|
2024-01-31 01:20:46 +08:00
|
|
|
AgentKeyCreated agent_key_created = 12;
|
|
|
|
AgentKeyDeleted agent_key_deleted = 13;
|
2024-03-08 03:47:33 +08:00
|
|
|
AppDeploymentCreated app_deployment_created = 14;
|
2024-03-15 17:33:35 +08:00
|
|
|
UserDeleted user_deleted = 15;
|
2022-12-27 08:16:47 +08:00
|
|
|
}
|
|
|
|
}
|