Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [container] Add support for updating additional pod IPv4 ranges for Standard and Autopilot clusters #4177

Merged
merged 5 commits into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2082,7 +2082,10 @@ message ClusterUpdate {

// AdditionalPodRangesConfig is the configuration for additional pod secondary
// ranges supporting the ClusterUpdate message.
message AdditionalPodRangesConfig {}
message AdditionalPodRangesConfig {
// Name for pod secondary ipv4 range which has the actual range defined ahead.
repeated string pod_range_names = 1;
}

// This operation resource represents operations that may have happened or are
// happening on the cluster. All fields are output only.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2333,7 +2333,10 @@ message ClusterUpdate {

// AdditionalPodRangesConfig is the configuration for additional pod secondary
// ranges supporting the ClusterUpdate message.
message AdditionalPodRangesConfig {}
message AdditionalPodRangesConfig {
// Name for pod secondary ipv4 range which has the actual range defined ahead.
repeated string pod_range_names = 1;
}

// This operation resource represents operations that may have happened or are
// happening on the cluster. All fields are output only.
Expand Down
12 changes: 12 additions & 0 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.

100 changes: 94 additions & 6 deletions packages/google-container/protos/protos.js

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

16 changes: 14 additions & 2 deletions packages/google-container/protos/protos.json

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

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"clientLibrary": {
"name": "nodejs-container",
"version": "4.7.1",
"version": "4.8.0",
"language": "TYPESCRIPT",
"apis": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"clientLibrary": {
"name": "nodejs-container",
"version": "4.7.1",
"version": "4.8.0",
"language": "TYPESCRIPT",
"apis": [
{
Expand Down