Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit e4fc278

Browse files
feat: Add Secure Boot support to TPU v2alpha1 API (#98)
* feat: Add Secure Boot support to TPU v2alpha1 API PiperOrigin-RevId: 474644226 Source-Link: googleapis/googleapis@f90b329 Source-Link: https://github.com/googleapis/googleapis-gen/commit/4ad8763bde676f92a3eb70753ae1cfed0e81387e Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGFkODc2M2JkZTY3NmY5MmEzZWI3MDc1M2FlMWNmZWQwZTgxMzg3ZSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 42310b7 commit e4fc278

4 files changed

Lines changed: 356 additions & 1 deletion

File tree

protos/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+
}

protos/protos.d.ts

Lines changed: 103 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)