diff --git a/.github/ISSUE_TEMPLATE/kubernetes_update.md b/.github/ISSUE_TEMPLATE/kubernetes_update.md index 9f77819bf6..9a4af7045e 100644 --- a/.github/ISSUE_TEMPLATE/kubernetes_update.md +++ b/.github/ISSUE_TEMPLATE/kubernetes_update.md @@ -26,7 +26,7 @@ List of items to do for upgrading to {version_1} {version_2} {version_3} - [ ] Update CRD API reference to {version_2} - [ ] Update links to k8s documentation in `site/assets/templates/crd-doc-config.json` - [ ] Regenerate crd api reference docs - `make gen-api-docs` - - [ ] Regenerate crd client libraries - `make gen-crd-client` + - [ ] Regenerate crd client libraries and generated code - `make gen-crd-code` - [ ] Regenerate Kubernetes resource includes (e.g. ObjectMeta, PodTemplateSpec) - [ ] Start a cluster with `make gcloud-test-cluster` (this cluster will use Kubernetes {version_2}), uninstall agones using `helm uninstall agones -n agones-system`, and then run `make gen-embedded-openapi` and `make gen-install` - [ ] Update documentation for creating clusters and k8s API references to align with the above clusters versions and the k8s API version @@ -41,11 +41,11 @@ List of items to do for upgrading to {version_1} {version_2} {version_3} - [ ] Update the `grpc_release_tag` in the SDK [base image grpc version](https://github.com/googleforgames/agones/blob/main/build/includes/sdk.mk). - [ ] Update the gRPC version number in C++ gRPC Dependency documentation [here](https://github.com/googleforgames/agones/blob/main/site/content/en/docs/Guides/Client%20SDKs/cpp.md). - [ ] Update the gRPC version - ([Dockerfile](https://github.com/googleforgames/agones/blob/main/examples/cpp-simple/Dockerfile)) and + ([Dockerfile](https://github.com/googleforgames/agones/blob/main/examples/cpp-simple/Dockerfile)) and increment the image tag ([Makefile](https://github.com/googleforgames/agones/blob/main/examples/cpp-simple/Makefile)) in the C++ `cpp-simple` example. - - [ ] Regenerate all client sdks: [make gen-all-sdk-grpc](https://github.com/googleforgames/agones/blob/main/build/README.md#make-gen-all-sdk-grpc) + - [ ] Regenerate all client sdks: [make gen-all-sdk-grpc](https://github.com/googleforgames/agones/blob/main/build/README.md#make-gen-all-sdk-grpc) This can take 20 minutes or so, as the above changes force a rebuild. Plan your day accordingly 😃. - [ ] Regenerate allocated API endpoints: [make gen-allocation-grpc](https://github.com/googleforgames/agones/blob/main/build/README.md#make-gen-allocation-grpc) - [ ] Confirm the update works as expected by running e2e tests diff --git a/build/Makefile b/build/Makefile index 96c5d022be..5bdcb43fa7 100644 --- a/build/Makefile +++ b/build/Makefile @@ -738,12 +738,12 @@ gen-install: $(ensure-build-image) --set agones.crds.cleanupOnDelete=false \ > $(mount_path)/install/yaml/install.yaml' -# Generate the client for our CustomResourceDefinition -gen-crd-client: $(ensure-build-image) +# Generate the client, conversions, deepcopy, and defaults code for our CustomResourceDefinition +gen-crd-code: $(ensure-build-image) docker run --rm \ $(common_mounts) -w $(workdir_path) $(build_tag) bash -c "\ $(git_safe) && \ - /root/gen-crd-client.sh && \ + /root/gen-crd-code.sh && \ cd $(workdir_path)/pkg && goimports -w ." # Run a bash shell with the developer tools in it. (Creates the image if it doesn't exist) @@ -848,14 +848,23 @@ update-go-deps: $(DOCKER_RUN) go mod tidy $(DOCKER_RUN) go mod vendor -test-gen-crd-client: - mkdir -p build/tmp - mv ../pkg/client build/tmp - make gen-crd-client - diff_output=$$(diff -bBr build/tmp/client ../pkg/client); \ - if [ -z "$$diff_output" ]; then \ - echo "No differences found. Deleting build/tmp"; \ +test-gen-crd-code: + mkdir -p build/tmp/apis | mkdir -p build/tmp/client; \ + cp -r ../pkg/apis/* build/tmp/apis | cp -r ../pkg/client/* build/tmp/client; \ + make gen-crd-code; \ + $(MAKE) diff-directory DIRECTORY=apis + $(MAKE) diff-directory DIRECTORY=client + # Delete build/tmp if the directory is empty + if [ ! "$(ls -A build/tmp)" ]; then \ + echo "No differences found. Deleting empty directory build/tmp."; \ rm -r build/tmp; \ + fi + +diff-directory: + diff_output=$$(diff -bBr build/tmp/$(DIRECTORY) ../pkg/$(DIRECTORY)); \ + if [ -z "$$diff_output" ]; then \ + echo "No differences found. Deleting build/tmp/$(DIRECTORY)"; \ + rm -r build/tmp/$(DIRECTORY); \ else \ echo "Differences found."; \ echo "$$diff_output"; \ diff --git a/build/README.md b/build/README.md index 44786ba17a..d7a5eca43b 100644 --- a/build/README.md +++ b/build/README.md @@ -64,7 +64,7 @@ Table of Contents * [make build-agones-sdk-image](#make-build-agones-sdk-image) * [make gen-install](#make-gen-install) * [make gen-embedded-openapi](#make-gen-embedded-openapi) - * [make gen-crd-client](#make-gen-crd-client) + * [make gen-crd-code](#make-gen-crd-code) * [make gen-allocation-grpc](#make-gen-allocation-grpc) * [make gen-all-sdk-grpc](#make-gen-all-sdk-grpc) * [make gen-sdk-grpc](#make-gen-sdk-grpc) @@ -585,7 +585,7 @@ make test-e2e-integration ARGS='-run TestGameServerReserve' Run controller failure portion of the end-to-end tests. #### `make test-e2e-allocator-crash` -Run allocator failure portion of the end-to-end test. +Run allocator failure portion of the end-to-end test. #### `make setup-prometheus` @@ -675,8 +675,8 @@ Generate the embedded OpenAPI specs for existing Kubernetes Objects, such as `Po This should be run against a clean or brand new cluster, as external CRD's or schemas could cause errors to occur. -#### `make gen-crd-client` -Generate the Custom Resource Definition client(s) +#### `make gen-crd-code` +Generate the Custom Resource Definition client(s), conversions, deepcopy, and defaults code. #### `make gen-allocation-grpc` Generate the allocator gRPC code diff --git a/build/boilerplate.go.txt b/build/boilerplate.go.txt index 7350e851da..2e1bea8fed 100644 --- a/build/boilerplate.go.txt +++ b/build/boilerplate.go.txt @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/build/boilerplate.yaml.txt b/build/boilerplate.yaml.txt index 7be643e234..820aceb75c 100644 --- a/build/boilerplate.yaml.txt +++ b/build/boilerplate.yaml.txt @@ -1,4 +1,4 @@ -# Copyright 2023 Google LLC All Rights Reserved. +# Copyright 2024 Google LLC All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/build/build-image/gen-crd-client.sh b/build/build-image/gen-crd-code.sh similarity index 81% rename from build/build-image/gen-crd-client.sh rename to build/build-image/gen-crd-code.sh index 5c48ad0036..e0b0896ce4 100755 --- a/build/build-image/gen-crd-client.sh +++ b/build/build-image/gen-crd-code.sh @@ -38,3 +38,11 @@ kube::codegen::gen_client \ /go/src/agones.dev/agones/pkg/apis echo "CRD client code generation complete." + +echo "Generating CRD conversions, deepcopy, and defaults code..." + +kube::codegen::gen_helpers \ + --boilerplate /go/src/agones.dev/agones/build/boilerplate.go.txt \ + /go/src/agones.dev/agones/pkg/apis + +echo "CRD conversions, deepcopy, and defaults code generation complete." diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 2468b4e163..6376a4e873 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -116,10 +116,10 @@ steps: # Preventing Broken PR Merges in CI # - name: make-docker - id: test-gen-crd-client + id: test-gen-crd-code waitFor: [pull-build-image] dir: build - args: [test-gen-crd-client] + args: [test-gen-crd-code] # # Runs the linter -- but also builds the build image, if not able to download @@ -128,7 +128,7 @@ steps: id: lint waitFor: - pull-build-image - - test-gen-crd-client + - test-gen-crd-code - test-gen-all-sdk-grpc dir: build args: [lint] # pull the build image if it exists diff --git a/pkg/apis/agones/v1/zz_generated.deepcopy.go b/pkg/apis/agones/v1/zz_generated.deepcopy.go index 5bba8c0e5b..92a802e624 100644 --- a/pkg/apis/agones/v1/zz_generated.deepcopy.go +++ b/pkg/apis/agones/v1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/apis/allocation/v1/zz_generated.deepcopy.go b/pkg/apis/allocation/v1/zz_generated.deepcopy.go index fc7d72250e..5063ad1506 100644 --- a/pkg/apis/allocation/v1/zz_generated.deepcopy.go +++ b/pkg/apis/allocation/v1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/apis/autoscaling/v1/zz_generated.deepcopy.go b/pkg/apis/autoscaling/v1/zz_generated.deepcopy.go index b7a19d6ee9..499b0a096e 100644 --- a/pkg/apis/autoscaling/v1/zz_generated.deepcopy.go +++ b/pkg/apis/autoscaling/v1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/apis/multicluster/v1/zz_generated.deepcopy.go b/pkg/apis/multicluster/v1/zz_generated.deepcopy.go index 8b32cd4204..a875537829 100644 --- a/pkg/apis/multicluster/v1/zz_generated.deepcopy.go +++ b/pkg/apis/multicluster/v1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ //go:build !ignore_autogenerated // +build !ignore_autogenerated -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/aggregatedcounterstatus.go b/pkg/client/applyconfiguration/agones/v1/aggregatedcounterstatus.go index 2608a8393b..6fce969f1f 100644 --- a/pkg/client/applyconfiguration/agones/v1/aggregatedcounterstatus.go +++ b/pkg/client/applyconfiguration/agones/v1/aggregatedcounterstatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/aggregatedliststatus.go b/pkg/client/applyconfiguration/agones/v1/aggregatedliststatus.go index 41f291d715..df35ed2dba 100644 --- a/pkg/client/applyconfiguration/agones/v1/aggregatedliststatus.go +++ b/pkg/client/applyconfiguration/agones/v1/aggregatedliststatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/aggregatedplayerstatus.go b/pkg/client/applyconfiguration/agones/v1/aggregatedplayerstatus.go index 71775c245f..7bce46291f 100644 --- a/pkg/client/applyconfiguration/agones/v1/aggregatedplayerstatus.go +++ b/pkg/client/applyconfiguration/agones/v1/aggregatedplayerstatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/allocationoverflow.go b/pkg/client/applyconfiguration/agones/v1/allocationoverflow.go index 4c7f6573e0..3bafcef5ce 100644 --- a/pkg/client/applyconfiguration/agones/v1/allocationoverflow.go +++ b/pkg/client/applyconfiguration/agones/v1/allocationoverflow.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/counterstatus.go b/pkg/client/applyconfiguration/agones/v1/counterstatus.go index aff52b4815..5224977770 100644 --- a/pkg/client/applyconfiguration/agones/v1/counterstatus.go +++ b/pkg/client/applyconfiguration/agones/v1/counterstatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/eviction.go b/pkg/client/applyconfiguration/agones/v1/eviction.go index a1fcc5a888..cc72468b50 100644 --- a/pkg/client/applyconfiguration/agones/v1/eviction.go +++ b/pkg/client/applyconfiguration/agones/v1/eviction.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/fleet.go b/pkg/client/applyconfiguration/agones/v1/fleet.go index 1f3030c668..170e3db718 100644 --- a/pkg/client/applyconfiguration/agones/v1/fleet.go +++ b/pkg/client/applyconfiguration/agones/v1/fleet.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/fleetspec.go b/pkg/client/applyconfiguration/agones/v1/fleetspec.go index a9a9126485..35cd0d88dd 100644 --- a/pkg/client/applyconfiguration/agones/v1/fleetspec.go +++ b/pkg/client/applyconfiguration/agones/v1/fleetspec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/fleetstatus.go b/pkg/client/applyconfiguration/agones/v1/fleetstatus.go index 4b83841c2a..cee66f9ccb 100644 --- a/pkg/client/applyconfiguration/agones/v1/fleetstatus.go +++ b/pkg/client/applyconfiguration/agones/v1/fleetstatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameserver.go b/pkg/client/applyconfiguration/agones/v1/gameserver.go index f4eeb2e7a1..c12507a821 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameserver.go +++ b/pkg/client/applyconfiguration/agones/v1/gameserver.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameserverport.go b/pkg/client/applyconfiguration/agones/v1/gameserverport.go index d0766564a0..4d50f727b1 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameserverport.go +++ b/pkg/client/applyconfiguration/agones/v1/gameserverport.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameserverset.go b/pkg/client/applyconfiguration/agones/v1/gameserverset.go index 4e9237ce60..d459d09cfa 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameserverset.go +++ b/pkg/client/applyconfiguration/agones/v1/gameserverset.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameserversetspec.go b/pkg/client/applyconfiguration/agones/v1/gameserversetspec.go index 95189d7692..3e79f97d74 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameserversetspec.go +++ b/pkg/client/applyconfiguration/agones/v1/gameserversetspec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameserversetstatus.go b/pkg/client/applyconfiguration/agones/v1/gameserversetstatus.go index 25b396eeb5..427178df94 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameserversetstatus.go +++ b/pkg/client/applyconfiguration/agones/v1/gameserversetstatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameserverspec.go b/pkg/client/applyconfiguration/agones/v1/gameserverspec.go index 1870d82772..8992f48fec 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameserverspec.go +++ b/pkg/client/applyconfiguration/agones/v1/gameserverspec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameserverstatus.go b/pkg/client/applyconfiguration/agones/v1/gameserverstatus.go index 04e3968c75..4bac4fdc84 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameserverstatus.go +++ b/pkg/client/applyconfiguration/agones/v1/gameserverstatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameserverstatusport.go b/pkg/client/applyconfiguration/agones/v1/gameserverstatusport.go index cd90e08c7b..6a5f4a8834 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameserverstatusport.go +++ b/pkg/client/applyconfiguration/agones/v1/gameserverstatusport.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/gameservertemplatespec.go b/pkg/client/applyconfiguration/agones/v1/gameservertemplatespec.go index 3b0468fb7d..279aeff2dc 100644 --- a/pkg/client/applyconfiguration/agones/v1/gameservertemplatespec.go +++ b/pkg/client/applyconfiguration/agones/v1/gameservertemplatespec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/health.go b/pkg/client/applyconfiguration/agones/v1/health.go index 96368abee3..8eb8c229e4 100644 --- a/pkg/client/applyconfiguration/agones/v1/health.go +++ b/pkg/client/applyconfiguration/agones/v1/health.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/liststatus.go b/pkg/client/applyconfiguration/agones/v1/liststatus.go index 4329e54a79..879727fed0 100644 --- a/pkg/client/applyconfiguration/agones/v1/liststatus.go +++ b/pkg/client/applyconfiguration/agones/v1/liststatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/playersspec.go b/pkg/client/applyconfiguration/agones/v1/playersspec.go index 766337adc0..b43e60a98f 100644 --- a/pkg/client/applyconfiguration/agones/v1/playersspec.go +++ b/pkg/client/applyconfiguration/agones/v1/playersspec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/playerstatus.go b/pkg/client/applyconfiguration/agones/v1/playerstatus.go index be475b7a97..2aa39a1be1 100644 --- a/pkg/client/applyconfiguration/agones/v1/playerstatus.go +++ b/pkg/client/applyconfiguration/agones/v1/playerstatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/priority.go b/pkg/client/applyconfiguration/agones/v1/priority.go index 05627a119a..6f78f34219 100644 --- a/pkg/client/applyconfiguration/agones/v1/priority.go +++ b/pkg/client/applyconfiguration/agones/v1/priority.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/agones/v1/sdkserver.go b/pkg/client/applyconfiguration/agones/v1/sdkserver.go index 828b7932bc..eaad7482fe 100644 --- a/pkg/client/applyconfiguration/agones/v1/sdkserver.go +++ b/pkg/client/applyconfiguration/agones/v1/sdkserver.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/bufferpolicy.go b/pkg/client/applyconfiguration/autoscaling/v1/bufferpolicy.go index 5503e1b2d5..246e80fff3 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/bufferpolicy.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/bufferpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/counterpolicy.go b/pkg/client/applyconfiguration/autoscaling/v1/counterpolicy.go index a47e73130c..7bca4e0417 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/counterpolicy.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/counterpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/fixedintervalsync.go b/pkg/client/applyconfiguration/autoscaling/v1/fixedintervalsync.go index a897768284..44de0a9aa2 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/fixedintervalsync.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/fixedintervalsync.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscaler.go b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscaler.go index 600f89b2de..aaa8a129d8 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscaler.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscaler.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerpolicy.go b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerpolicy.go index c1d9b00dfd..1441bd4eee 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerpolicy.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerspec.go b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerspec.go index 804d70be1e..631b5cc5de 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerspec.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerspec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerstatus.go b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerstatus.go index 705bb92957..5e9ccf3a59 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerstatus.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalerstatus.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalersync.go b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalersync.go index 5826450554..b80ce3a35f 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalersync.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/fleetautoscalersync.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/listpolicy.go b/pkg/client/applyconfiguration/autoscaling/v1/listpolicy.go index a4489d3c6f..10be5846bf 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/listpolicy.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/listpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/autoscaling/v1/webhookpolicy.go b/pkg/client/applyconfiguration/autoscaling/v1/webhookpolicy.go index 806207e900..217d020b99 100644 --- a/pkg/client/applyconfiguration/autoscaling/v1/webhookpolicy.go +++ b/pkg/client/applyconfiguration/autoscaling/v1/webhookpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/internal/internal.go b/pkg/client/applyconfiguration/internal/internal.go index 5dfdc1101f..11861c1ab2 100644 --- a/pkg/client/applyconfiguration/internal/internal.go +++ b/pkg/client/applyconfiguration/internal/internal.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/multicluster/v1/clusterconnectioninfo.go b/pkg/client/applyconfiguration/multicluster/v1/clusterconnectioninfo.go index 4a6280c7ca..60f640f198 100644 --- a/pkg/client/applyconfiguration/multicluster/v1/clusterconnectioninfo.go +++ b/pkg/client/applyconfiguration/multicluster/v1/clusterconnectioninfo.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/multicluster/v1/gameserverallocationpolicy.go b/pkg/client/applyconfiguration/multicluster/v1/gameserverallocationpolicy.go index 178aa038cf..b8e9b9ae3d 100644 --- a/pkg/client/applyconfiguration/multicluster/v1/gameserverallocationpolicy.go +++ b/pkg/client/applyconfiguration/multicluster/v1/gameserverallocationpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/multicluster/v1/gameserverallocationpolicyspec.go b/pkg/client/applyconfiguration/multicluster/v1/gameserverallocationpolicyspec.go index ddfcf4bde1..4f969d4722 100644 --- a/pkg/client/applyconfiguration/multicluster/v1/gameserverallocationpolicyspec.go +++ b/pkg/client/applyconfiguration/multicluster/v1/gameserverallocationpolicyspec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/applyconfiguration/utils.go b/pkg/client/applyconfiguration/utils.go index 88e0bb5401..57e9be63bf 100644 --- a/pkg/client/applyconfiguration/utils.go +++ b/pkg/client/applyconfiguration/utils.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/clientset.go b/pkg/client/clientset/versioned/clientset.go index 069c2e1e5b..e658fb04ef 100644 --- a/pkg/client/clientset/versioned/clientset.go +++ b/pkg/client/clientset/versioned/clientset.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/fake/clientset_generated.go b/pkg/client/clientset/versioned/fake/clientset_generated.go index f42399dd06..f0c3142a4c 100644 --- a/pkg/client/clientset/versioned/fake/clientset_generated.go +++ b/pkg/client/clientset/versioned/fake/clientset_generated.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/fake/doc.go b/pkg/client/clientset/versioned/fake/doc.go index 49a678fa23..c27e45abb4 100644 --- a/pkg/client/clientset/versioned/fake/doc.go +++ b/pkg/client/clientset/versioned/fake/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/fake/register.go b/pkg/client/clientset/versioned/fake/register.go index 9ccfefbe2e..efadc517dc 100644 --- a/pkg/client/clientset/versioned/fake/register.go +++ b/pkg/client/clientset/versioned/fake/register.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/scheme/doc.go b/pkg/client/clientset/versioned/scheme/doc.go index c1ba9cb285..420ba83698 100644 --- a/pkg/client/clientset/versioned/scheme/doc.go +++ b/pkg/client/clientset/versioned/scheme/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/scheme/register.go b/pkg/client/clientset/versioned/scheme/register.go index 2af8b6515c..325f0833ab 100644 --- a/pkg/client/clientset/versioned/scheme/register.go +++ b/pkg/client/clientset/versioned/scheme/register.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/agones_client.go b/pkg/client/clientset/versioned/typed/agones/v1/agones_client.go index ea47c5fc23..a51c7dd7ff 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/agones_client.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/agones_client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/doc.go b/pkg/client/clientset/versioned/typed/agones/v1/doc.go index 2eefc71236..fa2914eb47 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/doc.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/fake/doc.go b/pkg/client/clientset/versioned/typed/agones/v1/fake/doc.go index 149efaffad..ce141bf145 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/fake/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_agones_client.go b/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_agones_client.go index 243f4351fb..911a823ce1 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_agones_client.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_agones_client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_fleet.go b/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_fleet.go index 8f73ea6676..9c4bd7e262 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_fleet.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_fleet.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_gameserver.go b/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_gameserver.go index b871f0f0cd..2034e51558 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_gameserver.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_gameserver.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_gameserverset.go b/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_gameserverset.go index e7405bbf88..34b6a30760 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_gameserverset.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/fake/fake_gameserverset.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/fleet.go b/pkg/client/clientset/versioned/typed/agones/v1/fleet.go index ade1ca84ce..b4d6523884 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/fleet.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/fleet.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/gameserver.go b/pkg/client/clientset/versioned/typed/agones/v1/gameserver.go index b458b1aaea..5ec6c9f52d 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/gameserver.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/gameserver.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/gameserverset.go b/pkg/client/clientset/versioned/typed/agones/v1/gameserverset.go index d6bbc07044..bfd1c12b44 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/gameserverset.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/gameserverset.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/agones/v1/generated_expansion.go b/pkg/client/clientset/versioned/typed/agones/v1/generated_expansion.go index 8dfee819e4..b9851b422b 100644 --- a/pkg/client/clientset/versioned/typed/agones/v1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/agones/v1/generated_expansion.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/allocation/v1/allocation_client.go b/pkg/client/clientset/versioned/typed/allocation/v1/allocation_client.go index 1eb5e25c58..aa8e16d4fc 100644 --- a/pkg/client/clientset/versioned/typed/allocation/v1/allocation_client.go +++ b/pkg/client/clientset/versioned/typed/allocation/v1/allocation_client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/allocation/v1/doc.go b/pkg/client/clientset/versioned/typed/allocation/v1/doc.go index 2eefc71236..fa2914eb47 100644 --- a/pkg/client/clientset/versioned/typed/allocation/v1/doc.go +++ b/pkg/client/clientset/versioned/typed/allocation/v1/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/allocation/v1/fake/doc.go b/pkg/client/clientset/versioned/typed/allocation/v1/fake/doc.go index 149efaffad..ce141bf145 100644 --- a/pkg/client/clientset/versioned/typed/allocation/v1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/allocation/v1/fake/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/allocation/v1/fake/fake_allocation_client.go b/pkg/client/clientset/versioned/typed/allocation/v1/fake/fake_allocation_client.go index 94718c57fc..82175a0c60 100644 --- a/pkg/client/clientset/versioned/typed/allocation/v1/fake/fake_allocation_client.go +++ b/pkg/client/clientset/versioned/typed/allocation/v1/fake/fake_allocation_client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/allocation/v1/fake/fake_gameserverallocation.go b/pkg/client/clientset/versioned/typed/allocation/v1/fake/fake_gameserverallocation.go index 31b262b19f..6d4351b805 100644 --- a/pkg/client/clientset/versioned/typed/allocation/v1/fake/fake_gameserverallocation.go +++ b/pkg/client/clientset/versioned/typed/allocation/v1/fake/fake_gameserverallocation.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/allocation/v1/gameserverallocation.go b/pkg/client/clientset/versioned/typed/allocation/v1/gameserverallocation.go index 742be97ce8..74f53dfafe 100644 --- a/pkg/client/clientset/versioned/typed/allocation/v1/gameserverallocation.go +++ b/pkg/client/clientset/versioned/typed/allocation/v1/gameserverallocation.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/allocation/v1/generated_expansion.go b/pkg/client/clientset/versioned/typed/allocation/v1/generated_expansion.go index cb687b5426..0c1932382f 100644 --- a/pkg/client/clientset/versioned/typed/allocation/v1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/allocation/v1/generated_expansion.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/autoscaling/v1/autoscaling_client.go b/pkg/client/clientset/versioned/typed/autoscaling/v1/autoscaling_client.go index 722b171a25..6a01558cc9 100644 --- a/pkg/client/clientset/versioned/typed/autoscaling/v1/autoscaling_client.go +++ b/pkg/client/clientset/versioned/typed/autoscaling/v1/autoscaling_client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/autoscaling/v1/doc.go b/pkg/client/clientset/versioned/typed/autoscaling/v1/doc.go index 2eefc71236..fa2914eb47 100644 --- a/pkg/client/clientset/versioned/typed/autoscaling/v1/doc.go +++ b/pkg/client/clientset/versioned/typed/autoscaling/v1/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/doc.go b/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/doc.go index 149efaffad..ce141bf145 100644 --- a/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/fake_autoscaling_client.go b/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/fake_autoscaling_client.go index a36793a056..f7e4f24f41 100644 --- a/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/fake_autoscaling_client.go +++ b/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/fake_autoscaling_client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/fake_fleetautoscaler.go b/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/fake_fleetautoscaler.go index 232a42f136..64d0a73b1c 100644 --- a/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/fake_fleetautoscaler.go +++ b/pkg/client/clientset/versioned/typed/autoscaling/v1/fake/fake_fleetautoscaler.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/autoscaling/v1/fleetautoscaler.go b/pkg/client/clientset/versioned/typed/autoscaling/v1/fleetautoscaler.go index bad2b02394..98afbb8881 100644 --- a/pkg/client/clientset/versioned/typed/autoscaling/v1/fleetautoscaler.go +++ b/pkg/client/clientset/versioned/typed/autoscaling/v1/fleetautoscaler.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/autoscaling/v1/generated_expansion.go b/pkg/client/clientset/versioned/typed/autoscaling/v1/generated_expansion.go index 151d477372..45e1ec9cc5 100644 --- a/pkg/client/clientset/versioned/typed/autoscaling/v1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/autoscaling/v1/generated_expansion.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/multicluster/v1/doc.go b/pkg/client/clientset/versioned/typed/multicluster/v1/doc.go index 2eefc71236..fa2914eb47 100644 --- a/pkg/client/clientset/versioned/typed/multicluster/v1/doc.go +++ b/pkg/client/clientset/versioned/typed/multicluster/v1/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/multicluster/v1/fake/doc.go b/pkg/client/clientset/versioned/typed/multicluster/v1/fake/doc.go index 149efaffad..ce141bf145 100644 --- a/pkg/client/clientset/versioned/typed/multicluster/v1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/multicluster/v1/fake/doc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/multicluster/v1/fake/fake_gameserverallocationpolicy.go b/pkg/client/clientset/versioned/typed/multicluster/v1/fake/fake_gameserverallocationpolicy.go index 7be340034c..a207a71659 100644 --- a/pkg/client/clientset/versioned/typed/multicluster/v1/fake/fake_gameserverallocationpolicy.go +++ b/pkg/client/clientset/versioned/typed/multicluster/v1/fake/fake_gameserverallocationpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/multicluster/v1/fake/fake_multicluster_client.go b/pkg/client/clientset/versioned/typed/multicluster/v1/fake/fake_multicluster_client.go index d427f60917..bafcb07157 100644 --- a/pkg/client/clientset/versioned/typed/multicluster/v1/fake/fake_multicluster_client.go +++ b/pkg/client/clientset/versioned/typed/multicluster/v1/fake/fake_multicluster_client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/multicluster/v1/gameserverallocationpolicy.go b/pkg/client/clientset/versioned/typed/multicluster/v1/gameserverallocationpolicy.go index 143e55f670..9caca4e426 100644 --- a/pkg/client/clientset/versioned/typed/multicluster/v1/gameserverallocationpolicy.go +++ b/pkg/client/clientset/versioned/typed/multicluster/v1/gameserverallocationpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/multicluster/v1/generated_expansion.go b/pkg/client/clientset/versioned/typed/multicluster/v1/generated_expansion.go index 1c1106c623..a002645346 100644 --- a/pkg/client/clientset/versioned/typed/multicluster/v1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/multicluster/v1/generated_expansion.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/clientset/versioned/typed/multicluster/v1/multicluster_client.go b/pkg/client/clientset/versioned/typed/multicluster/v1/multicluster_client.go index bd694ec486..211ecdb1b2 100644 --- a/pkg/client/clientset/versioned/typed/multicluster/v1/multicluster_client.go +++ b/pkg/client/clientset/versioned/typed/multicluster/v1/multicluster_client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/agones/interface.go b/pkg/client/informers/externalversions/agones/interface.go index 6281975f15..ed754d0225 100644 --- a/pkg/client/informers/externalversions/agones/interface.go +++ b/pkg/client/informers/externalversions/agones/interface.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/agones/v1/fleet.go b/pkg/client/informers/externalversions/agones/v1/fleet.go index 9dfb7be635..725ca1aa72 100644 --- a/pkg/client/informers/externalversions/agones/v1/fleet.go +++ b/pkg/client/informers/externalversions/agones/v1/fleet.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/agones/v1/gameserver.go b/pkg/client/informers/externalversions/agones/v1/gameserver.go index 89e91eae05..2b8a9acc5a 100644 --- a/pkg/client/informers/externalversions/agones/v1/gameserver.go +++ b/pkg/client/informers/externalversions/agones/v1/gameserver.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/agones/v1/gameserverset.go b/pkg/client/informers/externalversions/agones/v1/gameserverset.go index cc068ec87b..a481bd826b 100644 --- a/pkg/client/informers/externalversions/agones/v1/gameserverset.go +++ b/pkg/client/informers/externalversions/agones/v1/gameserverset.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/agones/v1/interface.go b/pkg/client/informers/externalversions/agones/v1/interface.go index 2bcbed4c53..8342e4e8d7 100644 --- a/pkg/client/informers/externalversions/agones/v1/interface.go +++ b/pkg/client/informers/externalversions/agones/v1/interface.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/autoscaling/interface.go b/pkg/client/informers/externalversions/autoscaling/interface.go index 998e429100..7631d94503 100644 --- a/pkg/client/informers/externalversions/autoscaling/interface.go +++ b/pkg/client/informers/externalversions/autoscaling/interface.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/autoscaling/v1/fleetautoscaler.go b/pkg/client/informers/externalversions/autoscaling/v1/fleetautoscaler.go index 9e17dcd4a7..23018c965d 100644 --- a/pkg/client/informers/externalversions/autoscaling/v1/fleetautoscaler.go +++ b/pkg/client/informers/externalversions/autoscaling/v1/fleetautoscaler.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/autoscaling/v1/interface.go b/pkg/client/informers/externalversions/autoscaling/v1/interface.go index c634311308..142085f198 100644 --- a/pkg/client/informers/externalversions/autoscaling/v1/interface.go +++ b/pkg/client/informers/externalversions/autoscaling/v1/interface.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/factory.go b/pkg/client/informers/externalversions/factory.go index ad977a9597..9782803168 100644 --- a/pkg/client/informers/externalversions/factory.go +++ b/pkg/client/informers/externalversions/factory.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/generic.go b/pkg/client/informers/externalversions/generic.go index 64e2b11aa1..315fdbe08a 100644 --- a/pkg/client/informers/externalversions/generic.go +++ b/pkg/client/informers/externalversions/generic.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go b/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go index dca998484a..b3de7493f9 100644 --- a/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go +++ b/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/multicluster/interface.go b/pkg/client/informers/externalversions/multicluster/interface.go index a7a6e18d72..d9580e8c66 100644 --- a/pkg/client/informers/externalversions/multicluster/interface.go +++ b/pkg/client/informers/externalversions/multicluster/interface.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/multicluster/v1/gameserverallocationpolicy.go b/pkg/client/informers/externalversions/multicluster/v1/gameserverallocationpolicy.go index db7c145b62..9026274ae6 100644 --- a/pkg/client/informers/externalversions/multicluster/v1/gameserverallocationpolicy.go +++ b/pkg/client/informers/externalversions/multicluster/v1/gameserverallocationpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/informers/externalversions/multicluster/v1/interface.go b/pkg/client/informers/externalversions/multicluster/v1/interface.go index 8658dd5595..e657029f85 100644 --- a/pkg/client/informers/externalversions/multicluster/v1/interface.go +++ b/pkg/client/informers/externalversions/multicluster/v1/interface.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/listers/agones/v1/expansion_generated.go b/pkg/client/listers/agones/v1/expansion_generated.go index 4e735222fc..d96ec37d31 100644 --- a/pkg/client/listers/agones/v1/expansion_generated.go +++ b/pkg/client/listers/agones/v1/expansion_generated.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/listers/agones/v1/fleet.go b/pkg/client/listers/agones/v1/fleet.go index 755830db99..9429379bb0 100644 --- a/pkg/client/listers/agones/v1/fleet.go +++ b/pkg/client/listers/agones/v1/fleet.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/listers/agones/v1/gameserver.go b/pkg/client/listers/agones/v1/gameserver.go index 6986bb97fc..ac74f8e863 100644 --- a/pkg/client/listers/agones/v1/gameserver.go +++ b/pkg/client/listers/agones/v1/gameserver.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/listers/agones/v1/gameserverset.go b/pkg/client/listers/agones/v1/gameserverset.go index 2aca35e01a..e703f038ad 100644 --- a/pkg/client/listers/agones/v1/gameserverset.go +++ b/pkg/client/listers/agones/v1/gameserverset.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/listers/autoscaling/v1/expansion_generated.go b/pkg/client/listers/autoscaling/v1/expansion_generated.go index 38529b0ead..8e4cc95858 100644 --- a/pkg/client/listers/autoscaling/v1/expansion_generated.go +++ b/pkg/client/listers/autoscaling/v1/expansion_generated.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/listers/autoscaling/v1/fleetautoscaler.go b/pkg/client/listers/autoscaling/v1/fleetautoscaler.go index 92060ceb6c..628958cb89 100644 --- a/pkg/client/listers/autoscaling/v1/fleetautoscaler.go +++ b/pkg/client/listers/autoscaling/v1/fleetautoscaler.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/listers/multicluster/v1/expansion_generated.go b/pkg/client/listers/multicluster/v1/expansion_generated.go index d161774279..c106629e40 100644 --- a/pkg/client/listers/multicluster/v1/expansion_generated.go +++ b/pkg/client/listers/multicluster/v1/expansion_generated.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/client/listers/multicluster/v1/gameserverallocationpolicy.go b/pkg/client/listers/multicluster/v1/gameserverallocationpolicy.go index 58d6a97d9e..38535eef6a 100644 --- a/pkg/client/listers/multicluster/v1/gameserverallocationpolicy.go +++ b/pkg/client/listers/multicluster/v1/gameserverallocationpolicy.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/alpha/alpha.pb.go b/pkg/sdk/alpha/alpha.pb.go index ad7b760e4b..ae663a9b13 100644 --- a/pkg/sdk/alpha/alpha.pb.go +++ b/pkg/sdk/alpha/alpha.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/alpha/alpha.pb.gw.go b/pkg/sdk/alpha/alpha.pb.gw.go index 4cebb86351..9d5296fd54 100644 --- a/pkg/sdk/alpha/alpha.pb.gw.go +++ b/pkg/sdk/alpha/alpha.pb.gw.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/alpha/alpha_grpc.pb.go b/pkg/sdk/alpha/alpha_grpc.pb.go index c4ea827209..153e95860b 100644 --- a/pkg/sdk/alpha/alpha_grpc.pb.go +++ b/pkg/sdk/alpha/alpha_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/beta/beta.pb.go b/pkg/sdk/beta/beta.pb.go index 05caebb831..5c7bb10c75 100644 --- a/pkg/sdk/beta/beta.pb.go +++ b/pkg/sdk/beta/beta.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/beta/beta.pb.gw.go b/pkg/sdk/beta/beta.pb.gw.go index 3ca52d3c3c..3fc4577dd0 100644 --- a/pkg/sdk/beta/beta.pb.gw.go +++ b/pkg/sdk/beta/beta.pb.gw.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/beta/beta_grpc.pb.go b/pkg/sdk/beta/beta_grpc.pb.go index a52f32c956..889552efe9 100644 --- a/pkg/sdk/beta/beta_grpc.pb.go +++ b/pkg/sdk/beta/beta_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/sdk.pb.go b/pkg/sdk/sdk.pb.go index fade8499ae..41372a607e 100644 --- a/pkg/sdk/sdk.pb.go +++ b/pkg/sdk/sdk.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/sdk.pb.gw.go b/pkg/sdk/sdk.pb.gw.go index 8f820cbc58..b652044247 100644 --- a/pkg/sdk/sdk.pb.gw.go +++ b/pkg/sdk/sdk.pb.gw.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/sdk/sdk_grpc.pb.go b/pkg/sdk/sdk_grpc.pb.go index e4c3b06ff0..96cea069e3 100644 --- a/pkg/sdk/sdk_grpc.pb.go +++ b/pkg/sdk/sdk_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/include/agones/sdk.grpc.pb.h b/sdks/cpp/include/agones/sdk.grpc.pb.h index 97ac497e5b..9b8ff5acf0 100644 --- a/sdks/cpp/include/agones/sdk.grpc.pb.h +++ b/sdks/cpp/include/agones/sdk.grpc.pb.h @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/include/agones/sdk.pb.h b/sdks/cpp/include/agones/sdk.pb.h index 63c0fdce55..03f85b97a3 100644 --- a/sdks/cpp/include/agones/sdk.pb.h +++ b/sdks/cpp/include/agones/sdk.pb.h @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/include/google/api/annotations.pb.h b/sdks/cpp/include/google/api/annotations.pb.h index f14b4814e2..177ac5e1be 100644 --- a/sdks/cpp/include/google/api/annotations.pb.h +++ b/sdks/cpp/include/google/api/annotations.pb.h @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/include/google/api/http.pb.h b/sdks/cpp/include/google/api/http.pb.h index d7a3900e0f..bb963f8a22 100644 --- a/sdks/cpp/include/google/api/http.pb.h +++ b/sdks/cpp/include/google/api/http.pb.h @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/include/protoc-gen-openapiv2/options/annotations.pb.h b/sdks/cpp/include/protoc-gen-openapiv2/options/annotations.pb.h index 53fca248b3..e8d1f68e93 100644 --- a/sdks/cpp/include/protoc-gen-openapiv2/options/annotations.pb.h +++ b/sdks/cpp/include/protoc-gen-openapiv2/options/annotations.pb.h @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/include/protoc-gen-openapiv2/options/openapiv2.pb.h b/sdks/cpp/include/protoc-gen-openapiv2/options/openapiv2.pb.h index e613dc26f7..48dabd8b15 100644 --- a/sdks/cpp/include/protoc-gen-openapiv2/options/openapiv2.pb.h +++ b/sdks/cpp/include/protoc-gen-openapiv2/options/openapiv2.pb.h @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/src/agones/sdk.grpc.pb.cc b/sdks/cpp/src/agones/sdk.grpc.pb.cc index 0f55fe439c..57ff3a8ac7 100644 --- a/sdks/cpp/src/agones/sdk.grpc.pb.cc +++ b/sdks/cpp/src/agones/sdk.grpc.pb.cc @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/src/agones/sdk.pb.cc b/sdks/cpp/src/agones/sdk.pb.cc index 230d03f507..2ccd379980 100644 --- a/sdks/cpp/src/agones/sdk.pb.cc +++ b/sdks/cpp/src/agones/sdk.pb.cc @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/src/google/annotations.pb.cc b/sdks/cpp/src/google/annotations.pb.cc index 362b88c90b..27a838670e 100644 --- a/sdks/cpp/src/google/annotations.pb.cc +++ b/sdks/cpp/src/google/annotations.pb.cc @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/src/google/http.pb.cc b/sdks/cpp/src/google/http.pb.cc index 23b38bef3d..91591510f7 100644 --- a/sdks/cpp/src/google/http.pb.cc +++ b/sdks/cpp/src/google/http.pb.cc @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/src/protoc-gen-openapiv2/annotations.pb.cc b/sdks/cpp/src/protoc-gen-openapiv2/annotations.pb.cc index 2e3d2f6da5..a109970732 100644 --- a/sdks/cpp/src/protoc-gen-openapiv2/annotations.pb.cc +++ b/sdks/cpp/src/protoc-gen-openapiv2/annotations.pb.cc @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/cpp/src/protoc-gen-openapiv2/openapiv2.pb.cc b/sdks/cpp/src/protoc-gen-openapiv2/openapiv2.pb.cc index 047f71693b..5f8fcd17ad 100644 --- a/sdks/cpp/src/protoc-gen-openapiv2/openapiv2.pb.cc +++ b/sdks/cpp/src/protoc-gen-openapiv2/openapiv2.pb.cc @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/alpha/alpha_grpc_pb.js b/sdks/nodejs/lib/alpha/alpha_grpc_pb.js index b798c82be1..0517f349aa 100644 --- a/sdks/nodejs/lib/alpha/alpha_grpc_pb.js +++ b/sdks/nodejs/lib/alpha/alpha_grpc_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/alpha/alpha_pb.js b/sdks/nodejs/lib/alpha/alpha_pb.js index 47dceaf890..bca104b3f5 100644 --- a/sdks/nodejs/lib/alpha/alpha_pb.js +++ b/sdks/nodejs/lib/alpha/alpha_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/alpha/google/api/annotations_pb.js b/sdks/nodejs/lib/alpha/google/api/annotations_pb.js index fbfedf1b12..bcfb5ebe81 100644 --- a/sdks/nodejs/lib/alpha/google/api/annotations_pb.js +++ b/sdks/nodejs/lib/alpha/google/api/annotations_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/alpha/google/api/http_pb.js b/sdks/nodejs/lib/alpha/google/api/http_pb.js index 28eebe9f0d..c05531bd54 100644 --- a/sdks/nodejs/lib/alpha/google/api/http_pb.js +++ b/sdks/nodejs/lib/alpha/google/api/http_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/alpha/protoc-gen-openapiv2/options/annotations_pb.js b/sdks/nodejs/lib/alpha/protoc-gen-openapiv2/options/annotations_pb.js index b4c8aff3ff..f185b0b67a 100644 --- a/sdks/nodejs/lib/alpha/protoc-gen-openapiv2/options/annotations_pb.js +++ b/sdks/nodejs/lib/alpha/protoc-gen-openapiv2/options/annotations_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/alpha/protoc-gen-openapiv2/options/openapiv2_pb.js b/sdks/nodejs/lib/alpha/protoc-gen-openapiv2/options/openapiv2_pb.js index e34a7e5065..0788135194 100644 --- a/sdks/nodejs/lib/alpha/protoc-gen-openapiv2/options/openapiv2_pb.js +++ b/sdks/nodejs/lib/alpha/protoc-gen-openapiv2/options/openapiv2_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/beta/beta_grpc_pb.js b/sdks/nodejs/lib/beta/beta_grpc_pb.js index bc0f1bf2c4..22716e4f2d 100644 --- a/sdks/nodejs/lib/beta/beta_grpc_pb.js +++ b/sdks/nodejs/lib/beta/beta_grpc_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/beta/beta_pb.js b/sdks/nodejs/lib/beta/beta_pb.js index bf935feb9f..ccf9a5ec81 100644 --- a/sdks/nodejs/lib/beta/beta_pb.js +++ b/sdks/nodejs/lib/beta/beta_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/beta/google/api/annotations_pb.js b/sdks/nodejs/lib/beta/google/api/annotations_pb.js index fbfedf1b12..bcfb5ebe81 100644 --- a/sdks/nodejs/lib/beta/google/api/annotations_pb.js +++ b/sdks/nodejs/lib/beta/google/api/annotations_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/beta/google/api/http_pb.js b/sdks/nodejs/lib/beta/google/api/http_pb.js index 28eebe9f0d..c05531bd54 100644 --- a/sdks/nodejs/lib/beta/google/api/http_pb.js +++ b/sdks/nodejs/lib/beta/google/api/http_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/beta/protoc-gen-openapiv2/options/annotations_pb.js b/sdks/nodejs/lib/beta/protoc-gen-openapiv2/options/annotations_pb.js index b4c8aff3ff..f185b0b67a 100644 --- a/sdks/nodejs/lib/beta/protoc-gen-openapiv2/options/annotations_pb.js +++ b/sdks/nodejs/lib/beta/protoc-gen-openapiv2/options/annotations_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/beta/protoc-gen-openapiv2/options/openapiv2_pb.js b/sdks/nodejs/lib/beta/protoc-gen-openapiv2/options/openapiv2_pb.js index e34a7e5065..0788135194 100644 --- a/sdks/nodejs/lib/beta/protoc-gen-openapiv2/options/openapiv2_pb.js +++ b/sdks/nodejs/lib/beta/protoc-gen-openapiv2/options/openapiv2_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/google/api/annotations_pb.js b/sdks/nodejs/lib/google/api/annotations_pb.js index fbfedf1b12..bcfb5ebe81 100644 --- a/sdks/nodejs/lib/google/api/annotations_pb.js +++ b/sdks/nodejs/lib/google/api/annotations_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/google/api/http_pb.js b/sdks/nodejs/lib/google/api/http_pb.js index 28eebe9f0d..c05531bd54 100644 --- a/sdks/nodejs/lib/google/api/http_pb.js +++ b/sdks/nodejs/lib/google/api/http_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/protoc-gen-openapiv2/options/annotations_pb.js b/sdks/nodejs/lib/protoc-gen-openapiv2/options/annotations_pb.js index b4c8aff3ff..f185b0b67a 100644 --- a/sdks/nodejs/lib/protoc-gen-openapiv2/options/annotations_pb.js +++ b/sdks/nodejs/lib/protoc-gen-openapiv2/options/annotations_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/protoc-gen-openapiv2/options/openapiv2_pb.js b/sdks/nodejs/lib/protoc-gen-openapiv2/options/openapiv2_pb.js index e34a7e5065..0788135194 100644 --- a/sdks/nodejs/lib/protoc-gen-openapiv2/options/openapiv2_pb.js +++ b/sdks/nodejs/lib/protoc-gen-openapiv2/options/openapiv2_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/sdk_grpc_pb.js b/sdks/nodejs/lib/sdk_grpc_pb.js index 3c4b55e7b8..049ba5b3ed 100644 --- a/sdks/nodejs/lib/sdk_grpc_pb.js +++ b/sdks/nodejs/lib/sdk_grpc_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/sdks/nodejs/lib/sdk_pb.js b/sdks/nodejs/lib/sdk_pb.js index bab08877a0..4ea5013b8c 100644 --- a/sdks/nodejs/lib/sdk_pb.js +++ b/sdks/nodejs/lib/sdk_pb.js @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/api_sdk.go b/test/sdk/restapi/alpha/swagger/api_sdk.go index f30cc7442d..bf1e742cf3 100644 --- a/test/sdk/restapi/alpha/swagger/api_sdk.go +++ b/test/sdk/restapi/alpha/swagger/api_sdk.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/client.go b/test/sdk/restapi/alpha/swagger/client.go index ed23440fe8..1d764db3a2 100644 --- a/test/sdk/restapi/alpha/swagger/client.go +++ b/test/sdk/restapi/alpha/swagger/client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/configuration.go b/test/sdk/restapi/alpha/swagger/configuration.go index fdfeeb41fa..a590e353d0 100644 --- a/test/sdk/restapi/alpha/swagger/configuration.go +++ b/test/sdk/restapi/alpha/swagger/configuration.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/model_alpha_bool.go b/test/sdk/restapi/alpha/swagger/model_alpha_bool.go index dbd9f619ac..4f200bbc29 100644 --- a/test/sdk/restapi/alpha/swagger/model_alpha_bool.go +++ b/test/sdk/restapi/alpha/swagger/model_alpha_bool.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/model_alpha_count.go b/test/sdk/restapi/alpha/swagger/model_alpha_count.go index a025bc1a54..769281373a 100644 --- a/test/sdk/restapi/alpha/swagger/model_alpha_count.go +++ b/test/sdk/restapi/alpha/swagger/model_alpha_count.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/model_alpha_empty.go b/test/sdk/restapi/alpha/swagger/model_alpha_empty.go index 7c652e8588..df14002b5b 100644 --- a/test/sdk/restapi/alpha/swagger/model_alpha_empty.go +++ b/test/sdk/restapi/alpha/swagger/model_alpha_empty.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/model_alpha_player_id.go b/test/sdk/restapi/alpha/swagger/model_alpha_player_id.go index 6010a3c59a..fec52e0bee 100644 --- a/test/sdk/restapi/alpha/swagger/model_alpha_player_id.go +++ b/test/sdk/restapi/alpha/swagger/model_alpha_player_id.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/model_alpha_player_id_list.go b/test/sdk/restapi/alpha/swagger/model_alpha_player_id_list.go index be8febedfd..f8cc3742b4 100644 --- a/test/sdk/restapi/alpha/swagger/model_alpha_player_id_list.go +++ b/test/sdk/restapi/alpha/swagger/model_alpha_player_id_list.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/alpha/swagger/response.go b/test/sdk/restapi/alpha/swagger/response.go index 0da068a486..bd6cf6e2d6 100644 --- a/test/sdk/restapi/alpha/swagger/response.go +++ b/test/sdk/restapi/alpha/swagger/response.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/api_sdk.go b/test/sdk/restapi/beta/swagger/api_sdk.go index 3e42fe82ca..228e24db8d 100644 --- a/test/sdk/restapi/beta/swagger/api_sdk.go +++ b/test/sdk/restapi/beta/swagger/api_sdk.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/client.go b/test/sdk/restapi/beta/swagger/client.go index 77873a7586..99101430e7 100644 --- a/test/sdk/restapi/beta/swagger/client.go +++ b/test/sdk/restapi/beta/swagger/client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/configuration.go b/test/sdk/restapi/beta/swagger/configuration.go index a57d3da59b..361a344956 100644 --- a/test/sdk/restapi/beta/swagger/configuration.go +++ b/test/sdk/restapi/beta/swagger/configuration.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/model_beta_counter.go b/test/sdk/restapi/beta/swagger/model_beta_counter.go index ed4becfae7..2165d9547d 100644 --- a/test/sdk/restapi/beta/swagger/model_beta_counter.go +++ b/test/sdk/restapi/beta/swagger/model_beta_counter.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/model_beta_counter_update_request.go b/test/sdk/restapi/beta/swagger/model_beta_counter_update_request.go index 1cbfa115db..5c11c32893 100644 --- a/test/sdk/restapi/beta/swagger/model_beta_counter_update_request.go +++ b/test/sdk/restapi/beta/swagger/model_beta_counter_update_request.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/model_beta_list.go b/test/sdk/restapi/beta/swagger/model_beta_list.go index 90e7fef01c..a08234a24e 100644 --- a/test/sdk/restapi/beta/swagger/model_beta_list.go +++ b/test/sdk/restapi/beta/swagger/model_beta_list.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/model_lists_nameadd_value_body.go b/test/sdk/restapi/beta/swagger/model_lists_nameadd_value_body.go index 5656290a8c..28f1ab94e0 100644 --- a/test/sdk/restapi/beta/swagger/model_lists_nameadd_value_body.go +++ b/test/sdk/restapi/beta/swagger/model_lists_nameadd_value_body.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/model_lists_nameremove_value_body.go b/test/sdk/restapi/beta/swagger/model_lists_nameremove_value_body.go index 079b0751da..05bc904bcb 100644 --- a/test/sdk/restapi/beta/swagger/model_lists_nameremove_value_body.go +++ b/test/sdk/restapi/beta/swagger/model_lists_nameremove_value_body.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/model_the_list_to_update.go b/test/sdk/restapi/beta/swagger/model_the_list_to_update.go index f4ce38ad61..44f19995f4 100644 --- a/test/sdk/restapi/beta/swagger/model_the_list_to_update.go +++ b/test/sdk/restapi/beta/swagger/model_the_list_to_update.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/model_the_requested_update_to_make_to_the_counter.go b/test/sdk/restapi/beta/swagger/model_the_requested_update_to_make_to_the_counter.go index ad1db867e0..85033bd5f1 100644 --- a/test/sdk/restapi/beta/swagger/model_the_requested_update_to_make_to_the_counter.go +++ b/test/sdk/restapi/beta/swagger/model_the_requested_update_to_make_to_the_counter.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/beta/swagger/response.go b/test/sdk/restapi/beta/swagger/response.go index 06eef9f7f0..baba2bdc26 100644 --- a/test/sdk/restapi/beta/swagger/response.go +++ b/test/sdk/restapi/beta/swagger/response.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/api_sdk.go b/test/sdk/restapi/swagger/api_sdk.go index ef6d79fe8f..ef4a097908 100644 --- a/test/sdk/restapi/swagger/api_sdk.go +++ b/test/sdk/restapi/swagger/api_sdk.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/client.go b/test/sdk/restapi/swagger/client.go index 70162ea7a4..7e212fb8d0 100644 --- a/test/sdk/restapi/swagger/client.go +++ b/test/sdk/restapi/swagger/client.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/configuration.go b/test/sdk/restapi/swagger/configuration.go index f98ce4673b..333b8ff01c 100644 --- a/test/sdk/restapi/swagger/configuration.go +++ b/test/sdk/restapi/swagger/configuration.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_game_server_object_meta.go b/test/sdk/restapi/swagger/model_game_server_object_meta.go index bd799811f3..f80181a1f9 100644 --- a/test/sdk/restapi/swagger/model_game_server_object_meta.go +++ b/test/sdk/restapi/swagger/model_game_server_object_meta.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_game_server_spec.go b/test/sdk/restapi/swagger/model_game_server_spec.go index 5708786a83..f69731b48e 100644 --- a/test/sdk/restapi/swagger/model_game_server_spec.go +++ b/test/sdk/restapi/swagger/model_game_server_spec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_googlerpc_status.go b/test/sdk/restapi/swagger/model_googlerpc_status.go index 93e68cb08d..f78719d72e 100644 --- a/test/sdk/restapi/swagger/model_googlerpc_status.go +++ b/test/sdk/restapi/swagger/model_googlerpc_status.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_sdk_duration.go b/test/sdk/restapi/swagger/model_sdk_duration.go index f5a755f640..e39094e810 100644 --- a/test/sdk/restapi/swagger/model_sdk_duration.go +++ b/test/sdk/restapi/swagger/model_sdk_duration.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_sdk_empty.go b/test/sdk/restapi/swagger/model_sdk_empty.go index 5a0f767986..33d0344020 100644 --- a/test/sdk/restapi/swagger/model_sdk_empty.go +++ b/test/sdk/restapi/swagger/model_sdk_empty.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_sdk_game_server.go b/test/sdk/restapi/swagger/model_sdk_game_server.go index 903cdd006f..7e2d653e8f 100644 --- a/test/sdk/restapi/swagger/model_sdk_game_server.go +++ b/test/sdk/restapi/swagger/model_sdk_game_server.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_sdk_game_server_status.go b/test/sdk/restapi/swagger/model_sdk_game_server_status.go index e3388fdf28..aff97910c5 100644 --- a/test/sdk/restapi/swagger/model_sdk_game_server_status.go +++ b/test/sdk/restapi/swagger/model_sdk_game_server_status.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_sdk_key_value.go b/test/sdk/restapi/swagger/model_sdk_key_value.go index 8533c2f0de..11c05f45bd 100644 --- a/test/sdk/restapi/swagger/model_sdk_key_value.go +++ b/test/sdk/restapi/swagger/model_sdk_key_value.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_spec_health.go b/test/sdk/restapi/swagger/model_spec_health.go index c6f1130c99..f9743113a8 100644 --- a/test/sdk/restapi/swagger/model_spec_health.go +++ b/test/sdk/restapi/swagger/model_spec_health.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_status_address.go b/test/sdk/restapi/swagger/model_status_address.go index 7be2af6778..2656ec1972 100644 --- a/test/sdk/restapi/swagger/model_status_address.go +++ b/test/sdk/restapi/swagger/model_status_address.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_status_counter_status.go b/test/sdk/restapi/swagger/model_status_counter_status.go index ecd47ebc84..2ff4c85cfc 100644 --- a/test/sdk/restapi/swagger/model_status_counter_status.go +++ b/test/sdk/restapi/swagger/model_status_counter_status.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_status_list_status.go b/test/sdk/restapi/swagger/model_status_list_status.go index ab1df2f748..f9eda75c16 100644 --- a/test/sdk/restapi/swagger/model_status_list_status.go +++ b/test/sdk/restapi/swagger/model_status_list_status.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_status_player_status.go b/test/sdk/restapi/swagger/model_status_player_status.go index 51d0334005..0767cd598c 100644 --- a/test/sdk/restapi/swagger/model_status_player_status.go +++ b/test/sdk/restapi/swagger/model_status_player_status.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_status_port.go b/test/sdk/restapi/swagger/model_status_port.go index d822adb026..8b7dd9a902 100644 --- a/test/sdk/restapi/swagger/model_status_port.go +++ b/test/sdk/restapi/swagger/model_status_port.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/model_stream_result_of_sdk_game_server.go b/test/sdk/restapi/swagger/model_stream_result_of_sdk_game_server.go index 67f611ba85..f9ab24789d 100644 --- a/test/sdk/restapi/swagger/model_stream_result_of_sdk_game_server.go +++ b/test/sdk/restapi/swagger/model_stream_result_of_sdk_game_server.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/sdk/restapi/swagger/response.go b/test/sdk/restapi/swagger/response.go index fc21c406ac..c410d3e38d 100644 --- a/test/sdk/restapi/swagger/response.go +++ b/test/sdk/restapi/swagger/response.go @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC All Rights Reserved. +// Copyright 2024 Google LLC All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.