From 763263685d6e18916520259b0455f737f5585ea0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 3 Sep 2026 08:36:26 +0000 Subject: [PATCH] Publish proto files from 3be4c3cf4c --- nebius/mk8s/v1/instance_template.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nebius/mk8s/v1/instance_template.proto b/nebius/mk8s/v1/instance_template.proto index caace3a..875c720 100644 --- a/nebius/mk8s/v1/instance_template.proto +++ b/nebius/mk8s/v1/instance_template.proto @@ -46,6 +46,18 @@ message DiskSpec { int64 block_size_bytes = 5; DiskType type = 6 [(field_behavior) = NON_EMPTY_DEFAULT]; + + DiskEncryption disk_encryption = 11; +} + +message DiskEncryption { + enum DiskEncryptionType { + DISK_ENCRYPTION_UNSPECIFIED = 0; + + DISK_ENCRYPTION_MANAGED = 1; + } + + DiskEncryptionType type = 1; } message ResourcesSpec {