Skip to content

Commit

Permalink
feat: Add Secure Boot support to TPU v2alpha1 API (#98)
Browse files Browse the repository at this point in the history
* feat: Add Secure Boot support to TPU v2alpha1 API

PiperOrigin-RevId: 474644226

Source-Link: googleapis/googleapis@f90b329

Source-Link: googleapis/googleapis-gen@4ad8763
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>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Sep 16, 2022
1 parent d79141b commit 5010498
Show file tree
Hide file tree
Showing 4 changed files with 356 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -448,6 +448,9 @@ message Node {

// Output only. The Symptoms that have occurred to the TPU Node.
repeated Symptom symptoms = 39 [(google.api.field_behavior) = OUTPUT_ONLY];

// Shielded Instance options.
ShieldedInstanceConfig shielded_instance_config = 45;
}

// Request for [ListNodes][google.cloud.tpu.v2alpha1.Tpu.ListNodes].
Expand Down Expand Up @@ -780,3 +783,9 @@ message GetGuestAttributesResponse {
// The guest attributes for the TPU workers.
repeated GuestAttributes guest_attributes = 1;
}

// A set of Shielded Instance options.
message ShieldedInstanceConfig {
// Defines whether the instance has Secure Boot enabled.
bool enable_secure_boot = 1;
}
103 changes: 103 additions & 0 deletions packages/google-cloud-tpu/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5010498

Please sign in to comment.