Skip to content

Commit

Permalink
fix: [container] correct long audio synthesis HTTP binding (#4899)
Browse files Browse the repository at this point in the history
* feat: Add autoscaled node pool upgrade strategy

PiperOrigin-RevId: 591922529

Source-Link: googleapis/googleapis@f33842a

Source-Link: googleapis/googleapis-gen@5fcb719
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiNWZjYjcxOTg1OGQ2NTk5ZTA1NTQ3MmNhMTAxOGI1NTVmYzhkYzIyYSJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* fix: correct long audio synthesis HTTP binding
docs: Deprecate the custom voice usage field

PiperOrigin-RevId: 595119987

Source-Link: googleapis/googleapis@c22f408

Source-Link: googleapis/googleapis-gen@4e9ca63
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiNGU5Y2E2M2QyY2M3OTMzZWI3YzM4M2NlOGI3OTRmY2UxNTJlYTJmYyJ9

* 🦉 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 Jan 4, 2024
1 parent b1e76e9 commit effadd9
Show file tree
Hide file tree
Showing 48 changed files with 373 additions and 51 deletions.
4 changes: 2 additions & 2 deletions packages/google-container/.jsdoc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2024 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 @@ -40,7 +40,7 @@ module.exports = {
includePattern: '\\.js$'
},
templates: {
copyright: 'Copyright 2023 Google LLC',
copyright: 'Copyright 2024 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google-cloud/container',
Expand Down
2 changes: 1 addition & 1 deletion packages/google-container/.mocharc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2024 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
2 changes: 1 addition & 1 deletion packages/google-container/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2024 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
Original file line number Diff line number Diff line change
Expand Up @@ -3761,10 +3761,17 @@ message BlueGreenSettings {
optional google.protobuf.Duration batch_soak_duration = 3;
}

// Autoscaled rollout policy uses cluster autoscaler during
// blue-green upgrades to scale both the green and blue pools.
message AutoscaledRolloutPolicy {}

// The rollout policy controls the general rollout progress of blue-green.
oneof rollout_policy {
// Standard policy for the blue-green upgrade.
StandardRolloutPolicy standard_rollout_policy = 1;

// Autoscaled policy for cluster autoscaler enabled blue-green upgrade.
AutoscaledRolloutPolicy autoscaled_rollout_policy = 3;
}

// Time needed after draining entire blue pool. After this period, blue pool
Expand Down
101 changes: 99 additions & 2 deletions packages/google-container/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 effadd9

Please sign in to comment.