Skip to content

Commit 2beee25

Browse files
feat: [container] Add support for updating additional pod IPv4 ranges for Standard and Autopilot clusters (#4177)
* feat: Add support for updating additional pod IPv4 ranges for Standard and Autopilot clusters PiperOrigin-RevId: 524333419 Source-Link: googleapis/googleapis@813f189 Source-Link: googleapis/googleapis-gen@dbfd75e Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiZGJmZDc1ZWI2ZTZlYjIyODcxMmQ1ZmI1ZGU5ODBkYWU3MmEzYThjMCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: Add support for updating additional pod IPv4 ranges for Standard and Autopilot clusters PiperOrigin-RevId: 524334945 Source-Link: googleapis/googleapis@46ae6df Source-Link: googleapis/googleapis-gen@45daacf Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiNDVkYWFjZmRiZDYyMmFiYjkxZGFhMmU2YTExZDA0ZWJhMzA2MDQwZiJ9 * 🦉 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> Co-authored-by: Denis DelGrosso <[email protected]>
1 parent ff093a9 commit 2beee25

7 files changed

Lines changed: 130 additions & 12 deletions

File tree

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2082,7 +2082,10 @@ message ClusterUpdate {
20822082

20832083
// AdditionalPodRangesConfig is the configuration for additional pod secondary
20842084
// ranges supporting the ClusterUpdate message.
2085-
message AdditionalPodRangesConfig {}
2085+
message AdditionalPodRangesConfig {
2086+
// Name for pod secondary ipv4 range which has the actual range defined ahead.
2087+
repeated string pod_range_names = 1;
2088+
}
20862089

20872090
// This operation resource represents operations that may have happened or are
20882091
// happening on the cluster. All fields are output only.

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2333,7 +2333,10 @@ message ClusterUpdate {
23332333

23342334
// AdditionalPodRangesConfig is the configuration for additional pod secondary
23352335
// ranges supporting the ClusterUpdate message.
2336-
message AdditionalPodRangesConfig {}
2336+
message AdditionalPodRangesConfig {
2337+
// Name for pod secondary ipv4 range which has the actual range defined ahead.
2338+
repeated string pod_range_names = 1;
2339+
}
23372340

23382341
// This operation resource represents operations that may have happened or are
23392342
// happening on the cluster. All fields are output only.

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

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

packages/google-container/protos/protos.js

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

packages/google-container/protos/protos.json

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

packages/google-container/samples/generated/v1/snippet_metadata.google.container.v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"clientLibrary": {
33
"name": "nodejs-container",
4-
"version": "4.7.1",
4+
"version": "4.8.0",
55
"language": "TYPESCRIPT",
66
"apis": [
77
{

packages/google-container/samples/generated/v1beta1/snippet_metadata.google.container.v1beta1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"clientLibrary": {
33
"name": "nodejs-container",
4-
"version": "4.7.1",
4+
"version": "4.8.0",
55
"language": "TYPESCRIPT",
66
"apis": [
77
{

0 commit comments

Comments
 (0)