Skip to content

Commit f90b329

Browse files
Google APIscopybara-github
authored andcommitted
feat: Add Secure Boot support to TPU v2alpha1 API
PiperOrigin-RevId: 474644226
1 parent fdf5495 commit f90b329

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

google/cloud/tpu/v2alpha1/cloud_tpu.proto

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 Google LLC
1+
// Copyright 2022 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -448,6 +448,9 @@ message Node {
448448

449449
// Output only. The Symptoms that have occurred to the TPU Node.
450450
repeated Symptom symptoms = 39 [(google.api.field_behavior) = OUTPUT_ONLY];
451+
452+
// Shielded Instance options.
453+
ShieldedInstanceConfig shielded_instance_config = 45;
451454
}
452455

453456
// Request for [ListNodes][google.cloud.tpu.v2alpha1.Tpu.ListNodes].
@@ -780,3 +783,9 @@ message GetGuestAttributesResponse {
780783
// The guest attributes for the TPU workers.
781784
repeated GuestAttributes guest_attributes = 1;
782785
}
786+
787+
// A set of Shielded Instance options.
788+
message ShieldedInstanceConfig {
789+
// Defines whether the instance has Secure Boot enabled.
790+
bool enable_secure_boot = 1;
791+
}

0 commit comments

Comments
 (0)