From fdc5d6f0a807d9a15d09d4bc8fed8b83a2c48321 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 5 Aug 2026 08:34:14 +0000 Subject: [PATCH] Publish proto files from a01a5f0881 --- nebius/audit/v2/audit_event_export.proto | 6 ++++++ nebius/compute/v1/image.proto | 11 +++++++++++ 2 files changed, 17 insertions(+) diff --git a/nebius/audit/v2/audit_event_export.proto b/nebius/audit/v2/audit_event_export.proto index a2ba6bf..9849e8f 100644 --- a/nebius/audit/v2/audit_event_export.proto +++ b/nebius/audit/v2/audit_event_export.proto @@ -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 { diff --git a/nebius/compute/v1/image.proto b/nebius/compute/v1/image.proto index 87293b6..8a20e57 100644 --- a/nebius/compute/v1/image.proto +++ b/nebius/compute/v1/image.proto @@ -66,6 +66,17 @@ message ImageSpec { // list of platforms where this image is not supported with explanation map 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 {