diff --git a/Makefile b/Makefile index fc9a60a7..9b9eefe5 100644 --- a/Makefile +++ b/Makefile @@ -128,7 +128,8 @@ docs: gen-crd-api-reference-docs ## Run go generate to generate API reference do .PHONY: build-ironcore-net build-ironcore-net: generate fmt addlicense lint ## Build ironcore-net binary. - go build -o bin/manager ./cmd/apiserver/main.go + go build -o bin/manager ./cmd/controller-manger/main.go + go build -o bin/apiserver ./cmd/apiserver/main.go .PHONY: build-apinetlet build-apinetlet: generate fmt addlicense lint ## Build apinetlet. @@ -367,13 +368,14 @@ GOLANGCI_LINT ?= $(LOCALBIN)/golangci-lint ## Tool Versions KUSTOMIZE_VERSION ?= v5.1.1 -CODE_GENERATOR_VERSION ?= v0.28.4 +CODE_GENERATOR_VERSION ?= v0.29.0 VGOPATH_VERSION ?= v0.1.3 CONTROLLER_TOOLS_VERSION ?= v0.13.0 GEN_CRD_API_REFERENCE_DOCS_VERSION ?= v0.3.0 ADDLICENSE_VERSION ?= v1.1.1 GOIMPORTS_VERSION ?= v0.13.0 GOLANGCI_LINT_VERSION ?= v1.55.2 +OPENAPI_EXTRACTOR_VERSION ?= v0.1.4 KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" .PHONY: kustomize @@ -449,7 +451,7 @@ $(ENVTEST): $(LOCALBIN) .PHONY: openapi-extractor openapi-extractor: $(OPENAPI_EXTRACTOR) ## Download openapi-extractor locally if necessary. $(OPENAPI_EXTRACTOR): $(LOCALBIN) - test -s $(LOCALBIN)/openapi-extractor || GOBIN=$(LOCALBIN) go install github.com/ironcore-dev/openapi-extractor/cmd/openapi-extractor@latest + test -s $(LOCALBIN)/openapi-extractor || GOBIN=$(LOCALBIN) go install github.com/ironcore-dev/openapi-extractor/cmd/openapi-extractor@$(OPENAPI_EXTRACTOR_VERSION) .PHONY: gen-crd-api-reference-docs gen-crd-api-reference-docs: $(GEN_CRD_API_REFERENCE_DOCS) ## Download gen-crd-api-reference-docs locally if necessary. diff --git a/api/core/v1alpha1/zz_generated.deepcopy.go b/api/core/v1alpha1/zz_generated.deepcopy.go index f20c4cbd..94f1e52a 100644 --- a/api/core/v1alpha1/zz_generated.deepcopy.go +++ b/api/core/v1alpha1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/affinity.go b/client-go/applyconfigurations/core/v1alpha1/affinity.go index 62a99ccc..0fc29458 100644 --- a/client-go/applyconfigurations/core/v1alpha1/affinity.go +++ b/client-go/applyconfigurations/core/v1alpha1/affinity.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/daemonset.go b/client-go/applyconfigurations/core/v1alpha1/daemonset.go index bd69d64f..8629d269 100644 --- a/client-go/applyconfigurations/core/v1alpha1/daemonset.go +++ b/client-go/applyconfigurations/core/v1alpha1/daemonset.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/daemonsetspec.go b/client-go/applyconfigurations/core/v1alpha1/daemonsetspec.go index 7dba2937..45c2f45a 100644 --- a/client-go/applyconfigurations/core/v1alpha1/daemonsetspec.go +++ b/client-go/applyconfigurations/core/v1alpha1/daemonsetspec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/daemonsetstatus.go b/client-go/applyconfigurations/core/v1alpha1/daemonsetstatus.go index e566aa69..0e612a67 100644 --- a/client-go/applyconfigurations/core/v1alpha1/daemonsetstatus.go +++ b/client-go/applyconfigurations/core/v1alpha1/daemonsetstatus.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/instance.go b/client-go/applyconfigurations/core/v1alpha1/instance.go index 9e848da6..7b24d2b6 100644 --- a/client-go/applyconfigurations/core/v1alpha1/instance.go +++ b/client-go/applyconfigurations/core/v1alpha1/instance.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/instanceaffinityterm.go b/client-go/applyconfigurations/core/v1alpha1/instanceaffinityterm.go index c9b51e1f..3e1fe839 100644 --- a/client-go/applyconfigurations/core/v1alpha1/instanceaffinityterm.go +++ b/client-go/applyconfigurations/core/v1alpha1/instanceaffinityterm.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/instanceantiaffinity.go b/client-go/applyconfigurations/core/v1alpha1/instanceantiaffinity.go index 2a8bf500..a52628a2 100644 --- a/client-go/applyconfigurations/core/v1alpha1/instanceantiaffinity.go +++ b/client-go/applyconfigurations/core/v1alpha1/instanceantiaffinity.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/instancespec.go b/client-go/applyconfigurations/core/v1alpha1/instancespec.go index 841e6a1f..c1ed7472 100644 --- a/client-go/applyconfigurations/core/v1alpha1/instancespec.go +++ b/client-go/applyconfigurations/core/v1alpha1/instancespec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/instancestatus.go b/client-go/applyconfigurations/core/v1alpha1/instancestatus.go index b98cb4f9..61adbf7d 100644 --- a/client-go/applyconfigurations/core/v1alpha1/instancestatus.go +++ b/client-go/applyconfigurations/core/v1alpha1/instancestatus.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/instancetemplate.go b/client-go/applyconfigurations/core/v1alpha1/instancetemplate.go index 69e32a2e..48b002b3 100644 --- a/client-go/applyconfigurations/core/v1alpha1/instancetemplate.go +++ b/client-go/applyconfigurations/core/v1alpha1/instancetemplate.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/ip.go b/client-go/applyconfigurations/core/v1alpha1/ip.go index 52d737eb..115845ad 100644 --- a/client-go/applyconfigurations/core/v1alpha1/ip.go +++ b/client-go/applyconfigurations/core/v1alpha1/ip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/ipaddress.go b/client-go/applyconfigurations/core/v1alpha1/ipaddress.go index a473a6ed..dbf2af37 100644 --- a/client-go/applyconfigurations/core/v1alpha1/ipaddress.go +++ b/client-go/applyconfigurations/core/v1alpha1/ipaddress.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/ipaddressclaimref.go b/client-go/applyconfigurations/core/v1alpha1/ipaddressclaimref.go index 1fc5e1c6..488683d8 100644 --- a/client-go/applyconfigurations/core/v1alpha1/ipaddressclaimref.go +++ b/client-go/applyconfigurations/core/v1alpha1/ipaddressclaimref.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/ipaddressspec.go b/client-go/applyconfigurations/core/v1alpha1/ipaddressspec.go index 8e1b8d62..2ec35413 100644 --- a/client-go/applyconfigurations/core/v1alpha1/ipaddressspec.go +++ b/client-go/applyconfigurations/core/v1alpha1/ipaddressspec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/ipclaimref.go b/client-go/applyconfigurations/core/v1alpha1/ipclaimref.go index f56279f1..6ff12014 100644 --- a/client-go/applyconfigurations/core/v1alpha1/ipclaimref.go +++ b/client-go/applyconfigurations/core/v1alpha1/ipclaimref.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/ipspec.go b/client-go/applyconfigurations/core/v1alpha1/ipspec.go index 7e0f1568..9499290a 100644 --- a/client-go/applyconfigurations/core/v1alpha1/ipspec.go +++ b/client-go/applyconfigurations/core/v1alpha1/ipspec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/loadbalancer.go b/client-go/applyconfigurations/core/v1alpha1/loadbalancer.go index 12f1a2c2..c2a2aeec 100644 --- a/client-go/applyconfigurations/core/v1alpha1/loadbalancer.go +++ b/client-go/applyconfigurations/core/v1alpha1/loadbalancer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/loadbalancerdestination.go b/client-go/applyconfigurations/core/v1alpha1/loadbalancerdestination.go index 1c4628a0..d971787f 100644 --- a/client-go/applyconfigurations/core/v1alpha1/loadbalancerdestination.go +++ b/client-go/applyconfigurations/core/v1alpha1/loadbalancerdestination.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/loadbalancerip.go b/client-go/applyconfigurations/core/v1alpha1/loadbalancerip.go index 4c11b652..68a3e57f 100644 --- a/client-go/applyconfigurations/core/v1alpha1/loadbalancerip.go +++ b/client-go/applyconfigurations/core/v1alpha1/loadbalancerip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/loadbalancerport.go b/client-go/applyconfigurations/core/v1alpha1/loadbalancerport.go index e31d793f..9cf24466 100644 --- a/client-go/applyconfigurations/core/v1alpha1/loadbalancerport.go +++ b/client-go/applyconfigurations/core/v1alpha1/loadbalancerport.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/loadbalancerrouting.go b/client-go/applyconfigurations/core/v1alpha1/loadbalancerrouting.go index 28930898..f3d23077 100644 --- a/client-go/applyconfigurations/core/v1alpha1/loadbalancerrouting.go +++ b/client-go/applyconfigurations/core/v1alpha1/loadbalancerrouting.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/loadbalancerspec.go b/client-go/applyconfigurations/core/v1alpha1/loadbalancerspec.go index 7be876a2..91139413 100644 --- a/client-go/applyconfigurations/core/v1alpha1/loadbalancerspec.go +++ b/client-go/applyconfigurations/core/v1alpha1/loadbalancerspec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/loadbalancerstatus.go b/client-go/applyconfigurations/core/v1alpha1/loadbalancerstatus.go index 71f82353..fbdedec8 100644 --- a/client-go/applyconfigurations/core/v1alpha1/loadbalancerstatus.go +++ b/client-go/applyconfigurations/core/v1alpha1/loadbalancerstatus.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/loadbalancertargetref.go b/client-go/applyconfigurations/core/v1alpha1/loadbalancertargetref.go index d05e793a..88e6aee6 100644 --- a/client-go/applyconfigurations/core/v1alpha1/loadbalancertargetref.go +++ b/client-go/applyconfigurations/core/v1alpha1/loadbalancertargetref.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/natgateway.go b/client-go/applyconfigurations/core/v1alpha1/natgateway.go index 90788dff..e7f33684 100644 --- a/client-go/applyconfigurations/core/v1alpha1/natgateway.go +++ b/client-go/applyconfigurations/core/v1alpha1/natgateway.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/natgatewayautoscaler.go b/client-go/applyconfigurations/core/v1alpha1/natgatewayautoscaler.go index f8c08713..47addb03 100644 --- a/client-go/applyconfigurations/core/v1alpha1/natgatewayautoscaler.go +++ b/client-go/applyconfigurations/core/v1alpha1/natgatewayautoscaler.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/natgatewayautoscalerspec.go b/client-go/applyconfigurations/core/v1alpha1/natgatewayautoscalerspec.go index e4836909..b0e46d34 100644 --- a/client-go/applyconfigurations/core/v1alpha1/natgatewayautoscalerspec.go +++ b/client-go/applyconfigurations/core/v1alpha1/natgatewayautoscalerspec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/natgatewayip.go b/client-go/applyconfigurations/core/v1alpha1/natgatewayip.go index 4e72b167..5453be9d 100644 --- a/client-go/applyconfigurations/core/v1alpha1/natgatewayip.go +++ b/client-go/applyconfigurations/core/v1alpha1/natgatewayip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/natgatewayspec.go b/client-go/applyconfigurations/core/v1alpha1/natgatewayspec.go index 78cd260c..19ec05dc 100644 --- a/client-go/applyconfigurations/core/v1alpha1/natgatewayspec.go +++ b/client-go/applyconfigurations/core/v1alpha1/natgatewayspec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/natgatewaystatus.go b/client-go/applyconfigurations/core/v1alpha1/natgatewaystatus.go index 229dc30d..f972aec4 100644 --- a/client-go/applyconfigurations/core/v1alpha1/natgatewaystatus.go +++ b/client-go/applyconfigurations/core/v1alpha1/natgatewaystatus.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/natip.go b/client-go/applyconfigurations/core/v1alpha1/natip.go index 96d37b97..4e662b4c 100644 --- a/client-go/applyconfigurations/core/v1alpha1/natip.go +++ b/client-go/applyconfigurations/core/v1alpha1/natip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/natipsection.go b/client-go/applyconfigurations/core/v1alpha1/natipsection.go index a1395c41..d42de229 100644 --- a/client-go/applyconfigurations/core/v1alpha1/natipsection.go +++ b/client-go/applyconfigurations/core/v1alpha1/natipsection.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/nattable.go b/client-go/applyconfigurations/core/v1alpha1/nattable.go index f615cc23..7b3c0549 100644 --- a/client-go/applyconfigurations/core/v1alpha1/nattable.go +++ b/client-go/applyconfigurations/core/v1alpha1/nattable.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/nattableiptargetref.go b/client-go/applyconfigurations/core/v1alpha1/nattableiptargetref.go index 9db8ca56..3dd36194 100644 --- a/client-go/applyconfigurations/core/v1alpha1/nattableiptargetref.go +++ b/client-go/applyconfigurations/core/v1alpha1/nattableiptargetref.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/network.go b/client-go/applyconfigurations/core/v1alpha1/network.go index 571ab6e3..4e52ec3c 100644 --- a/client-go/applyconfigurations/core/v1alpha1/network.go +++ b/client-go/applyconfigurations/core/v1alpha1/network.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkid.go b/client-go/applyconfigurations/core/v1alpha1/networkid.go index a456903d..87739e01 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkid.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkid.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkidclaimref.go b/client-go/applyconfigurations/core/v1alpha1/networkidclaimref.go index f0edb6fb..a90e1241 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkidclaimref.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkidclaimref.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkidspec.go b/client-go/applyconfigurations/core/v1alpha1/networkidspec.go index 0aac9aae..875ec1cc 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkidspec.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkidspec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkinterface.go b/client-go/applyconfigurations/core/v1alpha1/networkinterface.go index e3c1d38c..db6253f6 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkinterface.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkinterface.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkinterfacenat.go b/client-go/applyconfigurations/core/v1alpha1/networkinterfacenat.go index ff8ddb2c..2a8a890f 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkinterfacenat.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkinterfacenat.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkinterfacenatclaimref.go b/client-go/applyconfigurations/core/v1alpha1/networkinterfacenatclaimref.go index 143df691..e63a7f70 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkinterfacenatclaimref.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkinterfacenatclaimref.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkinterfacepublicip.go b/client-go/applyconfigurations/core/v1alpha1/networkinterfacepublicip.go index ba28a921..663578b5 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkinterfacepublicip.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkinterfacepublicip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkinterfacespec.go b/client-go/applyconfigurations/core/v1alpha1/networkinterfacespec.go index 087b7c58..3178cf5a 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkinterfacespec.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkinterfacespec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkinterfacestatus.go b/client-go/applyconfigurations/core/v1alpha1/networkinterfacestatus.go index 856dd1b2..3b95eec6 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkinterfacestatus.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkinterfacestatus.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/networkspec.go b/client-go/applyconfigurations/core/v1alpha1/networkspec.go index c294aa2b..3af55c69 100644 --- a/client-go/applyconfigurations/core/v1alpha1/networkspec.go +++ b/client-go/applyconfigurations/core/v1alpha1/networkspec.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/node.go b/client-go/applyconfigurations/core/v1alpha1/node.go index 09cefa50..d82d38b3 100644 --- a/client-go/applyconfigurations/core/v1alpha1/node.go +++ b/client-go/applyconfigurations/core/v1alpha1/node.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/nodeaffinity.go b/client-go/applyconfigurations/core/v1alpha1/nodeaffinity.go index 7fe10519..bb5077f5 100644 --- a/client-go/applyconfigurations/core/v1alpha1/nodeaffinity.go +++ b/client-go/applyconfigurations/core/v1alpha1/nodeaffinity.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/nodeselector.go b/client-go/applyconfigurations/core/v1alpha1/nodeselector.go index 5d441872..188acce7 100644 --- a/client-go/applyconfigurations/core/v1alpha1/nodeselector.go +++ b/client-go/applyconfigurations/core/v1alpha1/nodeselector.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/nodeselectorrequirement.go b/client-go/applyconfigurations/core/v1alpha1/nodeselectorrequirement.go index a5680983..fbbb869f 100644 --- a/client-go/applyconfigurations/core/v1alpha1/nodeselectorrequirement.go +++ b/client-go/applyconfigurations/core/v1alpha1/nodeselectorrequirement.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/nodeselectorterm.go b/client-go/applyconfigurations/core/v1alpha1/nodeselectorterm.go index 6d88fb71..0630e328 100644 --- a/client-go/applyconfigurations/core/v1alpha1/nodeselectorterm.go +++ b/client-go/applyconfigurations/core/v1alpha1/nodeselectorterm.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/pciaddress.go b/client-go/applyconfigurations/core/v1alpha1/pciaddress.go index 2d669d17..6f75b1c7 100644 --- a/client-go/applyconfigurations/core/v1alpha1/pciaddress.go +++ b/client-go/applyconfigurations/core/v1alpha1/pciaddress.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/core/v1alpha1/topologyspreadconstraint.go b/client-go/applyconfigurations/core/v1alpha1/topologyspreadconstraint.go index a5533639..07150af7 100644 --- a/client-go/applyconfigurations/core/v1alpha1/topologyspreadconstraint.go +++ b/client-go/applyconfigurations/core/v1alpha1/topologyspreadconstraint.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/internal/internal.go b/client-go/applyconfigurations/internal/internal.go index 947faa9f..5748facb 100644 --- a/client-go/applyconfigurations/internal/internal.go +++ b/client-go/applyconfigurations/internal/internal.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. @@ -138,7 +138,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: namedType: com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP - default: {} - name: com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPClaimRef map: fields: @@ -163,7 +162,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: namedType: com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP - default: {} - name: ipFamily type: scalar: string @@ -312,7 +310,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: namedType: com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP - default: {} - name: targetRef type: namedType: com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerTargetRef @@ -322,7 +319,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: namedType: com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP - default: {} - name: ipFamily type: scalar: string @@ -488,7 +484,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: namedType: com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP - default: {} - name: name type: scalar: string @@ -531,7 +526,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: namedType: com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP - default: {} - name: sections type: list: @@ -548,7 +542,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: namedType: com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP - default: {} - name: port type: scalar: numeric @@ -702,7 +695,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: namedType: com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP - default: {} - name: ipFamily type: scalar: string @@ -1007,7 +999,6 @@ var schemaYAML = typed.YAMLObject(`types: - name: creationTimestamp type: namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Time - default: {} - name: deletionGracePeriodSeconds type: scalar: numeric diff --git a/client-go/applyconfigurations/meta/v1/labelselector.go b/client-go/applyconfigurations/meta/v1/labelselector.go index 0a4ebaa8..34b78730 100644 --- a/client-go/applyconfigurations/meta/v1/labelselector.go +++ b/client-go/applyconfigurations/meta/v1/labelselector.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/meta/v1/labelselectorrequirement.go b/client-go/applyconfigurations/meta/v1/labelselectorrequirement.go index ce4cbec9..c633af8f 100644 --- a/client-go/applyconfigurations/meta/v1/labelselectorrequirement.go +++ b/client-go/applyconfigurations/meta/v1/labelselectorrequirement.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/meta/v1/managedfieldsentry.go b/client-go/applyconfigurations/meta/v1/managedfieldsentry.go index e5baa060..de8571bb 100644 --- a/client-go/applyconfigurations/meta/v1/managedfieldsentry.go +++ b/client-go/applyconfigurations/meta/v1/managedfieldsentry.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/meta/v1/objectmeta.go b/client-go/applyconfigurations/meta/v1/objectmeta.go index 2bff06c8..2c9e2e76 100644 --- a/client-go/applyconfigurations/meta/v1/objectmeta.go +++ b/client-go/applyconfigurations/meta/v1/objectmeta.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/meta/v1/ownerreference.go b/client-go/applyconfigurations/meta/v1/ownerreference.go index 089008a3..b8d87fdd 100644 --- a/client-go/applyconfigurations/meta/v1/ownerreference.go +++ b/client-go/applyconfigurations/meta/v1/ownerreference.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/meta/v1/typemeta.go b/client-go/applyconfigurations/meta/v1/typemeta.go index 282cbaa9..98f0138d 100644 --- a/client-go/applyconfigurations/meta/v1/typemeta.go +++ b/client-go/applyconfigurations/meta/v1/typemeta.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/applyconfigurations/utils.go b/client-go/applyconfigurations/utils.go index 61edfbb8..e2adab31 100644 --- a/client-go/applyconfigurations/utils.go +++ b/client-go/applyconfigurations/utils.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by applyconfiguration-gen. DO NOT EDIT. diff --git a/client-go/informers/core/interface.go b/client-go/informers/core/interface.go index 08ef58a8..e9ad3a02 100644 --- a/client-go/informers/core/interface.go +++ b/client-go/informers/core/interface.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/daemonset.go b/client-go/informers/core/v1alpha1/daemonset.go index bf6ae536..be7e4fef 100644 --- a/client-go/informers/core/v1alpha1/daemonset.go +++ b/client-go/informers/core/v1alpha1/daemonset.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/instance.go b/client-go/informers/core/v1alpha1/instance.go index fd54c96e..b4097532 100644 --- a/client-go/informers/core/v1alpha1/instance.go +++ b/client-go/informers/core/v1alpha1/instance.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/interface.go b/client-go/informers/core/v1alpha1/interface.go index 2024fa57..736dbea0 100644 --- a/client-go/informers/core/v1alpha1/interface.go +++ b/client-go/informers/core/v1alpha1/interface.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/ip.go b/client-go/informers/core/v1alpha1/ip.go index 2d7b144c..27821d1b 100644 --- a/client-go/informers/core/v1alpha1/ip.go +++ b/client-go/informers/core/v1alpha1/ip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/ipaddress.go b/client-go/informers/core/v1alpha1/ipaddress.go index f84f3187..656af8bd 100644 --- a/client-go/informers/core/v1alpha1/ipaddress.go +++ b/client-go/informers/core/v1alpha1/ipaddress.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/loadbalancer.go b/client-go/informers/core/v1alpha1/loadbalancer.go index 4867ad41..8a23daed 100644 --- a/client-go/informers/core/v1alpha1/loadbalancer.go +++ b/client-go/informers/core/v1alpha1/loadbalancer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/loadbalancerrouting.go b/client-go/informers/core/v1alpha1/loadbalancerrouting.go index 6276f21c..657caa24 100644 --- a/client-go/informers/core/v1alpha1/loadbalancerrouting.go +++ b/client-go/informers/core/v1alpha1/loadbalancerrouting.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/natgateway.go b/client-go/informers/core/v1alpha1/natgateway.go index 76cdaf52..900c0a31 100644 --- a/client-go/informers/core/v1alpha1/natgateway.go +++ b/client-go/informers/core/v1alpha1/natgateway.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/natgatewayautoscaler.go b/client-go/informers/core/v1alpha1/natgatewayautoscaler.go index 2bd29bd2..de669217 100644 --- a/client-go/informers/core/v1alpha1/natgatewayautoscaler.go +++ b/client-go/informers/core/v1alpha1/natgatewayautoscaler.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/nattable.go b/client-go/informers/core/v1alpha1/nattable.go index 6d7b1c6a..7c0b4337 100644 --- a/client-go/informers/core/v1alpha1/nattable.go +++ b/client-go/informers/core/v1alpha1/nattable.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/network.go b/client-go/informers/core/v1alpha1/network.go index b2ea75dd..076b0758 100644 --- a/client-go/informers/core/v1alpha1/network.go +++ b/client-go/informers/core/v1alpha1/network.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/networkid.go b/client-go/informers/core/v1alpha1/networkid.go index 874132ba..031959cb 100644 --- a/client-go/informers/core/v1alpha1/networkid.go +++ b/client-go/informers/core/v1alpha1/networkid.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/networkinterface.go b/client-go/informers/core/v1alpha1/networkinterface.go index 6651d07e..ecc727d2 100644 --- a/client-go/informers/core/v1alpha1/networkinterface.go +++ b/client-go/informers/core/v1alpha1/networkinterface.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/core/v1alpha1/node.go b/client-go/informers/core/v1alpha1/node.go index 2f1b3d78..23d2be9a 100644 --- a/client-go/informers/core/v1alpha1/node.go +++ b/client-go/informers/core/v1alpha1/node.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/factory.go b/client-go/informers/factory.go index 6b3040bf..1e7af808 100644 --- a/client-go/informers/factory.go +++ b/client-go/informers/factory.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. @@ -29,6 +29,7 @@ type sharedInformerFactory struct { lock sync.Mutex defaultResync time.Duration customResync map[reflect.Type]time.Duration + transform cache.TransformFunc informers map[reflect.Type]cache.SharedIndexInformer // startedInformers is used for tracking which informers have been started. @@ -67,6 +68,14 @@ func WithNamespace(namespace string) SharedInformerOption { } } +// WithTransform sets a transform on all informers. +func WithTransform(transform cache.TransformFunc) SharedInformerOption { + return func(factory *sharedInformerFactory) *sharedInformerFactory { + factory.transform = transform + return factory + } +} + // NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces. func NewSharedInformerFactory(client ironcorenet.Interface, defaultResync time.Duration) SharedInformerFactory { return NewSharedInformerFactoryWithOptions(client, defaultResync) @@ -171,6 +180,7 @@ func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internal } informer = newFunc(f.client, resyncPeriod) + informer.SetTransform(f.transform) f.informers[informerType] = informer return informer diff --git a/client-go/informers/generic.go b/client-go/informers/generic.go index ed54b22a..7a1b9ff9 100644 --- a/client-go/informers/generic.go +++ b/client-go/informers/generic.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/informers/internalinterfaces/factory_interfaces.go b/client-go/informers/internalinterfaces/factory_interfaces.go index 45bcd2ab..e40c9c35 100644 --- a/client-go/informers/internalinterfaces/factory_interfaces.go +++ b/client-go/informers/internalinterfaces/factory_interfaces.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by informer-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/clientset.go b/client-go/ironcorenet/clientset.go index fd48d820..e177c18a 100644 --- a/client-go/ironcorenet/clientset.go +++ b/client-go/ironcorenet/clientset.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/fake/clientset_generated.go b/client-go/ironcorenet/fake/clientset_generated.go index 0ce4770f..457ed68b 100644 --- a/client-go/ironcorenet/fake/clientset_generated.go +++ b/client-go/ironcorenet/fake/clientset_generated.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/fake/doc.go b/client-go/ironcorenet/fake/doc.go index e1c3fbb4..ca521683 100644 --- a/client-go/ironcorenet/fake/doc.go +++ b/client-go/ironcorenet/fake/doc.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/fake/register.go b/client-go/ironcorenet/fake/register.go index 31a104b8..01c569af 100644 --- a/client-go/ironcorenet/fake/register.go +++ b/client-go/ironcorenet/fake/register.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/scheme/doc.go b/client-go/ironcorenet/scheme/doc.go index f269c518..9f594553 100644 --- a/client-go/ironcorenet/scheme/doc.go +++ b/client-go/ironcorenet/scheme/doc.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/scheme/register.go b/client-go/ironcorenet/scheme/register.go index 93ef5a66..44c00c26 100644 --- a/client-go/ironcorenet/scheme/register.go +++ b/client-go/ironcorenet/scheme/register.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/core_client.go b/client-go/ironcorenet/typed/core/v1alpha1/core_client.go index d374a87e..b11a16a1 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/core_client.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/core_client.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/daemonset.go b/client-go/ironcorenet/typed/core/v1alpha1/daemonset.go index 6d023e9f..fb792975 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/daemonset.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/daemonset.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/doc.go b/client-go/ironcorenet/typed/core/v1alpha1/doc.go index 475c25e6..6a7a9f5f 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/doc.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/doc.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/doc.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/doc.go index cccbd0d2..ec693424 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/doc.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/doc.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_core_client.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_core_client.go index 79daa9e3..04ae29d1 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_core_client.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_core_client.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_daemonset.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_daemonset.go index b23ae6a9..32a02879 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_daemonset.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_daemonset.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_instance.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_instance.go index e069e3fa..05745c1a 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_instance.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_instance.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_ip.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_ip.go index 1d649818..22452a9b 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_ip.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_ip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_ipaddress.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_ipaddress.go index c32d74ac..c1d2a4f9 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_ipaddress.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_ipaddress.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_loadbalancer.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_loadbalancer.go index 559a2b8d..f590a264 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_loadbalancer.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_loadbalancer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_loadbalancerrouting.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_loadbalancerrouting.go index 9da35054..e61c7854 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_loadbalancerrouting.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_loadbalancerrouting.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_natgateway.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_natgateway.go index a5cdbaa3..605b2f50 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_natgateway.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_natgateway.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_natgatewayautoscaler.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_natgatewayautoscaler.go index 2eb3d88d..dd79e260 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_natgatewayautoscaler.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_natgatewayautoscaler.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_nattable.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_nattable.go index 1ae0713c..4689c323 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_nattable.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_nattable.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_network.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_network.go index 808ad43d..1503a549 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_network.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_network.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_networkid.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_networkid.go index e67d4db1..4d3f0e59 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_networkid.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_networkid.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_networkinterface.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_networkinterface.go index e1ff929d..96f3f4a9 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_networkinterface.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_networkinterface.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_node.go b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_node.go index 4190bb85..32ecdb89 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_node.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/fake/fake_node.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/generated_expansion.go b/client-go/ironcorenet/typed/core/v1alpha1/generated_expansion.go index 76fb73d7..9b2f74c5 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/generated_expansion.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/generated_expansion.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/instance.go b/client-go/ironcorenet/typed/core/v1alpha1/instance.go index 2d5e5ef1..3d64a801 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/instance.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/instance.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/ip.go b/client-go/ironcorenet/typed/core/v1alpha1/ip.go index 436447c2..05977ec7 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/ip.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/ip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/ipaddress.go b/client-go/ironcorenet/typed/core/v1alpha1/ipaddress.go index 2bb206f4..da312155 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/ipaddress.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/ipaddress.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/loadbalancer.go b/client-go/ironcorenet/typed/core/v1alpha1/loadbalancer.go index 1437631a..d11a8a54 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/loadbalancer.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/loadbalancer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/loadbalancerrouting.go b/client-go/ironcorenet/typed/core/v1alpha1/loadbalancerrouting.go index 96c86a78..444f8ba6 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/loadbalancerrouting.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/loadbalancerrouting.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/natgateway.go b/client-go/ironcorenet/typed/core/v1alpha1/natgateway.go index 02c86e07..fde2747d 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/natgateway.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/natgateway.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/natgatewayautoscaler.go b/client-go/ironcorenet/typed/core/v1alpha1/natgatewayautoscaler.go index 0be33222..5e069aae 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/natgatewayautoscaler.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/natgatewayautoscaler.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/nattable.go b/client-go/ironcorenet/typed/core/v1alpha1/nattable.go index d07fbd0f..6ade3c61 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/nattable.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/nattable.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/network.go b/client-go/ironcorenet/typed/core/v1alpha1/network.go index 51551ea7..41ea81e8 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/network.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/network.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/networkid.go b/client-go/ironcorenet/typed/core/v1alpha1/networkid.go index 09a86f1b..2cabaea2 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/networkid.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/networkid.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/networkinterface.go b/client-go/ironcorenet/typed/core/v1alpha1/networkinterface.go index 3c08af72..55966fac 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/networkinterface.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/networkinterface.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/ironcorenet/typed/core/v1alpha1/node.go b/client-go/ironcorenet/typed/core/v1alpha1/node.go index dabdbf9d..90f347b5 100644 --- a/client-go/ironcorenet/typed/core/v1alpha1/node.go +++ b/client-go/ironcorenet/typed/core/v1alpha1/node.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by client-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/daemonset.go b/client-go/listers/core/v1alpha1/daemonset.go index cd8064ad..8d00dcab 100644 --- a/client-go/listers/core/v1alpha1/daemonset.go +++ b/client-go/listers/core/v1alpha1/daemonset.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/expansion_generated.go b/client-go/listers/core/v1alpha1/expansion_generated.go index 7bfc2a22..23e5ad4f 100644 --- a/client-go/listers/core/v1alpha1/expansion_generated.go +++ b/client-go/listers/core/v1alpha1/expansion_generated.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/instance.go b/client-go/listers/core/v1alpha1/instance.go index 17314340..1f29ef7f 100644 --- a/client-go/listers/core/v1alpha1/instance.go +++ b/client-go/listers/core/v1alpha1/instance.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/ip.go b/client-go/listers/core/v1alpha1/ip.go index 1e72688b..ac785756 100644 --- a/client-go/listers/core/v1alpha1/ip.go +++ b/client-go/listers/core/v1alpha1/ip.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/ipaddress.go b/client-go/listers/core/v1alpha1/ipaddress.go index 9759e861..18f26ff5 100644 --- a/client-go/listers/core/v1alpha1/ipaddress.go +++ b/client-go/listers/core/v1alpha1/ipaddress.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/loadbalancer.go b/client-go/listers/core/v1alpha1/loadbalancer.go index bad9ea81..4e022edd 100644 --- a/client-go/listers/core/v1alpha1/loadbalancer.go +++ b/client-go/listers/core/v1alpha1/loadbalancer.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/loadbalancerrouting.go b/client-go/listers/core/v1alpha1/loadbalancerrouting.go index 7a4b9e43..dccf3e9c 100644 --- a/client-go/listers/core/v1alpha1/loadbalancerrouting.go +++ b/client-go/listers/core/v1alpha1/loadbalancerrouting.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/natgateway.go b/client-go/listers/core/v1alpha1/natgateway.go index 28ed796a..ce87dbf0 100644 --- a/client-go/listers/core/v1alpha1/natgateway.go +++ b/client-go/listers/core/v1alpha1/natgateway.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/natgatewayautoscaler.go b/client-go/listers/core/v1alpha1/natgatewayautoscaler.go index 717681e9..34cd56d8 100644 --- a/client-go/listers/core/v1alpha1/natgatewayautoscaler.go +++ b/client-go/listers/core/v1alpha1/natgatewayautoscaler.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/nattable.go b/client-go/listers/core/v1alpha1/nattable.go index 5f0da443..686e892b 100644 --- a/client-go/listers/core/v1alpha1/nattable.go +++ b/client-go/listers/core/v1alpha1/nattable.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/network.go b/client-go/listers/core/v1alpha1/network.go index 2a6ae02e..bd4548a4 100644 --- a/client-go/listers/core/v1alpha1/network.go +++ b/client-go/listers/core/v1alpha1/network.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/networkid.go b/client-go/listers/core/v1alpha1/networkid.go index 4afe2b7f..1ffe5689 100644 --- a/client-go/listers/core/v1alpha1/networkid.go +++ b/client-go/listers/core/v1alpha1/networkid.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/networkinterface.go b/client-go/listers/core/v1alpha1/networkinterface.go index eed8a165..edbb75c7 100644 --- a/client-go/listers/core/v1alpha1/networkinterface.go +++ b/client-go/listers/core/v1alpha1/networkinterface.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/listers/core/v1alpha1/node.go b/client-go/listers/core/v1alpha1/node.go index 819ef9ca..bef5c5b9 100644 --- a/client-go/listers/core/v1alpha1/node.go +++ b/client-go/listers/core/v1alpha1/node.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by lister-gen. DO NOT EDIT. diff --git a/client-go/openapi/zz_generated.openapi.go b/client-go/openapi/zz_generated.openapi.go index 69233dde..69154dfd 100644 --- a/client-go/openapi/zz_generated.openapi.go +++ b/client-go/openapi/zz_generated.openapi.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by openapi-gen. DO NOT EDIT. @@ -109,6 +109,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "k8s.io/api/core/v1.CinderVolumeSource": schema_k8sio_api_core_v1_CinderVolumeSource(ref), "k8s.io/api/core/v1.ClaimSource": schema_k8sio_api_core_v1_ClaimSource(ref), "k8s.io/api/core/v1.ClientIPConfig": schema_k8sio_api_core_v1_ClientIPConfig(ref), + "k8s.io/api/core/v1.ClusterTrustBundleProjection": schema_k8sio_api_core_v1_ClusterTrustBundleProjection(ref), "k8s.io/api/core/v1.ComponentCondition": schema_k8sio_api_core_v1_ComponentCondition(ref), "k8s.io/api/core/v1.ComponentStatus": schema_k8sio_api_core_v1_ComponentStatus(ref), "k8s.io/api/core/v1.ComponentStatusList": schema_k8sio_api_core_v1_ComponentStatusList(ref), @@ -177,6 +178,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "k8s.io/api/core/v1.LoadBalancerStatus": schema_k8sio_api_core_v1_LoadBalancerStatus(ref), "k8s.io/api/core/v1.LocalObjectReference": schema_k8sio_api_core_v1_LocalObjectReference(ref), "k8s.io/api/core/v1.LocalVolumeSource": schema_k8sio_api_core_v1_LocalVolumeSource(ref), + "k8s.io/api/core/v1.ModifyVolumeStatus": schema_k8sio_api_core_v1_ModifyVolumeStatus(ref), "k8s.io/api/core/v1.NFSVolumeSource": schema_k8sio_api_core_v1_NFSVolumeSource(ref), "k8s.io/api/core/v1.Namespace": schema_k8sio_api_core_v1_Namespace(ref), "k8s.io/api/core/v1.NamespaceCondition": schema_k8sio_api_core_v1_NamespaceCondition(ref), @@ -289,6 +291,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "k8s.io/api/core/v1.ServiceSpec": schema_k8sio_api_core_v1_ServiceSpec(ref), "k8s.io/api/core/v1.ServiceStatus": schema_k8sio_api_core_v1_ServiceStatus(ref), "k8s.io/api/core/v1.SessionAffinityConfig": schema_k8sio_api_core_v1_SessionAffinityConfig(ref), + "k8s.io/api/core/v1.SleepAction": schema_k8sio_api_core_v1_SleepAction(ref), "k8s.io/api/core/v1.StorageOSPersistentVolumeSource": schema_k8sio_api_core_v1_StorageOSPersistentVolumeSource(ref), "k8s.io/api/core/v1.StorageOSVolumeSource": schema_k8sio_api_core_v1_StorageOSVolumeSource(ref), "k8s.io/api/core/v1.Sysctl": schema_k8sio_api_core_v1_Sysctl(ref), @@ -305,6 +308,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "k8s.io/api/core/v1.VolumeMount": schema_k8sio_api_core_v1_VolumeMount(ref), "k8s.io/api/core/v1.VolumeNodeAffinity": schema_k8sio_api_core_v1_VolumeNodeAffinity(ref), "k8s.io/api/core/v1.VolumeProjection": schema_k8sio_api_core_v1_VolumeProjection(ref), + "k8s.io/api/core/v1.VolumeResourceRequirements": schema_k8sio_api_core_v1_VolumeResourceRequirements(ref), "k8s.io/api/core/v1.VolumeSource": schema_k8sio_api_core_v1_VolumeSource(ref), "k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource": schema_k8sio_api_core_v1_VsphereVirtualDiskVolumeSource(ref), "k8s.io/api/core/v1.WeightedPodAffinityTerm": schema_k8sio_api_core_v1_WeightedPodAffinityTerm(ref), @@ -719,8 +723,7 @@ func schema_ironcore_net_api_core_v1alpha1_IPAddressSpec(ref common.ReferenceCal Properties: map[string]spec.Schema{ "ip": { SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, "claimRef": { @@ -837,16 +840,15 @@ func schema_ironcore_net_api_core_v1alpha1_IPSpec(ref common.ReferenceCallback) }, "ipFamily": { SchemaProps: spec.SchemaProps{ - Description: "Possible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + Description: "Possible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", Type: []string{"string"}, Format: "", - Enum: []interface{}{"IPv4", "IPv6"}, + Enum: []interface{}{"", "IPv4", "IPv6"}, }, }, "ip": { SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, "claimRef": { @@ -1063,8 +1065,7 @@ func schema_ironcore_net_api_core_v1alpha1_InstanceSpec(ref common.ReferenceCall Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, }, @@ -1131,8 +1132,7 @@ func schema_ironcore_net_api_core_v1alpha1_InstanceStatus(ref common.ReferenceCa Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, }, @@ -1235,7 +1235,6 @@ func schema_ironcore_net_api_core_v1alpha1_LoadBalancerDestination(ref common.Re "ip": { SchemaProps: spec.SchemaProps{ Description: "IP is the target IP.", - Default: map[string]interface{}{}, Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, @@ -1270,16 +1269,15 @@ func schema_ironcore_net_api_core_v1alpha1_LoadBalancerIP(ref common.ReferenceCa }, "ipFamily": { SchemaProps: spec.SchemaProps{ - Description: "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + Description: "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", Type: []string{"string"}, Format: "", - Enum: []interface{}{"IPv4", "IPv6"}, + Enum: []interface{}{"", "IPv4", "IPv6"}, }, }, "ip": { SchemaProps: spec.SchemaProps{ Description: "IP specifies a specific IP to allocate. If empty, a random IP will be allocated if possible.", - Default: map[string]interface{}{}, Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, @@ -1815,7 +1813,6 @@ func schema_ironcore_net_api_core_v1alpha1_NATGatewayIP(ref common.ReferenceCall "ip": { SchemaProps: spec.SchemaProps{ Description: "IP specifies a specific IP to allocate. If empty, a random IP will be allocated if possible.", - Default: map[string]interface{}{}, Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, @@ -1885,11 +1882,11 @@ func schema_ironcore_net_api_core_v1alpha1_NATGatewaySpec(ref common.ReferenceCa Properties: map[string]spec.Schema{ "ipFamily": { SchemaProps: spec.SchemaProps{ - Description: "IPFamily is the IP family of the NAT gateway.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + Description: "IPFamily is the IP family of the NAT gateway.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", Default: "", Type: []string{"string"}, Format: "", - Enum: []interface{}{"IPv4", "IPv6"}, + Enum: []interface{}{"", "IPv4", "IPv6"}, }, }, "networkRef": { @@ -1971,7 +1968,6 @@ func schema_ironcore_net_api_core_v1alpha1_NATIP(ref common.ReferenceCallback) c "ip": { SchemaProps: spec.SchemaProps{ Description: "IP is the IP to NAT.", - Default: map[string]interface{}{}, Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, @@ -2007,7 +2003,6 @@ func schema_ironcore_net_api_core_v1alpha1_NATIPSection(ref common.ReferenceCall "ip": { SchemaProps: spec.SchemaProps{ Description: "IP is the source IP.", - Default: map[string]interface{}{}, Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, @@ -2482,11 +2477,11 @@ func schema_ironcore_net_api_core_v1alpha1_NetworkInterfaceNAT(ref common.Refere Properties: map[string]spec.Schema{ "ipFamily": { SchemaProps: spec.SchemaProps{ - Description: "IPFamily is the IP family of the handling NAT gateway.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + Description: "IPFamily is the IP family of the handling NAT gateway.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", Default: "", Type: []string{"string"}, Format: "", - Enum: []interface{}{"IPv4", "IPv6"}, + Enum: []interface{}{"", "IPv4", "IPv6"}, }, }, "claimRef": { @@ -2550,16 +2545,15 @@ func schema_ironcore_net_api_core_v1alpha1_NetworkInterfacePublicIP(ref common.R }, "ipFamily": { SchemaProps: spec.SchemaProps{ - Description: "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + Description: "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", Type: []string{"string"}, Format: "", - Enum: []interface{}{"IPv4", "IPv6"}, + Enum: []interface{}{"", "IPv4", "IPv6"}, }, }, "ip": { SchemaProps: spec.SchemaProps{ Description: "IP specifies a specific IP to allocate. If empty, a random ephemeral IP will be allocated.", - Default: map[string]interface{}{}, Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, @@ -2599,8 +2593,7 @@ func schema_ironcore_net_api_core_v1alpha1_NetworkInterfaceSpec(ref common.Refer Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, }, @@ -2613,8 +2606,7 @@ func schema_ironcore_net_api_core_v1alpha1_NetworkInterfaceSpec(ref common.Refer Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IPPrefix"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IPPrefix"), }, }, }, @@ -2686,8 +2678,7 @@ func schema_ironcore_net_api_core_v1alpha1_NetworkInterfaceStatus(ref common.Ref Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IPPrefix"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IPPrefix"), }, }, }, @@ -2699,8 +2690,7 @@ func schema_ironcore_net_api_core_v1alpha1_NetworkInterfaceStatus(ref common.Ref Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, }, @@ -2712,8 +2702,7 @@ func schema_ironcore_net_api_core_v1alpha1_NetworkInterfaceStatus(ref common.Ref Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), + Ref: ref("github.com/ironcore-dev/ironcore-net/apimachinery/api/net.IP"), }, }, }, @@ -3564,7 +3553,7 @@ func schema_k8sio_api_core_v1_CSIPersistentVolumeSource(ref common.ReferenceCall }, "nodeExpandSecretRef": { SchemaProps: spec.SchemaProps{ - Description: "nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call. This is a beta field which is enabled default by CSINodeExpandSecret feature gate. This field is optional, may be omitted if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + Description: "nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call. This field is optional, may be omitted if no secret is required. If the secret object contains more than one secret, all secrets are passed.", Ref: ref("k8s.io/api/core/v1.SecretReference"), }, }, @@ -3945,6 +3934,57 @@ func schema_k8sio_api_core_v1_ClientIPConfig(ref common.ReferenceCallback) commo } } +func schema_k8sio_api_core_v1_ClusterTrustBundleProjection(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem.", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Select a single ClusterTrustBundle by object name. Mutually-exclusive with signerName and labelSelector.", + Type: []string{"string"}, + Format: "", + }, + }, + "signerName": { + SchemaProps: spec.SchemaProps{ + Description: "Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name. The contents of all selected ClusterTrustBundles will be unified and deduplicated.", + Type: []string{"string"}, + Format: "", + }, + }, + "labelSelector": { + SchemaProps: spec.SchemaProps{ + Description: "Select all ClusterTrustBundles that match this label selector. Only has effect if signerName is set. Mutually-exclusive with name. If unset, interpreted as \"match nothing\". If set but empty, interpreted as \"match everything\".", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available. If using name, then the named ClusterTrustBundle is allowed not to exist. If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Relative path from the volume root to write the bundle.", + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"path"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + } +} + func schema_k8sio_api_core_v1_ComponentCondition(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -4868,7 +4908,6 @@ func schema_k8sio_api_core_v1_ContainerStateRunning(ref common.ReferenceCallback "startedAt": { SchemaProps: spec.SchemaProps{ Description: "Time at which the container was last (re-)started", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -4919,14 +4958,12 @@ func schema_k8sio_api_core_v1_ContainerStateTerminated(ref common.ReferenceCallb "startedAt": { SchemaProps: spec.SchemaProps{ Description: "Time at which previous execution of the container started", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, "finishedAt": { SchemaProps: spec.SchemaProps{ Description: "Time at which the container last terminated", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -5056,8 +5093,7 @@ func schema_k8sio_api_core_v1_ContainerStatus(ref common.ReferenceCallback) comm Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -5317,7 +5353,7 @@ func schema_k8sio_api_core_v1_EndpointPort(ref common.ReferenceCallback) common. }, "appProtocol": { SchemaProps: spec.SchemaProps{ - Description: "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", + Description: "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", Type: []string{"string"}, Format: "", }, @@ -6237,14 +6273,12 @@ func schema_k8sio_api_core_v1_Event(ref common.ReferenceCallback) common.OpenAPI "firstTimestamp": { SchemaProps: spec.SchemaProps{ Description: "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, "lastTimestamp": { SchemaProps: spec.SchemaProps{ Description: "The time at which the most recent occurrence of this event was recorded.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -6265,7 +6299,6 @@ func schema_k8sio_api_core_v1_Event(ref common.ReferenceCallback) common.OpenAPI "eventTime": { SchemaProps: spec.SchemaProps{ Description: "Time when this Event was first observed.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime"), }, }, @@ -6381,7 +6414,6 @@ func schema_k8sio_api_core_v1_EventSeries(ref common.ReferenceCallback) common.O "lastObservedTime": { SchemaProps: spec.SchemaProps{ Description: "Time of the last occurrence observed", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime"), }, }, @@ -6865,7 +6897,6 @@ func schema_k8sio_api_core_v1_HTTPGetAction(ref common.ReferenceCallback) common "port": { SchemaProps: spec.SchemaProps{ Description: "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), }, }, @@ -7317,11 +7348,17 @@ func schema_k8sio_api_core_v1_LifecycleHandler(ref common.ReferenceCallback) com Ref: ref("k8s.io/api/core/v1.TCPSocketAction"), }, }, + "sleep": { + SchemaProps: spec.SchemaProps{ + Description: "Sleep represents the duration that the container should sleep before being terminated.", + Ref: ref("k8s.io/api/core/v1.SleepAction"), + }, + }, }, }, }, Dependencies: []string{ - "k8s.io/api/core/v1.ExecAction", "k8s.io/api/core/v1.HTTPGetAction", "k8s.io/api/core/v1.TCPSocketAction"}, + "k8s.io/api/core/v1.ExecAction", "k8s.io/api/core/v1.HTTPGetAction", "k8s.io/api/core/v1.SleepAction", "k8s.io/api/core/v1.TCPSocketAction"}, } } @@ -7391,8 +7428,7 @@ func schema_k8sio_api_core_v1_LimitRangeItem(ref common.ReferenceCallback) commo Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -7406,8 +7442,7 @@ func schema_k8sio_api_core_v1_LimitRangeItem(ref common.ReferenceCallback) commo Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -7421,8 +7456,7 @@ func schema_k8sio_api_core_v1_LimitRangeItem(ref common.ReferenceCallback) commo Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -7436,8 +7470,7 @@ func schema_k8sio_api_core_v1_LimitRangeItem(ref common.ReferenceCallback) commo Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -7451,8 +7484,7 @@ func schema_k8sio_api_core_v1_LimitRangeItem(ref common.ReferenceCallback) commo Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -7583,8 +7615,7 @@ func schema_k8sio_api_core_v1_List(ref common.ReferenceCallback) common.OpenAPID Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), + Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), }, }, }, @@ -7620,6 +7651,13 @@ func schema_k8sio_api_core_v1_LoadBalancerIngress(ref common.ReferenceCallback) Format: "", }, }, + "ipMode": { + SchemaProps: spec.SchemaProps{ + Description: "IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to \"VIP\" indicates that traffic is delivered to the node with the destination set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that traffic is delivered to the node or pod with the destination set to the node's IP and node port or the pod's IP and port. Service implementations may use this information to adjust traffic routing.", + Type: []string{"string"}, + Format: "", + }, + }, "ports": { VendorExtensible: spec.VendorExtensible{ Extensions: spec.Extensions{ @@ -7730,6 +7768,36 @@ func schema_k8sio_api_core_v1_LocalVolumeSource(ref common.ReferenceCallback) co } } +func schema_k8sio_api_core_v1_ModifyVolumeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "targetVolumeAttributesClassName": { + SchemaProps: spec.SchemaProps{ + Description: "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "status is the status of the ControllerModifyVolume operation. It can be in any of following states:\n - Pending\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n the specified VolumeAttributesClass not existing.\n - InProgress\n InProgress indicates that the volume is being modified.\n - Infeasible\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.\n\nPossible enum values:\n - `\"InProgress\"` InProgress indicates that the volume is being modified\n - `\"Infeasible\"` Infeasible indicates that the request has been rejected as invalid by the CSI driver. To resolve the error, a valid VolumeAttributesClass needs to be specified\n - `\"Pending\"` Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as the specified VolumeAttributesClass not existing", + Default: "", + Type: []string{"string"}, + Format: "", + Enum: []interface{}{"InProgress", "Infeasible", "Pending"}, + }, + }, + }, + Required: []string{"status"}, + }, + }, + } +} + func schema_k8sio_api_core_v1_NFSVolumeSource(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -7842,8 +7910,7 @@ func schema_k8sio_api_core_v1_NamespaceCondition(ref common.ReferenceCallback) c }, "lastTransitionTime": { SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, "reason": { @@ -8130,14 +8197,12 @@ func schema_k8sio_api_core_v1_NodeCondition(ref common.ReferenceCallback) common "lastHeartbeatTime": { SchemaProps: spec.SchemaProps{ Description: "Last time we got an update on a given condition.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, "lastTransitionTime": { SchemaProps: spec.SchemaProps{ Description: "Last time the condition transit from one status to another.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -8347,8 +8412,7 @@ func schema_k8sio_api_core_v1_NodeResources(ref common.ReferenceCallback) common Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -8590,8 +8654,7 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -8605,8 +8668,7 @@ func schema_k8sio_api_core_v1_NodeStatus(ref common.ReferenceCallback) common.Op Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -9050,14 +9112,12 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimCondition(ref common.Referenc "lastProbeTime": { SchemaProps: spec.SchemaProps{ Description: "lastProbeTime is the time we probed the condition.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, "lastTransitionTime": { SchemaProps: spec.SchemaProps{ Description: "lastTransitionTime is the time the condition transitioned from one status to another.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -9167,7 +9227,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimSpec(ref common.ReferenceCall SchemaProps: spec.SchemaProps{ Description: "resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources", Default: map[string]interface{}{}, - Ref: ref("k8s.io/api/core/v1.ResourceRequirements"), + Ref: ref("k8s.io/api/core/v1.VolumeResourceRequirements"), }, }, "volumeName": { @@ -9204,11 +9264,18 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimSpec(ref common.ReferenceCall Ref: ref("k8s.io/api/core/v1.TypedObjectReference"), }, }, + "volumeAttributesClassName": { + SchemaProps: spec.SchemaProps{ + Description: "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string once it is set. If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.", + Type: []string{"string"}, + Format: "", + }, + }, }, }, }, Dependencies: []string{ - "k8s.io/api/core/v1.ResourceRequirements", "k8s.io/api/core/v1.TypedLocalObjectReference", "k8s.io/api/core/v1.TypedObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + "k8s.io/api/core/v1.TypedLocalObjectReference", "k8s.io/api/core/v1.TypedObjectReference", "k8s.io/api/core/v1.VolumeResourceRequirements", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, } } @@ -9250,8 +9317,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimStatus(ref common.ReferenceCa Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -9285,8 +9351,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimStatus(ref common.ReferenceCa Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -9313,11 +9378,24 @@ func schema_k8sio_api_core_v1_PersistentVolumeClaimStatus(ref common.ReferenceCa }, }, }, + "currentVolumeAttributesClassName": { + SchemaProps: spec.SchemaProps{ + Description: "currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature.", + Type: []string{"string"}, + Format: "", + }, + }, + "modifyVolumeStatus": { + SchemaProps: spec.SchemaProps{ + Description: "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. When this is unset, there is no ModifyVolume operation being attempted. This is an alpha field and requires enabling VolumeAttributesClass feature.", + Ref: ref("k8s.io/api/core/v1.ModifyVolumeStatus"), + }, + }, }, }, }, Dependencies: []string{ - "k8s.io/api/core/v1.PersistentVolumeClaimCondition", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + "k8s.io/api/core/v1.ModifyVolumeStatus", "k8s.io/api/core/v1.PersistentVolumeClaimCondition", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, } } @@ -9593,8 +9671,7 @@ func schema_k8sio_api_core_v1_PersistentVolumeSpec(ref common.ReferenceCallback) Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -9802,6 +9879,13 @@ func schema_k8sio_api_core_v1_PersistentVolumeSpec(ref common.ReferenceCallback) Ref: ref("k8s.io/api/core/v1.VolumeNodeAffinity"), }, }, + "volumeAttributesClassName": { + SchemaProps: spec.SchemaProps{ + Description: "Name of VolumeAttributesClass to which this persistent volume belongs. Empty value is not allowed. When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass. This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class. For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process. This is an alpha field and requires enabling VolumeAttributesClass feature.", + Type: []string{"string"}, + Format: "", + }, + }, }, }, }, @@ -9984,7 +10068,7 @@ func schema_k8sio_api_core_v1_PodAffinityTerm(ref common.ReferenceCallback) comm Properties: map[string]spec.Schema{ "labelSelector": { SchemaProps: spec.SchemaProps{ - Description: "A label query over a set of resources, in this case pods.", + Description: "A label query over a set of resources, in this case pods. If it's null, this PodAffinityTerm matches with no Pods.", Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), }, }, @@ -10017,6 +10101,46 @@ func schema_k8sio_api_core_v1_PodAffinityTerm(ref common.ReferenceCallback) comm Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), }, }, + "matchLabelKeys": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-list-type": "atomic", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. Also, MatchLabelKeys cannot be set when LabelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "mismatchLabelKeys": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-list-type": "atomic", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector. Also, MismatchLabelKeys cannot be set when LabelSelector isn't set. This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, }, Required: []string{"topologyKey"}, }, @@ -10157,14 +10281,12 @@ func schema_k8sio_api_core_v1_PodCondition(ref common.ReferenceCallback) common. "lastProbeTime": { SchemaProps: spec.SchemaProps{ Description: "Last time we probed the condition.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, "lastTransitionTime": { SchemaProps: spec.SchemaProps{ Description: "Last time the condition transitioned from one status to another.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -11182,8 +11304,7 @@ func schema_k8sio_api_core_v1_PodSpec(ref common.ReferenceCallback) common.OpenA Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -11753,7 +11874,6 @@ func schema_k8sio_api_core_v1_PreferAvoidPodsEntry(ref common.ReferenceCallback) "evictionTime": { SchemaProps: spec.SchemaProps{ Description: "Time at which this entry was added to the list.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -12313,7 +12433,6 @@ func schema_k8sio_api_core_v1_ReplicationControllerCondition(ref common.Referenc "lastTransitionTime": { SchemaProps: spec.SchemaProps{ Description: "The last time the condition transitioned from one status to another.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -12566,7 +12685,6 @@ func schema_k8sio_api_core_v1_ResourceFieldSelector(ref common.ReferenceCallback "divisor": { SchemaProps: spec.SchemaProps{ Description: "Specifies the output format of the exposed resources, defaults to \"1\"", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, @@ -12700,8 +12818,7 @@ func schema_k8sio_api_core_v1_ResourceQuotaSpec(ref common.ReferenceCallback) co Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -12751,8 +12868,7 @@ func schema_k8sio_api_core_v1_ResourceQuotaStatus(ref common.ReferenceCallback) Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -12766,8 +12882,7 @@ func schema_k8sio_api_core_v1_ResourceQuotaStatus(ref common.ReferenceCallback) Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -12796,8 +12911,7 @@ func schema_k8sio_api_core_v1_ResourceRequirements(ref common.ReferenceCallback) Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -12811,8 +12925,7 @@ func schema_k8sio_api_core_v1_ResourceRequirements(ref common.ReferenceCallback) Allows: true, Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), }, }, }, @@ -13926,7 +14039,7 @@ func schema_k8sio_api_core_v1_ServicePort(ref common.ReferenceCallback) common.O }, "appProtocol": { SchemaProps: spec.SchemaProps{ - Description: "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 over cleartext as described in https://www.rfc-editor.org/rfc/rfc7540\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", + Description: "The application protocol for this port. This is used as a hint for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.", Type: []string{"string"}, Format: "", }, @@ -13942,7 +14055,6 @@ func schema_k8sio_api_core_v1_ServicePort(ref common.ReferenceCallback) common.O "targetPort": { SchemaProps: spec.SchemaProps{ Description: "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), }, }, @@ -14289,6 +14401,28 @@ func schema_k8sio_api_core_v1_SessionAffinityConfig(ref common.ReferenceCallback } } +func schema_k8sio_api_core_v1_SleepAction(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SleepAction describes a \"sleep\" action.", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "seconds": { + SchemaProps: spec.SchemaProps{ + Description: "Seconds is the number of seconds to sleep.", + Default: 0, + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + Required: []string{"seconds"}, + }, + }, + } +} + func schema_k8sio_api_core_v1_StorageOSPersistentVolumeSource(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -14427,7 +14561,6 @@ func schema_k8sio_api_core_v1_TCPSocketAction(ref common.ReferenceCallback) comm "port": { SchemaProps: spec.SchemaProps{ Description: "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), }, }, @@ -15128,11 +15261,60 @@ func schema_k8sio_api_core_v1_VolumeProjection(ref common.ReferenceCallback) com Ref: ref("k8s.io/api/core/v1.ServiceAccountTokenProjection"), }, }, + "clusterTrustBundle": { + SchemaProps: spec.SchemaProps{ + Description: "ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field of ClusterTrustBundle objects in an auto-updating file.\n\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\n\nClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selector.\n\nKubelet performs aggressive normalization of the PEM contents written into the pod filesystem. Esoteric PEM features such as inter-block comments and block headers are stripped. Certificates are deduplicated. The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time.", + Ref: ref("k8s.io/api/core/v1.ClusterTrustBundleProjection"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ClusterTrustBundleProjection", "k8s.io/api/core/v1.ConfigMapProjection", "k8s.io/api/core/v1.DownwardAPIProjection", "k8s.io/api/core/v1.SecretProjection", "k8s.io/api/core/v1.ServiceAccountTokenProjection"}, + } +} + +func schema_k8sio_api_core_v1_VolumeResourceRequirements(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "VolumeResourceRequirements describes the storage resource requirements for a volume.", + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "limits": { + SchemaProps: spec.SchemaProps{ + Description: "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Allows: true, + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "requests": { + SchemaProps: spec.SchemaProps{ + Description: "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Allows: true, + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, }, }, }, Dependencies: []string{ - "k8s.io/api/core/v1.ConfigMapProjection", "k8s.io/api/core/v1.DownwardAPIProjection", "k8s.io/api/core/v1.SecretProjection", "k8s.io/api/core/v1.ServiceAccountTokenProjection"}, + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, } } @@ -15920,7 +16102,6 @@ func schema_pkg_apis_meta_v1_Condition(ref common.ReferenceCallback) common.Open "lastTransitionTime": { SchemaProps: spec.SchemaProps{ Description: "lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -16476,8 +16657,7 @@ func schema_pkg_apis_meta_v1_List(ref common.ReferenceCallback) common.OpenAPIDe Items: &spec.SchemaOrArray{ Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ - Default: map[string]interface{}{}, - Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), + Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), }, }, }, @@ -16763,7 +16943,6 @@ func schema_pkg_apis_meta_v1_ObjectMeta(ref common.ReferenceCallback) common.Ope "creationTimestamp": { SchemaProps: spec.SchemaProps{ Description: "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), }, }, @@ -17545,7 +17724,6 @@ func schema_pkg_apis_meta_v1_TableRow(ref common.ReferenceCallback) common.OpenA "object": { SchemaProps: spec.SchemaProps{ Description: "This field contains the requested additional information about each object based on the includeObject policy when requesting the Table. If \"None\", this field is empty, if \"Object\" this will be the default serialization of the object for the current API version, and if \"Metadata\" (the default) will contain the object metadata. Check the returned kind and apiVersion of the object before parsing. The media type of the object will always match the enclosing list - if this as a JSON table, these will be JSON encoded objects.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), }, }, @@ -17744,7 +17922,6 @@ func schema_pkg_apis_meta_v1_WatchEvent(ref common.ReferenceCallback) common.Ope "object": { SchemaProps: spec.SchemaProps{ Description: "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n depending on context.", - Default: map[string]interface{}{}, Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), }, }, diff --git a/gen/swagger.json b/gen/swagger.json index 316b9d9d..ce628301 100644 --- a/gen/swagger.json +++ b/gen/swagger.json @@ -30990,13 +30990,11 @@ "description": "get available resources", "consumes": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -31027,9 +31025,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -31073,7 +31069,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -31101,9 +31097,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -31147,7 +31141,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -31175,9 +31169,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -31243,8 +31235,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -31317,8 +31308,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -31392,7 +31382,7 @@ }, "parameters": [ { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -31404,8 +31394,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -31439,8 +31428,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -31507,8 +31495,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -31572,8 +31559,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -31641,7 +31627,7 @@ "required": true }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -31654,9 +31640,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -31700,7 +31684,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -31728,9 +31712,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -31774,7 +31756,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -31802,9 +31784,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -31848,7 +31828,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -31876,9 +31856,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -31944,8 +31922,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32018,8 +31995,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32096,7 +32072,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -32108,8 +32084,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32143,8 +32118,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32211,8 +32185,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32276,8 +32249,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32348,7 +32320,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -32360,8 +32332,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32395,8 +32366,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32466,8 +32436,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32538,7 +32507,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -32551,9 +32520,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -32619,8 +32586,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32693,8 +32659,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32771,7 +32736,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -32783,8 +32748,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32818,8 +32782,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32886,8 +32849,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -32951,8 +32913,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33023,7 +32984,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -33035,8 +32996,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33070,8 +33030,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33141,8 +33100,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33213,7 +33171,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -33226,9 +33184,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -33294,8 +33250,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33368,8 +33323,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33446,7 +33400,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -33458,8 +33412,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33493,8 +33446,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33561,8 +33513,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33626,8 +33577,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33698,7 +33648,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -33711,9 +33661,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -33779,8 +33727,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33853,8 +33800,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33931,7 +33877,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -33943,8 +33889,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -33978,8 +33923,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34046,8 +33990,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34111,8 +34054,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34183,7 +34125,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -34196,9 +34138,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -34264,8 +34204,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34338,8 +34277,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34416,7 +34354,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -34428,8 +34366,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34463,8 +34400,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34531,8 +34467,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34596,8 +34531,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34668,7 +34602,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -34680,8 +34614,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34715,8 +34648,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34786,8 +34718,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -34858,7 +34789,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -34871,9 +34802,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -34939,8 +34868,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35013,8 +34941,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35091,7 +35018,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -35103,8 +35030,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35138,8 +35064,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35206,8 +35131,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35271,8 +35195,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35343,7 +35266,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -35355,8 +35278,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35390,8 +35312,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35461,8 +35382,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35533,7 +35453,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -35546,9 +35466,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -35614,8 +35532,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35688,8 +35605,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35766,7 +35682,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -35778,8 +35694,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35813,8 +35728,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35881,8 +35795,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -35946,8 +35859,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36018,7 +35930,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -36030,8 +35942,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36065,8 +35976,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36136,8 +36046,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36208,7 +36117,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -36221,9 +36130,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -36289,8 +36196,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36363,8 +36269,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36441,7 +36346,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -36453,8 +36358,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36488,8 +36392,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36556,8 +36459,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36621,8 +36523,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36693,7 +36594,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -36706,9 +36607,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -36774,8 +36673,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36848,8 +36746,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36926,7 +36823,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -36938,8 +36835,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -36973,8 +36869,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37041,8 +36936,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37106,8 +37000,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37178,7 +37071,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -37190,8 +37083,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37225,8 +37117,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37296,8 +37187,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37368,7 +37258,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -37381,9 +37271,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -37449,8 +37337,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37523,8 +37410,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37601,7 +37487,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -37613,8 +37499,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37648,8 +37533,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37716,8 +37600,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37781,8 +37664,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37853,7 +37735,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -37865,8 +37747,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37900,8 +37781,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -37971,8 +37851,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -38043,7 +37922,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -38056,9 +37935,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -38102,7 +37979,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -38130,9 +38007,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -38176,7 +38051,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -38204,9 +38079,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -38250,7 +38123,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -38278,9 +38151,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -38346,8 +38217,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -38420,8 +38290,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -38495,7 +38364,7 @@ }, "parameters": [ { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -38507,8 +38376,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -38542,8 +38410,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -38610,8 +38477,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -38675,8 +38541,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -38744,7 +38609,7 @@ "required": true }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -38757,9 +38622,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -38803,7 +38666,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -38831,9 +38694,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -38877,7 +38738,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -38905,9 +38766,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -38973,8 +38832,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39047,8 +38905,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39122,7 +38979,7 @@ }, "parameters": [ { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -39134,8 +38991,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39169,8 +39025,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39237,8 +39092,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39302,8 +39156,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39371,7 +39224,7 @@ "required": true }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -39383,8 +39236,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39418,8 +39270,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39489,8 +39340,7 @@ ], "produces": [ "application/json", - "application/yaml", - "application/vnd.kubernetes.protobuf" + "application/yaml" ], "schemes": [ "https" @@ -39558,7 +39408,7 @@ "required": true }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" } ] }, @@ -39571,9 +39421,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -39617,7 +39465,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -39645,9 +39493,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -39691,7 +39537,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -39719,9 +39565,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -39765,7 +39609,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -39793,9 +39637,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -39847,7 +39689,7 @@ "required": true }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -39875,9 +39717,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -39921,7 +39761,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -39949,9 +39789,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -39995,7 +39833,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40023,9 +39861,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40069,7 +39905,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40097,9 +39933,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40146,7 +39980,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40174,9 +40008,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40231,7 +40063,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40259,9 +40091,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40308,7 +40138,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40336,9 +40166,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40393,7 +40221,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40421,9 +40249,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40470,7 +40296,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40498,9 +40324,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40555,7 +40379,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40583,9 +40407,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40632,7 +40454,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40660,9 +40482,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40717,7 +40537,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40745,9 +40565,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40794,7 +40612,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40822,9 +40640,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40879,7 +40695,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40907,9 +40723,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -40956,7 +40770,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -40984,9 +40798,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41041,7 +40853,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41069,9 +40881,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41118,7 +40928,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41146,9 +40956,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41203,7 +41011,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41231,9 +41039,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41280,7 +41086,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41308,9 +41114,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41365,7 +41169,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41393,9 +41197,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41442,7 +41244,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41470,9 +41272,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41527,7 +41327,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41555,9 +41355,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41604,7 +41402,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41632,9 +41430,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41689,7 +41485,7 @@ "$ref": "#/parameters/namespace-vgWSWtn3" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41717,9 +41513,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41763,7 +41557,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41791,9 +41585,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41837,7 +41629,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41865,9 +41657,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41911,7 +41701,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -41939,9 +41729,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -41985,7 +41773,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -42013,9 +41801,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -42067,7 +41853,7 @@ "required": true }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -42095,9 +41881,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -42141,7 +41925,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -42169,9 +41953,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -42215,7 +41997,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -42243,9 +42025,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -42289,7 +42069,7 @@ "$ref": "#/parameters/limit-1NfNmdNH" }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -42317,9 +42097,7 @@ "produces": [ "application/json", "application/yaml", - "application/vnd.kubernetes.protobuf", - "application/json;stream=watch", - "application/vnd.kubernetes.protobuf;stream=watch" + "application/json;stream=watch" ], "schemes": [ "https" @@ -42371,7 +42149,7 @@ "required": true }, { - "$ref": "#/parameters/pretty-nN7o5FEq" + "$ref": "#/parameters/pretty-tJGM1-ng" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" @@ -59324,9 +59102,10 @@ "$ref": "#/definitions/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" }, "ipFamily": { - "description": "Possible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "Possible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "enum": [ + "", "IPv4", "IPv6" ] @@ -59566,9 +59345,10 @@ "$ref": "#/definitions/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" }, "ipFamily": { - "description": "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "enum": [ + "", "IPv4", "IPv6" ] @@ -59953,9 +59733,10 @@ ], "properties": { "ipFamily": { - "description": "IPFamily is the IP family of the NAT gateway.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "IPFamily is the IP family of the NAT gateway.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "enum": [ + "", "IPv4", "IPv6" ] @@ -60324,9 +60105,10 @@ "$ref": "#/definitions/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceNATClaimRef" }, "ipFamily": { - "description": "IPFamily is the IP family of the handling NAT gateway.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "IPFamily is the IP family of the handling NAT gateway.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "enum": [ + "", "IPv4", "IPv6" ] @@ -60361,9 +60143,10 @@ "$ref": "#/definitions/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" }, "ipFamily": { - "description": "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "enum": [ + "", "IPv4", "IPv6" ] @@ -76563,6 +76346,13 @@ "name": "pretty", "in": "query" }, + "pretty-tJGM1-ng": { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", + "name": "pretty", + "in": "query" + }, "previous-1jxDPu3y": { "uniqueItems": true, "type": "boolean", diff --git a/gen/v3/apis__core.apinet.ironcore.dev__v1alpha1_openapi.json b/gen/v3/apis__core.apinet.ironcore.dev__v1alpha1_openapi.json index a4b2c121..0a4dc1b0 100644 --- a/gen/v3/apis__core.apinet.ironcore.dev__v1alpha1_openapi.json +++ b/gen/v3/apis__core.apinet.ironcore.dev__v1alpha1_openapi.json @@ -1,7 +1,7 @@ { "openapi": "3.0.0", "info": { - "title": "ironcore-net", + "title": "ironcore-net-api", "version": "0.1" }, "paths": { @@ -21,11 +21,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" @@ -57,16 +52,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSetList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSetList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSetList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSetList" @@ -131,7 +116,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -205,16 +190,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.InstanceList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.InstanceList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.InstanceList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.InstanceList" @@ -279,7 +254,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -445,16 +420,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddressList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddressList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddressList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddressList" @@ -512,7 +477,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } } - } + }, + "required": true }, "responses": { "200": { @@ -523,11 +489,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" @@ -543,11 +504,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" @@ -563,11 +519,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" @@ -717,11 +668,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -741,7 +687,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -765,11 +711,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" @@ -827,7 +768,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } } - } + }, + "required": true }, "responses": { "200": { @@ -838,11 +780,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" @@ -858,11 +795,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" @@ -940,11 +872,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -960,11 +887,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -1046,7 +968,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -1057,11 +980,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" @@ -1077,11 +995,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPAddress" @@ -1111,7 +1024,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -1140,16 +1053,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPList" @@ -1214,7 +1117,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -1288,16 +1191,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRoutingList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRoutingList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRoutingList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRoutingList" @@ -1362,7 +1255,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -1436,16 +1329,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerList" @@ -1510,7 +1393,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -1676,16 +1559,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSetList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSetList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSetList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSetList" @@ -1743,7 +1616,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } } - } + }, + "required": true }, "responses": { "200": { @@ -1754,11 +1628,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -1774,11 +1643,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -1794,11 +1658,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -1948,11 +1807,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -1982,7 +1836,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -2006,11 +1860,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2068,7 +1917,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } } - } + }, + "required": true }, "responses": { "200": { @@ -2079,11 +1929,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2099,11 +1944,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2181,11 +2021,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -2201,11 +2036,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -2287,7 +2117,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -2298,11 +2129,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2318,11 +2144,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2362,7 +2183,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -2386,11 +2207,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2448,7 +2264,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } } - } + }, + "required": true }, "responses": { "200": { @@ -2459,11 +2276,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2479,11 +2291,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2565,7 +2372,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -2576,11 +2384,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2596,11 +2399,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.DaemonSet" @@ -2640,7 +2438,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -2761,16 +2559,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.InstanceList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.InstanceList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.InstanceList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.InstanceList" @@ -2828,7 +2616,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } } - } + }, + "required": true }, "responses": { "200": { @@ -2839,11 +2628,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -2859,11 +2643,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -2879,11 +2658,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3033,11 +2807,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -3067,7 +2836,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -3091,11 +2860,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3153,7 +2917,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } } - } + }, + "required": true }, "responses": { "200": { @@ -3164,11 +2929,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3184,11 +2944,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3266,11 +3021,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -3286,11 +3036,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -3372,7 +3117,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -3383,11 +3129,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3403,11 +3144,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3447,7 +3183,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -3471,11 +3207,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3533,7 +3264,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } } - } + }, + "required": true }, "responses": { "200": { @@ -3544,11 +3276,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3564,11 +3291,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3650,7 +3372,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -3661,11 +3384,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3681,11 +3399,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Instance" @@ -3725,7 +3438,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -3846,16 +3559,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPList" @@ -3913,7 +3616,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } } - } + }, + "required": true }, "responses": { "200": { @@ -3924,11 +3628,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" @@ -3944,11 +3643,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" @@ -3964,11 +3658,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" @@ -4118,11 +3807,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -4152,7 +3836,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -4176,11 +3860,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" @@ -4238,7 +3917,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } } - } + }, + "required": true }, "responses": { "200": { @@ -4249,11 +3929,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" @@ -4269,11 +3944,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" @@ -4351,11 +4021,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -4371,11 +4036,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -4457,7 +4117,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -4468,11 +4129,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" @@ -4488,11 +4144,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IP" @@ -4532,7 +4183,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -4653,16 +4304,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRoutingList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRoutingList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRoutingList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRoutingList" @@ -4720,7 +4361,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } } - } + }, + "required": true }, "responses": { "200": { @@ -4731,11 +4373,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" @@ -4751,11 +4388,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" @@ -4771,11 +4403,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" @@ -4925,11 +4552,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -4959,7 +4581,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -4983,11 +4605,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" @@ -5045,7 +4662,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } } - } + }, + "required": true }, "responses": { "200": { @@ -5056,11 +4674,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" @@ -5076,11 +4689,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" @@ -5158,11 +4766,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -5178,11 +4781,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -5264,7 +4862,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -5275,11 +4874,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" @@ -5295,11 +4889,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerRouting" @@ -5339,7 +4928,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -5460,16 +5049,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancerList" @@ -5527,7 +5106,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } } - } + }, + "required": true }, "responses": { "200": { @@ -5538,11 +5118,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -5558,11 +5133,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -5578,11 +5148,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -5732,11 +5297,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -5766,7 +5326,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -5790,11 +5350,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -5852,7 +5407,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } } - } + }, + "required": true }, "responses": { "200": { @@ -5863,11 +5419,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -5883,11 +5434,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -5965,11 +5511,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -5985,11 +5526,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -6071,7 +5607,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -6082,11 +5619,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -6102,11 +5634,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -6146,7 +5673,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -6170,11 +5697,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -6232,7 +5754,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } } - } + }, + "required": true }, "responses": { "200": { @@ -6243,11 +5766,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -6263,11 +5781,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -6349,7 +5862,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -6360,11 +5874,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -6380,11 +5889,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.LoadBalancer" @@ -6424,7 +5928,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -6545,16 +6049,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscalerList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscalerList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscalerList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscalerList" @@ -6612,7 +6106,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } } - } + }, + "required": true }, "responses": { "200": { @@ -6623,11 +6118,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -6643,11 +6133,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -6663,11 +6148,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -6817,11 +6297,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -6851,7 +6326,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -6875,11 +6350,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -6937,7 +6407,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } } - } + }, + "required": true }, "responses": { "200": { @@ -6948,11 +6419,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -6968,11 +6434,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -7050,11 +6511,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -7070,11 +6526,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -7156,7 +6607,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -7167,11 +6619,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -7187,11 +6634,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -7231,7 +6673,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -7255,11 +6697,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -7317,7 +6754,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } } - } + }, + "required": true }, "responses": { "200": { @@ -7328,11 +6766,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -7348,11 +6781,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -7434,7 +6862,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -7445,11 +6874,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -7465,11 +6889,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscaler" @@ -7509,7 +6928,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -7630,16 +7049,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayList" @@ -7697,7 +7106,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } } - } + }, + "required": true }, "responses": { "200": { @@ -7708,11 +7118,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -7728,11 +7133,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -7748,11 +7148,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -7902,11 +7297,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -7936,7 +7326,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -7960,11 +7350,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8022,7 +7407,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } } - } + }, + "required": true }, "responses": { "200": { @@ -8033,11 +7419,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8053,11 +7434,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8135,11 +7511,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -8155,11 +7526,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -8241,7 +7607,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -8252,11 +7619,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8272,11 +7634,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8316,7 +7673,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -8340,11 +7697,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8402,7 +7754,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } } - } + }, + "required": true }, "responses": { "200": { @@ -8413,11 +7766,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8433,11 +7781,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8519,7 +7862,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -8530,11 +7874,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8550,11 +7889,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGateway" @@ -8594,7 +7928,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -8715,16 +8049,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTableList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTableList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTableList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTableList" @@ -8782,7 +8106,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } } - } + }, + "required": true }, "responses": { "200": { @@ -8793,11 +8118,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" @@ -8813,11 +8133,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" @@ -8833,11 +8148,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" @@ -8987,11 +8297,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -9021,7 +8326,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -9045,11 +8350,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" @@ -9107,7 +8407,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } } - } + }, + "required": true }, "responses": { "200": { @@ -9118,11 +8419,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" @@ -9138,11 +8434,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" @@ -9220,11 +8511,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -9240,11 +8526,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -9326,7 +8607,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -9337,11 +8619,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" @@ -9357,11 +8634,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTable" @@ -9401,7 +8673,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -9522,16 +8794,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceList" @@ -9589,7 +8851,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } } - } + }, + "required": true }, "responses": { "200": { @@ -9600,11 +8863,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -9620,11 +8878,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -9640,11 +8893,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -9794,11 +9042,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -9828,7 +9071,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -9852,11 +9095,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -9914,7 +9152,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } } - } + }, + "required": true }, "responses": { "200": { @@ -9925,11 +9164,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -9945,11 +9179,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -10027,11 +9256,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -10047,11 +9271,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -10133,7 +9352,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -10144,11 +9364,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -10164,11 +9379,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -10208,7 +9418,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -10232,11 +9442,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -10294,7 +9499,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } } - } + }, + "required": true }, "responses": { "200": { @@ -10305,11 +9511,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -10325,11 +9526,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -10411,7 +9607,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -10422,11 +9619,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -10442,11 +9634,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterface" @@ -10486,7 +9673,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -10607,16 +9794,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkList" @@ -10674,7 +9851,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } } - } + }, + "required": true }, "responses": { "200": { @@ -10685,11 +9863,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -10705,11 +9878,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -10725,11 +9893,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -10879,11 +10042,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -10913,7 +10071,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -10937,11 +10095,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -10999,7 +10152,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } } - } + }, + "required": true }, "responses": { "200": { @@ -11010,11 +10164,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11030,11 +10179,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11112,11 +10256,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -11132,11 +10271,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -11218,7 +10352,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -11229,11 +10364,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11249,11 +10379,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11293,7 +10418,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -11317,11 +10442,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11379,7 +10499,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } } - } + }, + "required": true }, "responses": { "200": { @@ -11390,11 +10511,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11410,11 +10526,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11496,7 +10607,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -11507,11 +10619,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11527,11 +10634,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Network" @@ -11571,7 +10673,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -11600,16 +10702,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscalerList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscalerList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscalerList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayAutoscalerList" @@ -11674,7 +10766,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -11737,23 +10829,13 @@ "responses": { "200": { "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayList" - } - }, - "application/json;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayList" - } - }, - "application/vnd.kubernetes.protobuf": { + "content": { + "application/json": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayList" } }, - "application/vnd.kubernetes.protobuf;stream=watch": { + "application/json;stream=watch": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATGatewayList" } @@ -11822,7 +10904,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -11896,16 +10978,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTableList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTableList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTableList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NATTableList" @@ -11970,7 +11042,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -12136,16 +11208,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkIDList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkIDList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkIDList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkIDList" @@ -12203,7 +11265,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } } - } + }, + "required": true }, "responses": { "200": { @@ -12214,11 +11277,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" @@ -12234,11 +11292,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" @@ -12254,11 +11307,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" @@ -12408,11 +11456,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -12432,7 +11475,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -12456,11 +11499,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" @@ -12518,7 +11556,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } } - } + }, + "required": true }, "responses": { "200": { @@ -12529,11 +11568,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" @@ -12549,11 +11583,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" @@ -12631,11 +11660,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -12651,11 +11675,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -12737,7 +11756,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -12748,11 +11768,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" @@ -12768,11 +11783,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkID" @@ -12802,7 +11812,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -12831,16 +11841,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkInterfaceList" @@ -12905,7 +11905,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -12979,16 +11979,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NetworkList" @@ -13053,7 +12043,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -13219,16 +12209,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NodeList" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NodeList" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NodeList" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.NodeList" @@ -13286,7 +12266,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } } - } + }, + "required": true }, "responses": { "200": { @@ -13297,11 +12278,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13317,11 +12293,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13337,11 +12308,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13491,11 +12457,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -13515,7 +12476,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -13539,11 +12500,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13601,7 +12557,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } } - } + }, + "required": true }, "responses": { "200": { @@ -13612,11 +12569,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13632,11 +12584,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13714,11 +12661,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -13734,11 +12676,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" @@ -13820,7 +12757,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -13831,11 +12769,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13851,11 +12784,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13885,7 +12813,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -13909,11 +12837,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -13971,7 +12894,8 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } } - } + }, + "required": true }, "responses": { "200": { @@ -13982,11 +12906,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -14002,11 +12921,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -14088,7 +13002,8 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } } - } + }, + "required": true }, "responses": { "200": { @@ -14099,11 +13014,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -14119,11 +13029,6 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.Node" @@ -14153,7 +13058,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -14182,16 +13087,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -14256,7 +13151,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -14330,16 +13225,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -14404,7 +13289,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -14478,16 +13363,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -14552,7 +13427,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -14626,16 +13501,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -14710,7 +13575,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -14784,16 +13649,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -14858,7 +13713,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -14932,16 +13787,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -15006,7 +13851,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -15080,16 +13925,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -15154,7 +13989,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -15228,16 +14063,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -15312,7 +14137,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -15386,16 +14211,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -15480,7 +14295,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -15554,16 +14369,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -15638,7 +14443,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -15707,17 +14512,7 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/json;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { + "application/json;stream=watch": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } @@ -15806,7 +14601,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -15880,16 +14675,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -15964,7 +14749,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -16038,16 +14823,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -16132,7 +14907,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -16206,16 +14981,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -16290,7 +15055,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -16364,16 +15129,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -16458,7 +15213,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -16532,16 +15287,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -16616,7 +15361,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -16690,16 +15435,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -16784,7 +15519,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -16858,16 +15593,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -16942,7 +15667,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -17016,16 +15741,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -17110,7 +15825,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -17184,16 +15899,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -17268,7 +15973,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -17342,16 +16047,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -17436,7 +16131,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -17510,16 +16205,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -17594,7 +16279,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -17668,16 +16353,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -17762,7 +16437,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -17836,16 +16511,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -17920,7 +16585,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -17994,16 +16659,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -18088,7 +16743,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -18162,16 +16817,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -18246,7 +16891,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -18320,16 +16965,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -18414,7 +17049,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -18488,16 +17123,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -18562,7 +17187,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -18636,16 +17261,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -18710,7 +17325,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -18784,16 +17399,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -18858,7 +17463,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -18932,16 +17537,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -19006,7 +17601,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -19080,16 +17675,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -19164,7 +17749,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -19238,16 +17823,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -19312,7 +17887,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -19386,16 +17961,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -19460,7 +18025,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -19534,16 +18099,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -19608,7 +18163,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -19682,16 +18237,6 @@ "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" } }, - "application/vnd.kubernetes.protobuf": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, - "application/vnd.kubernetes.protobuf;stream=watch": { - "schema": { - "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" - } - }, "application/yaml": { "schema": { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" @@ -19766,7 +18311,7 @@ { "name": "pretty", "in": "query", - "description": "If 'true', then the output is pretty printed.", + "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).", "schema": { "type": "string", "uniqueItems": true @@ -20112,12 +18657,7 @@ ] }, "ip": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" } } }, @@ -20191,17 +18731,13 @@ "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.api.core.v1alpha1.IPClaimRef" }, "ip": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" }, "ipFamily": { - "description": "Possible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "Possible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "enum": [ + "", "IPv4", "IPv6" ] @@ -20362,12 +18898,7 @@ "description": "IPs are the IPs of the instance.", "type": "array", "items": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" } }, "loadBalancerPorts": { @@ -20433,12 +18964,7 @@ "ips": { "type": "array", "items": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" } } } @@ -20518,7 +19044,6 @@ "properties": { "ip": { "description": "IP is the target IP.", - "default": {}, "allOf": [ { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" @@ -20543,7 +19068,6 @@ "properties": { "ip": { "description": "IP specifies a specific IP to allocate. If empty, a random IP will be allocated if possible.", - "default": {}, "allOf": [ { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" @@ -20551,9 +19075,10 @@ ] }, "ipFamily": { - "description": "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "enum": [ + "", "IPv4", "IPv6" ] @@ -20997,7 +19522,6 @@ "properties": { "ip": { "description": "IP specifies a specific IP to allocate. If empty, a random IP will be allocated if possible.", - "default": {}, "allOf": [ { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" @@ -21063,10 +19587,11 @@ ], "properties": { "ipFamily": { - "description": "IPFamily is the IP family of the NAT gateway.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "IPFamily is the IP family of the NAT gateway.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "default": "", "enum": [ + "", "IPv4", "IPv6" ] @@ -21125,7 +19650,6 @@ "properties": { "ip": { "description": "IP is the IP to NAT.", - "default": {}, "allOf": [ { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" @@ -21162,7 +19686,6 @@ }, "ip": { "description": "IP is the source IP.", - "default": {}, "allOf": [ { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" @@ -21564,10 +20087,11 @@ ] }, "ipFamily": { - "description": "IPFamily is the IP family of the handling NAT gateway.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "IPFamily is the IP family of the handling NAT gateway.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "default": "", "enum": [ + "", "IPv4", "IPv6" ] @@ -21601,7 +20125,6 @@ "properties": { "ip": { "description": "IP specifies a specific IP to allocate. If empty, a random ephemeral IP will be allocated.", - "default": {}, "allOf": [ { "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" @@ -21609,9 +20132,10 @@ ] }, "ipFamily": { - "description": "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", + "description": "IPFamily is the IP family of the IP. Has to match IP if specified. If unspecified and IP is specified, will be defaulted by using the IP family of IP. If only IPFamily is specified, a random IP of that family will be allocated if possible.\n\nPossible enum values:\n - `\"\"` indicates that this IP is unknown protocol\n - `\"IPv4\"` indicates that this IP is IPv4 protocol\n - `\"IPv6\"` indicates that this IP is IPv6 protocol", "type": "string", "enum": [ + "", "IPv4", "IPv6" ] @@ -21634,12 +20158,7 @@ "description": "IPs are the internal IPs of the network interface.", "type": "array", "items": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" } }, "natGateways": { @@ -21676,12 +20195,7 @@ "description": "Prefixes are additional prefixes to route to the network interface.", "type": "array", "items": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IPPrefix" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IPPrefix" } }, "publicIPs": { @@ -21706,12 +20220,7 @@ "natIPs": { "type": "array", "items": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" } }, "pciAddress": { @@ -21720,23 +20229,13 @@ "prefixes": { "type": "array", "items": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IPPrefix" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IPPrefix" } }, "publicIPs": { "type": "array", "items": { - "default": {}, - "allOf": [ - { - "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" - } - ] + "$ref": "#/components/schemas/com.github.ironcore-dev.ironcore-net.apimachinery.api.net.IP" } }, "state": { @@ -22358,7 +20857,6 @@ }, "creationTimestamp": { "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", - "default": {}, "allOf": [ { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" @@ -22638,7 +21136,6 @@ "properties": { "object": { "description": "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n depending on context.", - "default": {}, "allOf": [ { "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" diff --git a/go.mod b/go.mod index 9a9a0533..2fd51be0 100644 --- a/go.mod +++ b/go.mod @@ -6,8 +6,8 @@ require ( github.com/bits-and-blooms/bitset v1.13.0 github.com/go-logr/logr v1.4.1 github.com/google/uuid v1.5.0 - github.com/ironcore-dev/controller-utils v0.9.0 - github.com/ironcore-dev/ironcore v0.1.2-0.20231130105619-82b2d4e911ad + github.com/ironcore-dev/controller-utils v0.9.1 + github.com/ironcore-dev/ironcore v0.1.2-0.20240116114543-d37a145029e7 github.com/ironcore-dev/metalnet v0.3.0 github.com/onsi/ginkgo/v2 v2.14.0 github.com/onsi/gomega v1.30.0 @@ -15,14 +15,14 @@ require ( github.com/spf13/pflag v1.0.5 go4.org/netipx v0.0.0-20220812043211-3cc044ffd68d golang.org/x/exp v0.0.0-20221212164502-fae10dda9338 - k8s.io/api v0.28.4 - k8s.io/apimachinery v0.28.4 - k8s.io/apiserver v0.28.4 - k8s.io/client-go v0.28.4 - k8s.io/component-base v0.28.4 + k8s.io/api v0.29.0 + k8s.io/apimachinery v0.29.0 + k8s.io/apiserver v0.29.0 + k8s.io/client-go v0.29.0 + k8s.io/component-base v0.29.0 k8s.io/klog/v2 v2.120.0 - k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 - k8s.io/utils v0.0.0-20230505201702-9f6742963106 + k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 + k8s.io/utils v0.0.0-20240102154912-e7106e64919e sigs.k8s.io/controller-runtime v0.16.3 sigs.k8s.io/structured-merge-diff/v4 v4.4.1 ) @@ -42,7 +42,7 @@ require ( github.com/evanphx/json-patch v5.6.0+incompatible // indirect github.com/evanphx/json-patch/v5 v5.6.0 // indirect github.com/felixge/httpsnoop v1.0.3 // indirect - github.com/fsnotify/fsnotify v1.6.0 // indirect + github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-logr/zapr v1.2.4 // indirect github.com/go-openapi/jsonpointer v0.19.6 // indirect @@ -52,7 +52,7 @@ require ( github.com/gogo/protobuf v1.3.2 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/protobuf v1.5.3 // indirect - github.com/google/cel-go v0.16.1 // indirect + github.com/google/cel-go v0.17.7 // indirect github.com/google/gnostic-models v0.6.8 // indirect github.com/google/go-cmp v0.6.0 // indirect github.com/google/gofuzz v1.2.0 // indirect @@ -74,9 +74,9 @@ require ( github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.10.1 // indirect github.com/stoewer/go-strcase v1.2.0 // indirect - go.etcd.io/etcd/api/v3 v3.5.9 // indirect - go.etcd.io/etcd/client/pkg/v3 v3.5.9 // indirect - go.etcd.io/etcd/client/v3 v3.5.9 // indirect + go.etcd.io/etcd/api/v3 v3.5.10 // indirect + go.etcd.io/etcd/client/pkg/v3 v3.5.10 // indirect + go.etcd.io/etcd/client/v3 v3.5.10 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 // indirect go.opentelemetry.io/otel v1.21.0 // indirect @@ -90,28 +90,28 @@ require ( go.uber.org/zap v1.25.0 // indirect golang.org/x/crypto v0.17.0 // indirect golang.org/x/net v0.19.0 // indirect - golang.org/x/oauth2 v0.11.0 // indirect - golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.15.0 // indirect + golang.org/x/oauth2 v0.13.0 // indirect + golang.org/x/sync v0.6.0 // indirect + golang.org/x/sys v0.16.0 // indirect golang.org/x/term v0.15.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.3.0 // indirect golang.org/x/tools v0.16.1 // indirect gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect - google.golang.org/grpc v1.59.0 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect + google.golang.org/grpc v1.60.1 // indirect google.golang.org/protobuf v1.31.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - k8s.io/apiextensions-apiserver v0.28.4 // indirect - k8s.io/kms v0.28.4 // indirect - k8s.io/kube-aggregator v0.28.4 // indirect - sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2 // indirect + k8s.io/apiextensions-apiserver v0.29.0 // indirect + k8s.io/kms v0.29.0 // indirect + k8s.io/kube-aggregator v0.29.0 // indirect + sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.28.0 // indirect sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) diff --git a/go.sum b/go.sum index 1c15f91b..ce39b01e 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,4 @@ -cloud.google.com/go v0.110.7 h1:rJyC7nWRg2jWGZ4wSJ5nY65GTdYJkg0cd/uXb+ACI6o= +cloud.google.com/go v0.110.8 h1:tyNdfIxjzaWctIiLYOTalaLKZ17SI44SKFW26QbOhME= cloud.google.com/go/compute v1.23.0 h1:tP41Zoavr8ptEqaW6j+LQOnyBBhO7OkOMAGrgLopTwY= cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= @@ -48,8 +48,8 @@ github.com/evanphx/json-patch/v5 v5.6.0 h1:b91NhWfaz02IuVxO9faSllyAtNXHMPkC5J8sJ github.com/evanphx/json-patch/v5 v5.6.0/go.mod h1:G79N1coSVB93tBe7j6PhzjmR3/2VvlbKOFpnXhI9Bw4= github.com/felixge/httpsnoop v1.0.3 h1:s/nj+GCswXYzN5v2DpNMuMQYe+0DDwt5WVCU6CWBdXk= github.com/felixge/httpsnoop v1.0.3/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= -github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= +github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA= +github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= @@ -76,14 +76,14 @@ github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/ github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/google/btree v1.0.1 h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4= github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= -github.com/google/cel-go v0.16.1 h1:3hZfSNiAU3KOiNtxuFXVp5WFy4hf/Ly3Sa4/7F8SXNo= -github.com/google/cel-go v0.16.1/go.mod h1:HXZKzB0LXqer5lHHgfWAnlYwJaQBDKMjxjulNQzhwhY= +github.com/google/cel-go v0.17.7 h1:6ebJFzu1xO2n7TLtN+UBqShGBhlD85bhvglh5DpcfqQ= +github.com/google/cel-go v0.17.7/go.mod h1:HXZKzB0LXqer5lHHgfWAnlYwJaQBDKMjxjulNQzhwhY= github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I= github.com/google/gnostic-models v0.6.8/go.mod h1:5n7qKqH0f5wFt+aWF8CW6pZLLNOfYuF5OpfBSENuI8U= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= @@ -97,8 +97,8 @@ github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 h1:K6RDEckDVWvDI9JAJY github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/uuid v1.5.0 h1:1p67kYwdtXjb0gL0BPiP1Av9wiZPo5A8z2cWkTZ+eyU= github.com/google/uuid v1.5.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc= -github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= +github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 h1:+9834+KizmvFV7pXQGSXQTsaWhq2GjuNUt0aUU0YBYw= github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho= @@ -112,10 +112,10 @@ github.com/imdario/mergo v0.3.13 h1:lFzP57bqS/wsqKssCGmtLAb8A0wKjLGrve2q3PPVcBk= github.com/imdario/mergo v0.3.13/go.mod h1:4lJ1jqUDcsbIECGy0RUJAXNIhg+6ocWgb1ALK2O4oXg= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/ironcore-dev/controller-utils v0.9.0 h1:q8Ljk6UIS6WB0J/k/hVV13umHUn/Bfr2+PxdZls1C8U= -github.com/ironcore-dev/controller-utils v0.9.0/go.mod h1:06mPYdYCdjGHVz/msCG/MyDjPdOufRkUd4GaTqkzZwg= -github.com/ironcore-dev/ironcore v0.1.2-0.20231130105619-82b2d4e911ad h1:n7fk+Ep1IodKbJ1umJwYk/HyUGmHeywZsxRGUdVJRHw= -github.com/ironcore-dev/ironcore v0.1.2-0.20231130105619-82b2d4e911ad/go.mod h1:UPp+izBNxBhgVa0ts6TxhgV9yFkFVy6+d2T9fsi92uY= +github.com/ironcore-dev/controller-utils v0.9.1 h1:QFL52JaIuSdZ7S1rQfwTM3PffEeu/gdHHQ5AlQ1iFxo= +github.com/ironcore-dev/controller-utils v0.9.1/go.mod h1:c2dRoQ04+b2sNKrqBObrw2QQO2Wzctm5ZSp5UTmTWSU= +github.com/ironcore-dev/ironcore v0.1.2-0.20240116114543-d37a145029e7 h1:Lr/KEpJAW4+TozdduPwXRYMO0fffk7DvOf/r93TKz0E= +github.com/ironcore-dev/ironcore v0.1.2-0.20240116114543-d37a145029e7/go.mod h1:cTjq3AobNNQg/U/bJwrk+JYrX5o0izrQygtIB14Riaw= github.com/ironcore-dev/metalnet v0.3.0 h1:DFwUZplNA04yd0G65fjxDc2BF0hUxhWTnsPvmvpFaKc= github.com/ironcore-dev/metalnet v0.3.0/go.mod h1:ftrzT6qxwHTmfZxrslIwoXMM+3XGmpHPL2K+u9G5Hgo= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= @@ -196,22 +196,23 @@ github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -go.etcd.io/bbolt v1.3.7 h1:j+zJOnnEjF/kyHlDDgGnVL/AIqIJPq8UoB2GSNfkUfQ= -go.etcd.io/bbolt v1.3.7/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= -go.etcd.io/etcd/api/v3 v3.5.9 h1:4wSsluwyTbGGmyjJktOf3wFQoTBIURXHnq9n/G/JQHs= -go.etcd.io/etcd/api/v3 v3.5.9/go.mod h1:uyAal843mC8uUVSLWz6eHa/d971iDGnCRpmKd2Z+X8k= -go.etcd.io/etcd/client/pkg/v3 v3.5.9 h1:oidDC4+YEuSIQbsR94rY9gur91UPL6DnxDCIYd2IGsE= -go.etcd.io/etcd/client/pkg/v3 v3.5.9/go.mod h1:y+CzeSmkMpWN2Jyu1npecjB9BBnABxGM4pN8cGuJeL4= -go.etcd.io/etcd/client/v2 v2.305.9 h1:YZ2OLi0OvR0H75AcgSUajjd5uqKDKocQUqROTG11jIo= -go.etcd.io/etcd/client/v2 v2.305.9/go.mod h1:0NBdNx9wbxtEQLwAQtrDHwx58m02vXpDcgSYI2seohQ= -go.etcd.io/etcd/client/v3 v3.5.9 h1:r5xghnU7CwbUxD/fbUtRyJGaYNfDun8sp/gTr1hew6E= -go.etcd.io/etcd/client/v3 v3.5.9/go.mod h1:i/Eo5LrZ5IKqpbtpPDuaUnDOUv471oDg8cjQaUr2MbA= -go.etcd.io/etcd/pkg/v3 v3.5.9 h1:6R2jg/aWd/zB9+9JxmijDKStGJAPFsX3e6BeJkMi6eQ= -go.etcd.io/etcd/pkg/v3 v3.5.9/go.mod h1:BZl0SAShQFk0IpLWR78T/+pyt8AruMHhTNNX73hkNVY= -go.etcd.io/etcd/raft/v3 v3.5.9 h1:ZZ1GIHoUlHsn0QVqiRysAm3/81Xx7+i2d7nSdWxlOiI= -go.etcd.io/etcd/raft/v3 v3.5.9/go.mod h1:WnFkqzFdZua4LVlVXQEGhmooLeyS7mqzS4Pf4BCVqXg= -go.etcd.io/etcd/server/v3 v3.5.9 h1:vomEmmxeztLtS5OEH7d0hBAg4cjVIu9wXuNzUZx2ZA0= -go.etcd.io/etcd/server/v3 v3.5.9/go.mod h1:GgI1fQClQCFIzuVjlvdbMxNbnISt90gdfYyqiAIt65g= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.etcd.io/bbolt v1.3.8 h1:xs88BrvEv273UsB79e0hcVrlUWmS0a8upikMFhSyAtA= +go.etcd.io/bbolt v1.3.8/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= +go.etcd.io/etcd/api/v3 v3.5.10 h1:szRajuUUbLyppkhs9K6BRtjY37l66XQQmw7oZRANE4k= +go.etcd.io/etcd/api/v3 v3.5.10/go.mod h1:TidfmT4Uycad3NM/o25fG3J07odo4GBB9hoxaodFCtI= +go.etcd.io/etcd/client/pkg/v3 v3.5.10 h1:kfYIdQftBnbAq8pUWFXfpuuxFSKzlmM5cSn76JByiT0= +go.etcd.io/etcd/client/pkg/v3 v3.5.10/go.mod h1:DYivfIviIuQ8+/lCq4vcxuseg2P2XbHygkKwFo9fc8U= +go.etcd.io/etcd/client/v2 v2.305.10 h1:MrmRktzv/XF8CvtQt+P6wLUlURaNpSDJHFZhe//2QE4= +go.etcd.io/etcd/client/v2 v2.305.10/go.mod h1:m3CKZi69HzilhVqtPDcjhSGp+kA1OmbNn0qamH80xjA= +go.etcd.io/etcd/client/v3 v3.5.10 h1:W9TXNZ+oB3MCd/8UjxHTWK5J9Nquw9fQBLJd5ne5/Ao= +go.etcd.io/etcd/client/v3 v3.5.10/go.mod h1:RVeBnDz2PUEZqTpgqwAtUd8nAPf5kjyFyND7P1VkOKc= +go.etcd.io/etcd/pkg/v3 v3.5.10 h1:WPR8K0e9kWl1gAhB5A7gEa5ZBTNkT9NdNWrR8Qpo1CM= +go.etcd.io/etcd/pkg/v3 v3.5.10/go.mod h1:TKTuCKKcF1zxmfKWDkfz5qqYaE3JncKKZPFf8c1nFUs= +go.etcd.io/etcd/raft/v3 v3.5.10 h1:cgNAYe7xrsrn/5kXMSaH8kM/Ky8mAdMqGOxyYwpP0LA= +go.etcd.io/etcd/raft/v3 v3.5.10/go.mod h1:odD6kr8XQXTy9oQnyMPBOr0TVe+gT0neQhElQ6jbGRc= +go.etcd.io/etcd/server/v3 v3.5.10 h1:4NOGyOwD5sUZ22PiWYKmfxqoeh72z6EhYjNosKGLmZg= +go.etcd.io/etcd/server/v3 v3.5.10/go.mod h1:gBplPHfs6YI0L+RpGkTQO7buDbHv5HJGG/Bst0/zIPo= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 h1:PzIubN4/sjByhDRHLviCjJuweBXWFZWhghjg7cS28+M= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0/go.mod h1:Ct6zzQEuGK3WpJs2n4dn+wfJYzd/+hNnxMRTWjGn30M= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 h1:KfYpVmrjI7JuToy5k8XV3nkapjWx48k4E4JOtVstzQI= @@ -247,6 +248,7 @@ go4.org/netipx v0.0.0-20220812043211-3cc044ffd68d/go.mod h1:tgPU4N2u9RByaTN3NC2p golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20221212164502-fae10dda9338 h1:OvjRkcNHnf6/W5FZXSxODbxwD+X7fspczG7Jn/xQVD4= @@ -255,24 +257,27 @@ golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHl golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= -golang.org/x/oauth2 v0.11.0 h1:vPL4xzxBM4niKCW6g9whtaWVXTJf1U5e4aZxxFx/gbU= -golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk= +golang.org/x/oauth2 v0.13.0 h1:jDDenyj+WgFtmV3zYVoi8aE2BwtXFLWOA67ZfNWftiY= +golang.org/x/oauth2 v0.13.0/go.mod h1:/JMhi4ZRXAf4HG9LiNmxvk+45+96RUlVThiH8FzNBn0= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= -golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -280,15 +285,19 @@ golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= +golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4= golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= @@ -299,6 +308,7 @@ golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.16.1 h1:TLyB3WofjdOEepBHAU20JdNC1Zbg87elYofWYAY5oZA= golang.org/x/tools v0.16.1/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -307,16 +317,16 @@ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= gomodules.xyz/jsonpatch/v2 v2.4.0 h1:Ci3iUJyx9UeRx7CeFN8ARgGbkESwJK+KB9lLcWxY/Zw= gomodules.xyz/jsonpatch/v2 v2.4.0/go.mod h1:AH3dM2RI6uoBZxn3LVrfvJ3E0/9dG4cSrbuBJT4moAY= -google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d h1:VBu5YqKPv6XiJ199exd8Br+Aetz+o08F+PLMnwJQHAY= -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d h1:DoPTO70H+bcDXcd39vOqb2viZxgqeBeSGtZ55yZU4/Q= -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= -google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= +google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97 h1:SeZZZx0cP0fqUyA+oRzP9k7cSwJlvDFiROO72uwD6i0= +google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97/go.mod h1:t1VqOqqvce95G3hIDCT5FeO3YUc6Q4Oe24L/+rNMxRk= +google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97 h1:W18sezcAYs+3tDZX4F80yctqa12jcP1PUS2gQu1zTPU= +google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97/go.mod h1:iargEX0SFPm3xcfMI0d1domjg0ZF4Aa0p2awqyxhvF0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 h1:6GQBEOdGkX6MMTLT9V+TjtIRZCw9VPD5Z+yHY9wMgS0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97/go.mod h1:v7nGkzlmW8P3n/bKmWBn2WpBjpOEx8Q6gMueudAmKfY= +google.golang.org/grpc v1.60.1 h1:26+wFr+cNqSGFcOXcabYC0lUVJVRa2Sb2ortSK7VrEU= +google.golang.org/grpc v1.60.1/go.mod h1:OlCHIeLYqSSsLi6i49B5QGdzaMZK9+M7LXN2FKz4eGM= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= @@ -337,30 +347,30 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -k8s.io/api v0.28.4 h1:8ZBrLjwosLl/NYgv1P7EQLqoO8MGQApnbgH8tu3BMzY= -k8s.io/api v0.28.4/go.mod h1:axWTGrY88s/5YE+JSt4uUi6NMM+gur1en2REMR7IRj0= -k8s.io/apiextensions-apiserver v0.28.4 h1:AZpKY/7wQ8n+ZYDtNHbAJBb+N4AXXJvyZx6ww6yAJvU= -k8s.io/apiextensions-apiserver v0.28.4/go.mod h1:pgQIZ1U8eJSMQcENew/0ShUTlePcSGFq6dxSxf2mwPM= -k8s.io/apimachinery v0.28.4 h1:zOSJe1mc+GxuMnFzD4Z/U1wst50X28ZNsn5bhgIIao8= -k8s.io/apimachinery v0.28.4/go.mod h1:wI37ncBvfAoswfq626yPTe6Bz1c22L7uaJ8dho83mgg= -k8s.io/apiserver v0.28.4 h1:BJXlaQbAU/RXYX2lRz+E1oPe3G3TKlozMMCZWu5GMgg= -k8s.io/apiserver v0.28.4/go.mod h1:Idq71oXugKZoVGUUL2wgBCTHbUR+FYTWa4rq9j4n23w= -k8s.io/client-go v0.28.4 h1:Np5ocjlZcTrkyRJ3+T3PkXDpe4UpatQxj85+xjaD2wY= -k8s.io/client-go v0.28.4/go.mod h1:0VDZFpgoZfelyP5Wqu0/r/TRYcLYuJ2U1KEeoaPa1N4= -k8s.io/component-base v0.28.4 h1:c/iQLWPdUgI90O+T9TeECg8o7N3YJTiuz2sKxILYcYo= -k8s.io/component-base v0.28.4/go.mod h1:m9hR0uvqXDybiGL2nf/3Lf0MerAfQXzkfWhUY58JUbU= +k8s.io/api v0.29.0 h1:NiCdQMY1QOp1H8lfRyeEf8eOwV6+0xA6XEE44ohDX2A= +k8s.io/api v0.29.0/go.mod h1:sdVmXoz2Bo/cb77Pxi71IPTSErEW32xa4aXwKH7gfBA= +k8s.io/apiextensions-apiserver v0.29.0 h1:0VuspFG7Hj+SxyF/Z/2T0uFbI5gb5LRgEyUVE3Q4lV0= +k8s.io/apiextensions-apiserver v0.29.0/go.mod h1:TKmpy3bTS0mr9pylH0nOt/QzQRrW7/h7yLdRForMZwc= +k8s.io/apimachinery v0.29.0 h1:+ACVktwyicPz0oc6MTMLwa2Pw3ouLAfAon1wPLtG48o= +k8s.io/apimachinery v0.29.0/go.mod h1:eVBxQ/cwiJxH58eK/jd/vAk4mrxmVlnpBH5J2GbMeis= +k8s.io/apiserver v0.29.0 h1:Y1xEMjJkP+BIi0GSEv1BBrf1jLU9UPfAnnGGbbDdp7o= +k8s.io/apiserver v0.29.0/go.mod h1:31n78PsRKPmfpee7/l9NYEv67u6hOL6AfcE761HapDM= +k8s.io/client-go v0.29.0 h1:KmlDtFcrdUzOYrBhXHgKw5ycWzc3ryPX5mQe0SkG3y8= +k8s.io/client-go v0.29.0/go.mod h1:yLkXH4HKMAywcrD82KMSmfYg2DlE8mepPR4JGSo5n38= +k8s.io/component-base v0.29.0 h1:T7rjd5wvLnPBV1vC4zWd/iWRbV8Mdxs+nGaoaFzGw3s= +k8s.io/component-base v0.29.0/go.mod h1:sADonFTQ9Zc9yFLghpDpmNXEdHyQmFIGbiuZbqAXQ1M= k8s.io/klog/v2 v2.120.0 h1:z+q5mfovBj1fKFxiRzsa2DsJLPIVMk/KFL81LMOfK+8= k8s.io/klog/v2 v2.120.0/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= -k8s.io/kms v0.28.4 h1:PMgY/3CQTWP9eIKmNQiTgjLIZ0ns6O+voagzD2/4mSg= -k8s.io/kms v0.28.4/go.mod h1:HL4/lR/bhjAJPbqycKtfhWiKh1Sp21cpHOL8P4oo87w= -k8s.io/kube-aggregator v0.28.4 h1:VIGTKc3cDaJ44bvj988MTapJyRPbWXXcCvlp7HVLq5Q= -k8s.io/kube-aggregator v0.28.4/go.mod h1:SHehggsYGjVaE1CZTfhukAPpdhs7bflJiddLrabbQNY= -k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 h1:LyMgNKD2P8Wn1iAwQU5OhxCKlKJy0sHc+PcDwFB24dQ= -k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9/go.mod h1:wZK2AVp1uHCp4VamDVgBP2COHZjqD1T68Rf0CM3YjSM= -k8s.io/utils v0.0.0-20230505201702-9f6742963106 h1:EObNQ3TW2D+WptiYXlApGNLVy0zm/JIBVY9i+M4wpAU= -k8s.io/utils v0.0.0-20230505201702-9f6742963106/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2 h1:trsWhjU5jZrx6UvFu4WzQDrN7Pga4a7Qg+zcfcj64PA= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2/go.mod h1:+qG7ISXqCDVVcyO8hLn12AKVYYUjM7ftlqsqmrhMZE0= +k8s.io/kms v0.29.0 h1:KJ1zaZt74CgvgV3NR7tnURJ/mJOKC5X3nwon/WdwgxI= +k8s.io/kms v0.29.0/go.mod h1:mB0f9HLxRXeXUfHfn1A7rpwOlzXI1gIWu86z6buNoYA= +k8s.io/kube-aggregator v0.29.0 h1:N4fmtePxOZ+bwiK1RhVEztOU+gkoVkvterHgpwAuiTw= +k8s.io/kube-aggregator v0.29.0/go.mod h1:bjatII63ORkFg5yUFP2qm2OC49R0wwxZhRVIyJ4Z4X0= +k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 h1:aVUu9fTY98ivBPKR9Y5w/AuzbMm96cd3YHRTU83I780= +k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00/go.mod h1:AsvuZPBlUDVuCdzJ87iajxtXuR9oktsTctW/R9wwouA= +k8s.io/utils v0.0.0-20240102154912-e7106e64919e h1:eQ/4ljkx21sObifjzXwlPKpdGLrCfRziVtos3ofG/sQ= +k8s.io/utils v0.0.0-20240102154912-e7106e64919e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= +sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.28.0 h1:TgtAeesdhpm2SGwkQasmbeqDo8th5wOBA5h/AjTKA4I= +sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.28.0/go.mod h1:VHVDI/KrK4fjnV61bE2g3sA7tiETLn8sooImelsCx3Y= sigs.k8s.io/controller-runtime v0.16.3 h1:2TuvuokmfXvDUamSx1SuAOO3eTyye+47mJCigwG62c4= sigs.k8s.io/controller-runtime v0.16.3/go.mod h1:j7bialYoSn142nv9sCOJmQgDXQXxnroFU4VnX/brVJ0= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo= diff --git a/hack/boilerplate.go.txt b/hack/boilerplate.go.txt index 977222d2..20ebd9a5 100644 --- a/hack/boilerplate.go.txt +++ b/hack/boilerplate.go.txt @@ -1,2 +1,2 @@ -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 diff --git a/hack/license-header.txt b/hack/license-header.txt index 8d8a5f23..86ca2c5a 100644 --- a/hack/license-header.txt +++ b/hack/license-header.txt @@ -1,2 +1,2 @@ -SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors SPDX-License-Identifier: Apache-2.0 diff --git a/internal/apis/core/v1alpha1/zz_generated.conversion.go b/internal/apis/core/v1alpha1/zz_generated.conversion.go index 1c30d714..a59e854f 100644 --- a/internal/apis/core/v1alpha1/zz_generated.conversion.go +++ b/internal/apis/core/v1alpha1/zz_generated.conversion.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by conversion-gen. DO NOT EDIT. diff --git a/internal/apis/core/v1alpha1/zz_generated.defaults.go b/internal/apis/core/v1alpha1/zz_generated.defaults.go index 302df715..cb0dc116 100644 --- a/internal/apis/core/v1alpha1/zz_generated.defaults.go +++ b/internal/apis/core/v1alpha1/zz_generated.defaults.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by defaulter-gen. DO NOT EDIT. diff --git a/internal/apis/core/zz_generated.deepcopy.go b/internal/apis/core/zz_generated.deepcopy.go index 49740329..9c40dbd1 100644 --- a/internal/apis/core/zz_generated.deepcopy.go +++ b/internal/apis/core/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors // SPDX-License-Identifier: Apache-2.0 // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/internal/app/apiserver/apiserver.go b/internal/app/apiserver/apiserver.go index 3ce5e7c9..7c2693f7 100644 --- a/internal/app/apiserver/apiserver.go +++ b/internal/app/apiserver/apiserver.go @@ -23,7 +23,6 @@ import ( "k8s.io/apimachinery/pkg/runtime/schema" utilerrors "k8s.io/apimachinery/pkg/util/errors" "k8s.io/apiserver/pkg/admission" - "k8s.io/apiserver/pkg/features" genericapiserver "k8s.io/apiserver/pkg/server" "k8s.io/apiserver/pkg/server/options" utilfeature "k8s.io/apiserver/pkg/util/feature" @@ -105,8 +104,6 @@ func (o *IronCoreNetServerOptions) Config() (*apiserver.Config, error) { return nil, fmt.Errorf("error creating self-signed certificates: %w", err) } - o.RecommendedOptions.Etcd.StorageConfig.Paging = utilfeature.DefaultFeatureGate.Enabled(features.APIListChunking) - o.RecommendedOptions.ExtraAdmissionInitializers = func(c *genericapiserver.RecommendedConfig) ([]admission.PluginInitializer, error) { ironcoreAPINetClient, err := clientset.NewForConfig(c.LoopbackClientConfig) if err != nil { @@ -122,14 +119,12 @@ func (o *IronCoreNetServerOptions) Config() (*apiserver.Config, error) { serverConfig := genericapiserver.NewRecommendedConfig(apiserver.Codecs) serverConfig.OpenAPIConfig = genericapiserver.DefaultOpenAPIConfig(apinetopenapi.GetOpenAPIDefinitions, openapi.NewDefinitionNamer(apiserver.Scheme)) - serverConfig.OpenAPIConfig.Info.Title = "ironcore-net" + serverConfig.OpenAPIConfig.Info.Title = "ironcore-net-api" serverConfig.OpenAPIConfig.Info.Version = "0.1" - if utilfeature.DefaultFeatureGate.Enabled(features.OpenAPIV3) { - serverConfig.OpenAPIV3Config = genericapiserver.DefaultOpenAPIConfig(apinetopenapi.GetOpenAPIDefinitions, openapi.NewDefinitionNamer(apiserver.Scheme)) - serverConfig.OpenAPIV3Config.Info.Title = "ironcore-net" - serverConfig.OpenAPIV3Config.Info.Version = "0.1" - } + serverConfig.OpenAPIV3Config = genericapiserver.DefaultOpenAPIV3Config(apinetopenapi.GetOpenAPIDefinitions, openapi.NewDefinitionNamer(apiserver.Scheme)) + serverConfig.OpenAPIV3Config.Info.Title = "ironcore-net-api" + serverConfig.OpenAPIV3Config.Info.Version = "0.1" if err := o.RecommendedOptions.ApplyTo(serverConfig); err != nil { return nil, err diff --git a/internal/controllers/natgateway_controller.go b/internal/controllers/natgateway_controller.go index d8f851ed..7c4dd8f7 100644 --- a/internal/controllers/natgateway_controller.go +++ b/internal/controllers/natgateway_controller.go @@ -13,7 +13,7 @@ import ( "github.com/ironcore-dev/ironcore-net/apimachinery/api/net" apinetclient "github.com/ironcore-dev/ironcore-net/internal/client" "github.com/ironcore-dev/ironcore-net/internal/natgateway" - "github.com/ironcore-dev/ironcore/utils/maps" + "github.com/ironcore-dev/ironcore-net/utils/maps" utilslices "github.com/ironcore-dev/ironcore/utils/slices" "golang.org/x/exp/slices" apierrors "k8s.io/apimachinery/pkg/api/errors" diff --git a/utils/maps/maps.go b/utils/maps/maps.go new file mode 100644 index 00000000..e5a19a4e --- /dev/null +++ b/utils/maps/maps.go @@ -0,0 +1,12 @@ +// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors +// SPDX-License-Identifier: Apache-2.0 + +package maps + +func Append[M ~map[K]V, K comparable, V any](m M, key K, value V) map[K]V { + if m == nil { + m = make(map[K]V) + } + m[key] = value + return m +}