Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions nebius/audit/v2/audit_event_export.proto
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ message AuditEventExportStatus {

// Error message in case of export failure.
string message = 3;

// Timestamp indicating when the export was started.
google.protobuf.Timestamp started_at = 4;

// Timestamp indicating when the export was finished.
google.protobuf.Timestamp finished_at = 5;
}

enum AuditEventExportState {
Expand Down
11 changes: 11 additions & 0 deletions nebius/compute/v1/image.proto
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,17 @@ message ImageSpec {

// list of platforms where this image is not supported with explanation
map<string, string> unsupported_platforms = 9;

message UnsupportedPreset {
string platform = 1;

string preset = 2;

string reason = 3;
}

// Platform presets that cannot use this image. Each item includes the reason.
repeated UnsupportedPreset unsupported_presets = 13;
}

message ImageStatus {
Expand Down