From 88382897c1c0ba6f5f80ba72ab775808de301962 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 15:12:05 -0700 Subject: [PATCH] fix: [container] Deprecate "EXPERIMENTAL" option for Gateway API (this value has never been supported) (#5519) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: Deprecate "EXPERIMENTAL" option for Gateway API (this value has never been supported) PiperOrigin-RevId: 648792772 Source-Link: https://github.com/googleapis/googleapis/commit/fa77a9fd140f993668d8490baac366cd72ff621a Source-Link: https://github.com/googleapis/googleapis-gen/commit/c3faf93148a4df73b578e59a649200749723463b Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiYzNmYWY5MzE0OGE0ZGY3M2I1NzhlNTlhNjQ5MjAwNzQ5NzIzNDYzYiJ9 * 🦉 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 --- .../protos/google/container/v1beta1/cluster_service.proto | 3 ++- packages/google-container/protos/protos.json | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/google-container/protos/google/container/v1beta1/cluster_service.proto b/packages/google-container/protos/google/container/v1beta1/cluster_service.proto index e3ee256d193..203b49d840a 100644 --- a/packages/google-container/protos/google/container/v1beta1/cluster_service.proto +++ b/packages/google-container/protos/google/container/v1beta1/cluster_service.proto @@ -5164,8 +5164,9 @@ message GatewayAPIConfig { // Gateway API support is disabled CHANNEL_DISABLED = 1; + // Deprecated: use CHANNEL_STANDARD instead. // Gateway API support is enabled, experimental CRDs are installed - CHANNEL_EXPERIMENTAL = 3; + CHANNEL_EXPERIMENTAL = 3 [deprecated = true]; // Gateway API support is enabled, standard CRDs are installed CHANNEL_STANDARD = 4; diff --git a/packages/google-container/protos/protos.json b/packages/google-container/protos/protos.json index 8cb664888dd..8402126f866 100644 --- a/packages/google-container/protos/protos.json +++ b/packages/google-container/protos/protos.json @@ -11888,6 +11888,11 @@ }, "nested": { "Channel": { + "valuesOptions": { + "CHANNEL_EXPERIMENTAL": { + "deprecated": true + } + }, "values": { "CHANNEL_UNSPECIFIED": 0, "CHANNEL_DISABLED": 1,