Skip to content

Commit effadd9

Browse files
fix: [container] correct long audio synthesis HTTP binding (#4899)
* 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>
1 parent b1e76e9 commit effadd9

48 files changed

Lines changed: 373 additions & 51 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/google-container/.jsdoc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Google LLC
1+
// Copyright 2024 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.
@@ -40,7 +40,7 @@ module.exports = {
4040
includePattern: '\\.js$'
4141
},
4242
templates: {
43-
copyright: 'Copyright 2023 Google LLC',
43+
copyright: 'Copyright 2024 Google LLC',
4444
includeDate: false,
4545
sourceFiles: false,
4646
systemName: '@google-cloud/container',

packages/google-container/.mocharc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Google LLC
1+
// Copyright 2024 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.

packages/google-container/.prettierrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Google LLC
1+
// Copyright 2024 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.

packages/google-container/protos/google/container/v1beta1/cluster_service.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3761,10 +3761,17 @@ message BlueGreenSettings {
37613761
optional google.protobuf.Duration batch_soak_duration = 3;
37623762
}
37633763

3764+
// Autoscaled rollout policy uses cluster autoscaler during
3765+
// blue-green upgrades to scale both the green and blue pools.
3766+
message AutoscaledRolloutPolicy {}
3767+
37643768
// The rollout policy controls the general rollout progress of blue-green.
37653769
oneof rollout_policy {
37663770
// Standard policy for the blue-green upgrade.
37673771
StandardRolloutPolicy standard_rollout_policy = 1;
3772+
3773+
// Autoscaled policy for cluster autoscaler enabled blue-green upgrade.
3774+
AutoscaledRolloutPolicy autoscaled_rollout_policy = 3;
37683775
}
37693776

37703777
// Time needed after draining entire blue pool. After this period, blue pool

packages/google-container/protos/protos.d.ts

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

0 commit comments

Comments
 (0)